A statement in the Polis-style deliberation system
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the statement was created
poll
ref
#pollRef
Required
Reference to the poll this statement belongs to
text
string
Required
The text content of the statement
maxLength: 3000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"poll",
"createdAt"
],
"properties": {
"poll": {
"ref": "#pollRef",
"type": "ref",
"description": "Reference to the poll this statement belongs to"
},
"text": {
"type": "string",
"maxLength": 3000,
"description": "The text content of the statement"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the statement was created"
}
}
},
"description": "A statement in the Polis-style deliberation system"
}