-
Notifications
You must be signed in to change notification settings - Fork 1
/
CountRange.json
41 lines (41 loc) · 1.26 KB
/
CountRange.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
{
"$schema":"http://json-schema.org/draft-03/schema#",
"id":"FIXME/swe/CountRange.json",
"title":"CountRange",
"description":"Integer pair used for specifying a count range",
"type":"object",
"properties":{
"referenceFrame":{
"title":"referenceFrame",
"description":"Frame of reference (usually temporal or spatial) with respect to which the value of the component is expressed. A reference frame anchors a value to a real world datum.",
"type":"any"
},
"axisID":{
"title":"axisID",
"description":"Specifies the reference axis (refer to gml:axisID). The reference frame URI should also be specified unless it is inherited from parent Vector",
"type":"any"
},
"quality":{
"title":"quality",
"type":"array",
"items":{
"$ref":"FIXME/swe/Quality.json"
}
},
"nilValues":{
"title":"nilValues",
"type":"string",
"format":"uri"
},
"constraint":{
"title":"constraint",
"type":"string",
"format":"uri"
},
"value":{
"title":"value",
"description":"Value is a pair of integer numbers separated by a space. It is optional, to enable structure to act as a schema for values provided using other encodings",
"$ref":"FIXME/swe/IntegerPair.json"
}
}
}