A vote on a statement in a deliberation conversation.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
Reference to the statement being voted on.
value
integer
Required
Vote value: -1 = agree, 0 = pass, 1 = disagree.
minimum: -1maximum: 1View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"value",
"createdAt"
],
"properties": {
"value": {
"type": "integer",
"maximum": 1,
"minimum": -1,
"description": "Vote value: -1 = agree, 0 = pass, 1 = disagree."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the statement being voted on."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A vote on a statement in a deliberation conversation."
}