Add glide.yaml and vendor deps
This commit is contained in:
parent
db918f12ad
commit
5b3d5e81bd
18880 changed files with 5166045 additions and 1 deletions
37
vendor/github.com/opencontainers/image-spec/schema/manifest-list-schema.json
generated
vendored
Normal file
37
vendor/github.com/opencontainers/image-spec/schema/manifest-list-schema.json
generated
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"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
|
||||
},
|
||||
"mediaType": {
|
||||
"id": "https://opencontainers.org/schema/image/manifest-list/mediaType",
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"application/vnd.oci.image.manifest.list.v1+json"
|
||||
]
|
||||
},
|
||||
"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",
|
||||
"mediaType",
|
||||
"manifests"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue