-
Notifications
You must be signed in to change notification settings - Fork 0
/
dimension.json
45 lines (45 loc) · 1 KB
/
dimension.json
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
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "http://example.com/example.json",
"type": "object",
"default": {},
"title": "Dimension Specification",
"required": [
"schoolId",
"district",
"block"
],
"properties": {
"schoolId": {
"type": "string",
"default": "",
"title": "The schoolId schema",
"examples": [
"1"
]
},
"district": {
"type": "string",
"default": "",
"title": "The district schema",
"examples": [
"Shimla"
]
},
"block": {
"type": "string",
"default": "",
"title": "The block schema",
"examples": [
"Tikkar"
]
}
},
"examples": [
{
"schoolId": "1",
"district": "Shimla",
"block": "Tikkar"
}
]
}