farm.lore.character

lore.farm

Documentation

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

main record
1 example

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

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of character registration.

name string Optional

Optional character name or alias within the world.

maxLength: 256 bytes
world string Required

The world domain the character is joining.

maxLength: 253 bytes
View raw schema
{
  "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."
}

Lexicon Garden

@