# farm.lore.curator

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

✓ This is the authoritative definition for this NSID.

## Description

A curator appointment for a world.

## Links

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

## Definitions

### `farm.lore.curator`

**Type**: `record`

Endorses a user as a curator (loremaster) for a world. Written by the world owner to grant curator privileges.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `role` | `string` | No | Optional role title for the curator. |
| `world` | `string` | Yes | The world domain this curator appointment applies to. |
| `subject` | `string` (did) | Yes | The DID of the user being appointed as curator. |
| `createdAt` | `string` (datetime) | Yes | Timestamp of the appointment. |

## Examples

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

### Example 1 (`#main`)

**Description**: Appointing a world curator.

```json
{
  "role": "owner",
  "$type": "farm.lore.curator",
  "world": "reverie.house",
  "subject": "did:plc:yauphjufk7phkwurn266ybx2",
  "createdAt": "2025-12-05T18:44:41.783Z"
}
```

## Raw Schema

```json
{
  "id": "farm.lore.curator",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "world",
          "subject",
          "createdAt"
        ],
        "properties": {
          "role": {
            "type": "string",
            "maxLength": 256,
            "description": "Optional role title for the curator."
          },
          "world": {
            "type": "string",
            "maxLength": 253,
            "description": "The world domain this curator appointment applies to."
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "The DID of the user being appointed as curator."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of the appointment."
          }
        }
      },
      "description": "Endorses a user as a curator (loremaster) for a world. Written by the world owner to grant curator privileges."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A curator appointment for a world."
}
```
