# farm.lore.character

> Published by [lore.farm](https://lexicon.garden/identity/did:plc:pfyyashnoatlhgwwfq7ut64l)

✓ This is the authoritative definition for this NSID.

## Description

A character joining a world.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.character)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.character/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.character/examples)

## Definitions

### `farm.lore.character`

**Type**: `record`

Registers the user as a character (participant) in a world. Grants eligibility for lore and canon applications.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No | Optional character name or alias within the world. |
| `world` | `string` | Yes | The world domain the character is joining. |
| `createdAt` | `string` (datetime) | Yes | Timestamp of character registration. |

## Examples

The following examples demonstrate valid data for this lexicon. [View all examples](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.character/examples)

### Example 1 (`#main`)

**Description**: Joining a world with a character handle.

```json
{
  "name": "libre.reverie.house",
  "$type": "farm.lore.character",
  "world": "reverie.house",
  "createdAt": "2025-12-06T20:42:50.361Z"
}
```

## Raw Schema

```json
{
  "id": "farm.lore.character",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "world",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256,
            "description": "Optional character name or alias within the world."
          },
          "world": {
            "type": "string",
            "maxLength": 253,
            "description": "The world domain the character is joining."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of character registration."
          }
        }
      },
      "description": "Registers the user as a character (participant) in a world. Grants eligibility for lore and canon applications."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A character joining a world."
}
```
