farm.lore.banished

lore.farm

Documentation

Bans a user from participating in a world. Only the world owner may create banishment records.

main record
1 example

Bans a user from participating in a world. Only the world owner may create banishment records.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of the banishment.

reason string Optional

Optional reason for the banishment.

maxLength: 1024 bytes
subject string did Required

The DID of the user being banished.

world string Required

The world domain the user is being banished from.

maxLength: 253 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "world",
      "subject",
      "createdAt"
    ],
    "properties": {
      "world": {
        "type": "string",
        "maxLength": 253,
        "description": "The world domain the user is being banished from."
      },
      "reason": {
        "type": "string",
        "maxLength": 1024,
        "description": "Optional reason for the banishment."
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "The DID of the user being banished."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of the banishment."
      }
    }
  },
  "description": "Bans a user from participating in a world. Only the world owner may create banishment records."
}

Lexicon Garden

@