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.
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 itemscreatedAt
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 itemssubject
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."
}