A physical object (station, platform, device) capable of hosting sensors.
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 2048 byteslocation
ref
#geoPoint
Optional
Nominal/static location of the Thing. For mobile platforms, this is the deployment position (e.g. mooring point); time-varying position is recorded via position observations.
name
string
Required
No description available.
maxLength: 256 bytesproperties
unknown
Optional
Open metadata object (manufacturer, model, serial number, deployment date, etc.)
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256
},
"location": {
"ref": "#geoPoint",
"type": "ref",
"description": "Nominal/static location of the Thing. For mobile platforms, this is the deployment position (e.g. mooring point); time-varying position is recorded via position observations."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"properties": {
"type": "unknown",
"description": "Open metadata object (manufacturer, model, serial number, deployment date, etc.)"
},
"description": {
"type": "string",
"maxLength": 2048
}
}
},
"description": "A physical object (station, platform, device) capable of hosting sensors."
}