app.protoimsg.chat.allowlist

lexicon.store View official

Documentation

An allowlist entry for a room. When the room has allowlistEnabled, only allowlisted users can send messages. Lives in the room owner/mod's repo.

main record

An allowlist entry for a room. When the room has allowlistEnabled, only allowlisted users can send messages. Lives in the room owner/mod's repo.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of allowlist entry creation.

room string at-uri Required

AT-URI of the room the allowlist entry applies to.

subject string did Required

DID of the allowlisted user.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "room",
      "subject",
      "createdAt"
    ],
    "properties": {
      "room": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the room the allowlist entry applies to."
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the allowlisted user."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of allowlist entry creation."
      }
    }
  },
  "description": "An allowlist entry for a room. When the room has allowlistEnabled, only allowlisted users can send messages. Lives in the room owner/mod's repo."
}

Lexicon Garden

@