-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuantityRange.json
47 lines (47 loc) · 1.45 KB
/
QuantityRange.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
46
47
{
"$schema":"http://json-schema.org/draft-03/schema#",
"id":"FIXME/swe/QuantityRange.json",
"title":"QuantityRange",
"description":"Decimal pair for specifying a quantity range with a unit of measure",
"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"
},
"uom":{
"title":"uom",
"description":"Unit of measure used to express the value of this data component",
"type":"any",
"required":true
},
"constraint":{
"title":"constraint",
"type":"string",
"format":"uri"
},
"value":{
"title":"value",
"description":"Value is a pair of double 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/RealPair.json"
}
}
}