30 lines
873 B
JSON
30 lines
873 B
JSON
|
{
|
||
|
"description": "OpenContainer Image Manifest List Specification",
|
||
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
"id": "https://opencontainers.org/schema/image/manifest-list",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"schemaVersion": {
|
||
|
"description": "This field specifies the image manifest-list schema version as an integer",
|
||
|
"id": "https://opencontainers.org/schema/image/manifest-list/schemaVersion",
|
||
|
"type": "integer",
|
||
|
"minimum": 2,
|
||
|
"maximum": 2
|
||
|
},
|
||
|
"manifests": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"$ref": "defs-image.json#/definitions/manifestDescriptor"
|
||
|
}
|
||
|
},
|
||
|
"annotations": {
|
||
|
"id": "https://opencontainers.org/schema/image/manifest-list/annotations",
|
||
|
"$ref": "defs-image.json#/definitions/annotations"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"schemaVersion",
|
||
|
"manifests"
|
||
|
]
|
||
|
}
|