A trail
Record Key
tid
Timestamp-based ID
Properties
activityType
ref
com.atproto.repo.strongRef
Optional
Reference to an activityType record
locations
array
of
ref
at.mapped.location
Optional
Optional array of location references along the trail
name
string
Required
Display name of the trail or route
maxLength: 50 bytespolyline
string
Optional
Encoded Polyline representing the trail geometry
maxLength: 1000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 50,
"description": "Display name of the trail or route"
},
"polyline": {
"type": "string",
"maxLength": 1000,
"description": "Encoded Polyline representing the trail geometry"
},
"locations": {
"type": "array",
"items": {
"ref": "at.mapped.location",
"type": "ref"
},
"description": "Optional array of location references along the trail"
},
"activityType": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to an activityType record"
}
}
},
"description": "A trail"
}