A statement submitted to a deliberation conversation.
Record Key
tid
Timestamp-based ID
Properties
anonymous
boolean
Optional
Whether this statement was submitted anonymously (e.g., seed statements). Anonymous statements are written to a designated service DID, not the author's personal repo.
Default:
falseconversation
ref
com.atproto.repo.strongRef
Required
Reference to the conversation this statement belongs to.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
text
string
Required
The statement text.
maxLength: 2000 bytesmaxGraphemes: 400 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"conversation",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 2000,
"description": "The statement text.",
"maxGraphemes": 400
},
"anonymous": {
"type": "boolean",
"default": false,
"description": "Whether this statement was submitted anonymously (e.g., seed statements). Anonymous statements are written to a designated service DID, not the author's personal repo."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"conversation": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the conversation this statement belongs to."
}
}
},
"description": "A statement submitted to a deliberation conversation."
}