Record declaring a vote on a poll
Record Key
tid
Timestamp-based ID
Properties
option
array
of
string
Required
No description available.
poll
ref
com.atproto.repo.strongRef
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"poll",
"option"
],
"properties": {
"poll": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"option": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"description": "Record declaring a vote on a poll"
}