net.atmud.experimental.character

atmud.net

Documentation

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

main record

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

Record Key tid Timestamp-based ID

Properties

characterId string Required

Stable game-issued identifier for this character, independent of its mutable name.

maxLength: 64 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 20480 bytesmaxGraphemes: 2048 graphemes
joinedAt string datetime Optional

When the character was first created in the world.

name string Required

No description available.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
title string Optional

Optional in-world epithet displayed with the character name.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
world string Required

Slug of the world this character lives in.

maxLength: 128 bytes
worldRef string at-uri Optional

AT-URI of the world's net.atmud.experimental.world record.

View raw schema
{
  "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."
}

Lexicon Garden

@