social.respawn.feed.gate

respawn.social

Documentation

Interaction settings for a log or list, analogous to app.bsky.feed.threadgate/postgate. The record key (rkey) must match the rkey of the gated record. Absence of a gate record means everyone can interact.

main record

Interaction settings for a log or list, analogous to app.bsky.feed.threadgate/postgate. The record key (rkey) must match the rkey of the gated record. Absence of a gate record means everyone can interact.

Record Key tid Timestamp-based ID

Properties

allow array of union Optional

Rules for who can comment. Absent means everyone; an empty array or a nobody rule means no one.

maxLength: 5 items
createdAt string datetime Required

An RFC 3339 formatted timestamp.

disableLikes boolean Optional

No description available.

hiddenComments array of string at-uri Optional

AT-URIs of comments the author has hidden.

maxLength: 50 items
subject string at-uri Required

The log or list this gate applies to.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "allow": {
        "type": "array",
        "items": {
          "refs": [
            "#nobodyRule",
            "#followingRule",
            "#followerRule"
          ],
          "type": "union"
        },
        "maxLength": 5,
        "description": "Rules for who can comment. Absent means everyone; an empty array or a nobody rule means no one."
      },
      "subject": {
        "type": "string",
        "format": "at-uri",
        "description": "The log or list this gate applies to."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "disableLikes": {
        "type": "boolean"
      },
      "hiddenComments": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "maxLength": 50,
        "description": "AT-URIs of comments the author has hidden."
      }
    }
  },
  "description": "Interaction settings for a log or list, analogous to app.bsky.feed.threadgate/postgate. The record key (rkey) must match the rkey of the gated record. Absence of a gate record means everyone can interact."
}
followerRule object

Allow comments from actors who follow the author.

This object has no properties defined.

View raw schema
{
  "type": "object",
  "properties": {},
  "description": "Allow comments from actors who follow the author."
}
followingRule object

Allow comments from actors the author follows.

This object has no properties defined.

View raw schema
{
  "type": "object",
  "properties": {},
  "description": "Allow comments from actors the author follows."
}
nobodyRule object

Disallow comments from everyone.

This object has no properties defined.

View raw schema
{
  "type": "object",
  "properties": {},
  "description": "Disallow comments from everyone."
}

Lexicon Garden

@