forked from d2iq-archive/universe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v2-resource-schema.json
55 lines (55 loc) · 1.35 KB
/
v2-resource-schema.json
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
{
"additionalProperties": false,
"properties": {
"images": {
"type": "object",
"properties": {
"screenshots": {
"items": {
"type": "string",
"description": "PNG screen URL, preferably 1024 by 1024 pixels."
},
"type": "array"
},
"icon-large": {
"type": "string",
"description": "PNG icon URL, preferably 256 by 256 pixels."
},
"icon-small": {
"type": "string",
"description": "PNG icon URL, preferably 48 by 48 pixels."
},
"icon-medium": {
"type": "string",
"description": "PNG icon URL, preferably 128 by 128 pixels."
}
},
"additionalProperties": false
},
"assets": {
"type": "object",
"properties": {
"container": {
"type": "object",
"properties": {
"docker": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false
},
"uris": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-04/schema#"
}