# at.mapped.activity

> Published by [mapped.at](https://lexicon.garden/identity/did:plc:l5m5nuh5cvdatyn5fjxar2sh)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.activity)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.activity/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.activity/examples)

## Definitions

### `at.mapped.activity`

**Type**: `record`

An activity like Hiking, Cycling, Kayaking

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | The name of the activity type |
| `description` | `string` | No | Optional description of the activity type |

## Raw Schema

```json
{
  "id": "at.mapped.activity",
  "defs": {
    "main": {
      "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"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
