# net.atmud.experimental.character

> Published by [atmud.net](https://lexicon.garden/identity/did:plc:isja5viot4eab7qwzj3oucvx)

✓ This is the authoritative definition for this NSID.

## Description

EXPERIMENTAL (unstable): schema may change without notice.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:isja5viot4eab7qwzj3oucvx/net.atmud.experimental.character)
- [Documentation](https://lexicon.garden/lexicon/did:plc:isja5viot4eab7qwzj3oucvx/net.atmud.experimental.character/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:isja5viot4eab7qwzj3oucvx/net.atmud.experimental.character/examples)

## Definitions

### `net.atmud.experimental.character`

**Type**: `record`

EXPERIMENTAL (unstable): A character belonging to this account in a MUD world.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `title` | `string` | No | Optional in-world epithet displayed with the character name. |
| `world` | `string` | Yes | Slug of the world this character lives in. |
| `joinedAt` | `string` (datetime) | No | When the character was first created in the world. |
| `worldRef` | `string` (at-uri) | No | AT-URI of the world's net.atmud.experimental.world record. |
| `createdAt` | `string` (datetime) | Yes |  |
| `attributes` | `array` | No |  |
| `characterId` | `string` | Yes | Stable game-issued identifier for this character, independent of its mutable name. |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "net.atmud.experimental.character",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "characterId",
          "name",
          "world",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "title": {
            "type": "string",
            "maxLength": 640,
            "description": "Optional in-world epithet displayed with the character name.",
            "maxGraphemes": 64
          },
          "world": {
            "type": "string",
            "maxLength": 128,
            "description": "Slug of the world this character lives in."
          },
          "joinedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the character was first created in the world."
          },
          "worldRef": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the world's net.atmud.experimental.world record."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "attributes": {
            "type": "array",
            "items": {
              "ref": "net.atmud.experimental.defs#attribute",
              "type": "ref"
            },
            "maxLength": 64
          },
          "characterId": {
            "type": "string",
            "maxLength": 64,
            "description": "Stable game-issued identifier for this character, independent of its mutable name."
          },
          "description": {
            "type": "string",
            "maxLength": 20480,
            "maxGraphemes": 2048
          }
        }
      },
      "description": "EXPERIMENTAL (unstable): A character belonging to this account in a MUD world."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "EXPERIMENTAL (unstable): schema may change without notice."
}
```
