Groups Observations of one ObservedProperty by one Sensor on one Thing. Carries all context needed to interpret observation results.
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 2048 bytesname
string
Required
No description available.
maxLength: 256 bytesobservationType
string
uri
Required
O&M observation type URI, e.g. http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement
observedArea
ref
dev.sensorthings.thing#geoPoint
Optional
Representative location for the datastream
observedProperty
string
at-uri
Required
AT-URI of the dev.sensorthings.observedProperty record
resultScaleFactor
integer
Optional
10^n divisor for numeric results. E.g. 2 means observation integers are in centi-units (÷100). Default 0. Only meaningful for numericResult and arrayResult types.
sensor
string
at-uri
Required
AT-URI of the dev.sensorthings.sensor record
thing
string
at-uri
Required
AT-URI of the dev.sensorthings.thing record
unitOfMeasurement
ref
#unitOfMeasurement
Required
No description available.
verticalDatum
string
Optional
Vertical datum reference for water level or elevation measurements. Either a URI (e.g. http://www.opengis.net/def/crs/EPSG/0/5731 for Malin Head) or a human-readable identifier (e.g. 'Chart Datum', 'local-gauge-zero'). Absent for non-vertical measurements.
maxLength: 256 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"thing",
"sensor",
"observedProperty",
"unitOfMeasurement",
"observationType",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256
},
"thing": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the dev.sensorthings.thing record"
},
"sensor": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the dev.sensorthings.sensor record"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2048
},
"observedArea": {
"ref": "dev.sensorthings.thing#geoPoint",
"type": "ref",
"description": "Representative location for the datastream"
},
"verticalDatum": {
"type": "string",
"maxLength": 256,
"description": "Vertical datum reference for water level or elevation measurements. Either a URI (e.g. http://www.opengis.net/def/crs/EPSG/0/5731 for Malin Head) or a human-readable identifier (e.g. 'Chart Datum', 'local-gauge-zero'). Absent for non-vertical measurements."
},
"observationType": {
"type": "string",
"format": "uri",
"description": "O&M observation type URI, e.g. http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"
},
"observedProperty": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the dev.sensorthings.observedProperty record"
},
"resultScaleFactor": {
"type": "integer",
"description": "10^n divisor for numeric results. E.g. 2 means observation integers are in centi-units (÷100). Default 0. Only meaningful for numericResult and arrayResult types."
},
"unitOfMeasurement": {
"ref": "#unitOfMeasurement",
"type": "ref"
}
}
},
"description": "Groups Observations of one ObservedProperty by one Sensor on one Thing. Carries all context needed to interpret observation results."
}