-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathfamilies.schema.json
More file actions
48 lines (48 loc) · 785 Bytes
/
families.schema.json
File metadata and controls
48 lines (48 loc) · 785 Bytes
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
{
"type": "object",
"properties": {
"$schema": {
"type": "string"
}
},
"patternProperties": {
"^[a-z0-9-]+$": {
"type": "object",
"properties": {
"parent": {
"type": [
"string",
"null"
],
"pattern": "^[a-z0-9-]+$"
},
"code": {
"type": "string",
"pattern": "^[a-z0-9]+$"
},
"description": {
"type": "string"
},
"id": {
"type": "string",
"pattern": "^0x[0-9A-F]{8}$"
},
"short_name": {
"type": "string",
"pattern": "^[A-Z0-9]+$"
},
"package": {
"type": "string",
"pattern": "^framework-[a-z0-9-]+$"
}
},
"additionalProperties": false,
"required": [
"parent",
"code",
"description"
]
}
},
"additionalProperties": false
}