The real-world feature that an Observation is about.
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
Encoding of the feature field, e.g. application/vnd.geo+json
maxLength: 128 bytesfeature
unknown
Required
GeoJSON geometry or other spatial representation of the feature
name
string
Required
No description available.
maxLength: 256 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"encodingType",
"feature",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256
},
"feature": {
"type": "unknown",
"description": "GeoJSON geometry or other spatial representation of the feature"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2048
},
"encodingType": {
"type": "string",
"maxLength": 128,
"description": "Encoding of the feature field, e.g. application/vnd.geo+json"
}
}
},
"description": "The real-world feature that an Observation is about."
}