-
Notifications
You must be signed in to change notification settings - Fork 1
/
Category.json
46 lines (46 loc) · 1.42 KB
/
Category.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
{
"$schema":"http://json-schema.org/draft-03/schema#",
"id":"FIXME/swe/Category.json",
"title":"Category",
"description":"Scalar component used to represent a categorical value as a simple token identifying a term in a code space",
"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"
},
"codeSpace":{
"title":"codeSpace",
"description":"Name of the dictionary where the possible values for this component are listed and defined",
"type":"any"
},
"constraint":{
"title":"constraint",
"type":"string",
"format":"uri"
},
"value":{
"title":"value",
"description":"Value is optional, to enable structure to act as a schema for values provided using other encodings",
"type":"any"
}
}
}