...
1{
2 "description": "Definitions particular to OpenContainer Descriptor Specification",
3 "definitions": {
4 "mediaType": {
5 "id": "https://opencontainers.org/schema/image/descriptor/mediaType",
6 "type": "string",
7 "pattern": "^[A-Za-z0-9][A-Za-z0-9!#$&-^_.+]{0,126}/[A-Za-z0-9][A-Za-z0-9!#$&-^_.+]{0,126}$"
8 },
9 "digest": {
10 "description": "the cryptographic checksum digest of the object, in the pattern '<algorithm>:<encoded>'",
11 "type": "string",
12 "pattern": "^[a-z0-9]+(?:[+._-][a-z0-9]+)*:[a-zA-Z0-9=_-]+$"
13 },
14 "urls": {
15 "description": "a list of urls from which this object may be downloaded",
16 "type": "array",
17 "items": {
18 "type": "string",
19 "format": "uri"
20 }
21 },
22 "annotations": {
23 "$ref": "defs.json#/definitions/mapStringString"
24 }
25 }
26}
View as plain text