forked from divkit/divkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.json
More file actions
41 lines (41 loc) · 688 Bytes
/
common.json
File metadata and controls
41 lines (41 loc) · 688 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
{
"color": {
"type": "string",
"format": "color"
},
"url": {
"type": "string",
"format": "uri"
},
"positive_integer": {
"type": "integer",
"constraint": "number > 0"
},
"non_negative_integer": {
"type": "integer",
"constraint": "number >= 0"
},
"non_negative_number": {
"type": "number",
"constraint": "number >= 0"
},
"positive_number": {
"type": "number",
"constraint": "number > 0"
},
"boolean_int": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "integer",
"enum": [ 0, 1 ]
}
]
},
"id": {
"type": "string",
"supports_expressions": false
}
}