-
-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathitems.json
More file actions
37 lines (37 loc) · 943 Bytes
/
items.json
File metadata and controls
37 lines (37 loc) · 943 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
[
{
"description": "cannot be number",
"schema": { "items": 42 },
"instance": [ "foo" ]
},
{
"description": "cannot be string",
"schema": { "items": "value" },
"instance": [ "foo" ]
},
{
"description": "cannot be null",
"schema": { "items": null },
"instance": [ "foo" ]
},
{
"description": "array form cannot contain number",
"schema": { "items": [ 42 ] },
"instance": [ "foo" ]
},
{
"description": "array form cannot contain string",
"schema": { "items": [ "value" ] },
"instance": [ "foo" ]
},
{
"description": "array form cannot contain null",
"schema": { "items": [ null ] },
"instance": ["foo" ]
},
{
"description": "array form cannot contain array",
"schema": { "items": [ [ true ] ] },
"instance": [ "foo" ]
}
]