-
Notifications
You must be signed in to change notification settings - Fork 1
/
recipe.yml
58 lines (51 loc) · 1.66 KB
/
recipe.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# from schemaorg.main import Schema
# containerRecipe = Schema("ContainerRecipe.yml")
# Specification base set to http://www.schema.org
# Using Version 3.4
# ContainerRecipe: found 27 properties
# This is the simple listing of requirements for schemaorg python to
# read and for the user to provide to create a complete entry for
# a ContainerRecipe (non production child of SoftwareSourceCode)
## A ContainerRecipe
# Thing > CreativeWork > SoftwareSourceCode > ContainerRecipe
# Attributes not listed are accepted, but not required or recommended. If an
# attribute is not included officially with a specification release it will
# be ignored.
# Without a key:pair implies the key is equal to the value, e.g., "license"
# in schema.org gets mapped to "license" for the Google dataset
# - license
# With a key pair implies a mapping, "softwareVersion" for schema.org is mapped
# to "version" for the Google Dataset
# - softwareVersion: version
################################################################################
# Shared Attributes
################################################################################
version: 1
schemas:
ContainerImage:
recommended:
- keywords
- labels
- softwareHelp
- softwareRequirements
- softwareVersion
- entrypoint
required:
- description
- name
- ContainerImage # the FROM, for now
SoftwareSourceCode:
recommended:
- softwareVersion: version
- citation
- identifier
- keywords
- license
- url
- sameAs
- spatialCoverage
- temporalCoverage
- variableMeasured
required:
- description
- name