a poll
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"options",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 300
},
"options": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100
},
"maxLength": 10,
"minLength": 2
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "a poll"
}