A user's geographical pin on the atlas
Record Key
literal:self
Fixed literal value
Properties
description
string
Required
No description available.
maxLength: 256 bytesdid
string
did
Required
A decentralized identifier (DID).
latitude
string
Required
No description available.
maxLength: 32 byteslongitude
string
Required
No description available.
maxLength: 32 bytesplacedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
website
string
Optional
No description available.
maxLength: 256 bytesView raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"did",
"longitude",
"latitude",
"description",
"placedAt"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"website": {
"type": "string",
"$comment": "User-submitted website",
"maxLength": 256
},
"latitude": {
"type": "string",
"$comment": "Latitude as per WGS84 (EPSG:4326)",
"maxLength": 32
},
"placedAt": {
"type": "string",
"format": "datetime"
},
"longitude": {
"type": "string",
"$comment": "Longitude as per WGS84 (EPSG:4326)",
"maxLength": 32
},
"description": {
"type": "string",
"$comment": "Pin description (as submitted by the user)",
"maxLength": 256
}
}
},
"description": "A user's geographical pin on the atlas"
}