Open key-value pair carrying game-specific data (realm, qi, ...) on universal records.
Properties
No description available.
maxLength: 64 bytes
Human-readable label for the key.
maxLength: 640 bytesmaxGraphemes: 64 graphemes
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."
}
A named exit from a room, optionally referencing the destination room's record.
Properties
No description available.
maxLength: 64 bytes
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."
}