Gate settings for a ROOM post (like threadgate)
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the gate was created
isClosed
boolean
Optional
Whether the room is closed for new replies
Default:
falseroom
ref
com.atproto.repo.strongRef
Required
Reference to the ROOM post
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"room",
"createdAt"
],
"properties": {
"room": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the ROOM post"
},
"isClosed": {
"type": "boolean",
"default": false,
"description": "Whether the room is closed for new replies"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the gate was created"
}
}
},
"description": "Gate settings for a ROOM post (like threadgate)"
}