A poll published in the author's repo. Options are strong refs to blog.brookie.poll.option records created beforehand in the same repo, so the poll pins the exact option content it was published with.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
options
array
of
ref
com.atproto.repo.strongRef
Required
No description available.
maxLength: 12 itemsminLength: 2 itemsquestion
string
Required
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"question",
"options",
"createdAt"
],
"properties": {
"options": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"maxLength": 12,
"minLength": 2
},
"question": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A poll published in the author's repo. Options are strong refs to blog.brookie.poll.option records created beforehand in the same repo, so the poll pins the exact option content it was published with."
}