-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathshape1.jsch
91 lines (80 loc) · 1.58 KB
/
shape1.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$schema": "http:\/\/json-schema.org\/draft-03\/schema",
"type": "object",
"properties": {
"recentReviews": {
"required": false,
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"reviewerID": {
"type": "string",
"format": "email"
},
"reviewerPhone": {
"type": "string",
"format": "phone"
},
"reviewDate": {
"type": "string",
"format": "date-time"
}
}
}
},
"productID": {
"required": false,
"type": "string",
"ipsum": "id"
},
"productDetails": {
"required": false,
"type": "object",
"properties": {
"description": {
"required": false,
"type": "string"
},
"productType": {
"required": false,
"type": "string",
"enum": [ "A", "B", "C", "D", "E" ]
}
}
},
"currentPrice": {
"required": false,
"type": "object",
"properties": {
"approx": {
"type": "number"
},
"scale": {
"required": false,
"type": "integer",
"enum": [ 100 ]
},
"amt": {
"required": false,
"type": "integer",
"enum": [ 100, 200, 300, 250, 1000 ]
}
}
},
"vector": {
"type":"array",
"required":false,
"items": {
"type":"integer",
"required":false,
"minimum": 0,
"minItems": 2,
"maxItems": 6
}
}
}
}