at.mapped.activity

mapped.at

Documentation

An activity like Hiking, Cycling, Kayaking

main record

An activity like Hiking, Cycling, Kayaking

Record Key tid Timestamp-based ID

Properties

description string Optional

Optional description of the activity type

maxLength: 300 bytes
name string Required

The name of the activity type

maxLength: 50 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 50,
        "description": "The name of the activity type"
      },
      "description": {
        "type": "string",
        "maxLength": 300,
        "description": "Optional description of the activity type"
      }
    }
  },
  "description": "An activity like Hiking, Cycling, Kayaking"
}

Lexicon Garden

@