dev.sensorthings.datastream

lexicon.store View official

Documentation

Groups Observations of one ObservedProperty by one Sensor on one Thing. Carries all context needed to interpret observation results.

main record

Groups Observations of one ObservedProperty by one Sensor on one Thing. Carries all context needed to interpret observation results.

Record Key any Any valid record key

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 2048 bytes
name string Required

No description available.

maxLength: 256 bytes
observationType string uri Required

O&M observation type URI, e.g. http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement

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

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 bytes
View 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."
}
unitOfMeasurement object

UCUM-compatible unit description.

Properties

definition string uri Optional

URI from QUDT, UCUM, or similar unit ontology

name string Required

No description available.

maxLength: 128 bytes
symbol string Required

No description available.

maxLength: 32 bytes
View raw schema
{
  "type": "object",
  "required": [
    "name",
    "symbol"
  ],
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 128
    },
    "symbol": {
      "type": "string",
      "maxLength": 32
    },
    "definition": {
      "type": "string",
      "format": "uri",
      "description": "URI from QUDT, UCUM, or similar unit ontology"
    }
  },
  "description": "UCUM-compatible unit description."
}

Lexicon Garden

@