ecd0006e80
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
34 lines
916 B
JSON
34 lines
916 B
JSON
{
|
|
"description": "OpenContainer Image Manifest Specification",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "https://opencontainers.org/schema/image/manifest",
|
|
"type": "object",
|
|
"properties": {
|
|
"schemaVersion": {
|
|
"description": "This field specifies the image manifest schema version as an integer",
|
|
"id": "https://opencontainers.org/schema/image/manifest/schemaVersion",
|
|
"type": "integer",
|
|
"minimum": 2,
|
|
"maximum": 2
|
|
},
|
|
"config": {
|
|
"$ref": "content-descriptor.json"
|
|
},
|
|
"layers": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"$ref": "content-descriptor.json"
|
|
}
|
|
},
|
|
"annotations": {
|
|
"id": "https://opencontainers.org/schema/image/manifest/annotations",
|
|
"$ref": "defs-image.json#/definitions/annotations"
|
|
}
|
|
},
|
|
"required": [
|
|
"schemaVersion",
|
|
"config",
|
|
"layers"
|
|
]
|
|
}
|