forked from Azure/RDS-Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.schema.json
51 lines (51 loc) · 907 Bytes
/
metadata.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
{
"properties": {
"itemDisplayName": {
"type": "string",
"minLength": 10,
"maxLength": 60
},
"description": {
"type": "string",
"minLength": 10,
"maxLength": 1000
},
"summary": {
"type": "string",
"minLength": 10,
"maxLength": 200
},
"githubUsername": {
"type": "string",
"minLength": 2
},
"dateUpdated": {
"type": "string",
"minLength": 1
},
"icon": {
"type": "string",
"enum": [
"api",
"blankTemplate",
"cdnStorage",
"cdnWebsite",
"docker",
"documentDB",
"logic",
"serviceFabric",
"ubuntu",
"vmss",
"windowsVM"
]
}
},
"required": [
"itemDisplayName",
"description",
"summary",
"githubUsername",
"dateUpdated"
],
"additionalProperties": false
}