# farm.lore.world

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

✓ This is the authoritative definition for this NSID.

## Description

A shared creative world where users contribute lore and canon.

## Links

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

## Definitions

### `farm.lore.world`

**Type**: `record`

Declares a shared creative world on lore.farm. The world domain becomes the canonical identifier for all lore, characters, and canon within it.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `lore` | `string` | No | Who may declare content as lore. |
| `name` | `string` | Yes | Display name of the world. |
| `canon` | `string` | No | Who may promote lore to canon. |
| `domain` | `string` | Yes | The domain name that identifies this world (e.g. 'reverie.house'). |
| `appoint` | `string` | No | Who may appoint curators. |
| `character` | `string` | No | Character registration policy. |
| `createdAt` | `string` (datetime) | Yes | Timestamp of world creation. |
| `description` | `string` | No | A short description of the world. |

## Examples

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

### Example 1 (`#main`)

**Description**: Creating a world with invite-only characters and curator canon.

```json
{
  "lore": "characters",
  "name": "Reverie House",
  "$type": "farm.lore.world",
  "canon": "curators",
  "domain": "reverie.house",
  "appoint": "loremaster",
  "character": "invited",
  "createdAt": "2025-12-05T18:44:41.783Z",
  "description": "A dreaming collective at the edge of perception"
}
```

## Raw Schema

```json
{
  "id": "farm.lore.world",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "domain",
          "name",
          "createdAt"
        ],
        "properties": {
          "lore": {
            "type": "string",
            "default": "open",
            "maxLength": 20,
            "description": "Who may declare content as lore.",
            "knownValues": [
              "open",
              "characters",
              "curators"
            ]
          },
          "name": {
            "type": "string",
            "maxLength": 256,
            "description": "Display name of the world."
          },
          "canon": {
            "type": "string",
            "default": "curators",
            "maxLength": 20,
            "description": "Who may promote lore to canon.",
            "knownValues": [
              "open",
              "curators",
              "loremaster"
            ]
          },
          "domain": {
            "type": "string",
            "maxLength": 253,
            "description": "The domain name that identifies this world (e.g. 'reverie.house')."
          },
          "appoint": {
            "type": "string",
            "default": "loremaster",
            "maxLength": 20,
            "description": "Who may appoint curators.",
            "knownValues": [
              "loremaster",
              "curators"
            ]
          },
          "character": {
            "type": "string",
            "default": "open",
            "maxLength": 20,
            "description": "Character registration policy.",
            "knownValues": [
              "open",
              "invited"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of world creation."
          },
          "description": {
            "type": "string",
            "maxLength": 2048,
            "description": "A short description of the world."
          }
        }
      },
      "description": "Declares a shared creative world on lore.farm. The world domain becomes the canonical identifier for all lore, characters, and canon within it."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A shared creative world where users contribute lore and canon."
}
```
