at.mapped.trail

mapped.at

Documentation

A trail

main record

A trail

Record Key tid Timestamp-based ID

Properties

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 bytes
polyline string Optional

Encoded Polyline representing the trail geometry

maxLength: 1000 bytes
View 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"
}

Lexicon Garden

@