An instrument or procedure that produces observations.
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 bytesencodingType
string
Required
IANA media type of the metadata field, e.g. application/pdf, application/sensorML+xml
maxLength: 128 bytesmetadata
string
Optional
URL or inline content describing the sensor (SensorML, datasheet URL, etc.)
maxLength: 10000 bytesname
string
Required
No description available.
maxLength: 256 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"encodingType",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256
},
"metadata": {
"type": "string",
"maxLength": 10000,
"description": "URL or inline content describing the sensor (SensorML, datasheet URL, etc.)"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2048
},
"encodingType": {
"type": "string",
"maxLength": 128,
"description": "IANA media type of the metadata field, e.g. application/pdf, application/sensorML+xml"
}
}
},
"description": "An instrument or procedure that produces observations."
}