net.atmud.experimental.defs

atmud.net

Documentation

attribute object

Open key-value pair carrying game-specific data (realm, qi, ...) on universal records.

Properties

key string Required

No description available.

maxLength: 64 bytes
label string Optional

Human-readable label for the key.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
value string Required

No description available.

maxLength: 1024 bytes
View raw schema
{
  "type": "object",
  "required": [
    "key",
    "value"
  ],
  "properties": {
    "key": {
      "type": "string",
      "maxLength": 64
    },
    "label": {
      "type": "string",
      "maxLength": 640,
      "description": "Human-readable label for the key.",
      "maxGraphemes": 64
    },
    "value": {
      "type": "string",
      "maxLength": 1024
    }
  },
  "description": "Open key-value pair carrying game-specific data (realm, qi, ...) on universal records."
}
exitRef object

A named exit from a room, optionally referencing the destination room's record.

Properties

name string Required

No description available.

maxLength: 64 bytes
roomRef string at-uri Optional

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

View raw schema
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 64
    },
    "roomRef": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the destination room's net.atmud.experimental.room record."
    }
  },
  "description": "A named exit from a room, optionally referencing the destination room's record."
}

Lexicon Garden

@