-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathshape3.jsch
52 lines (47 loc) · 838 Bytes
/
shape3.jsch
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
{
"$schema": "http:\/\/json-schema.org\/draft-03\/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"ipsum": "fname"
},
"msgnum": {
"type": "integer",
"ipsum": { "inc": { "start": 0, "val": 1 }}
},
"pref": {
"type": "string",
"enum": [ "red", "black" ],
"pctRandomNull": 25
},
"userDef": {
"type": "oneOf",
"items": [
{
"type": "object",
"properties": {
"weight": {
"type": "integer",
"minimum": 2000,
"maximum": 4000
},
"maker": {
"type": "string",
"enum": [ "ford", "GM", "honda" ]
}
}
}
,
{
"type": "object",
"properties": {
"tasty": {
"type": "integer"
}
}
}
]
}
}
}