A named vote board. Lives in the owner's repo; the record key is the board's URL slug.
Record Key
any
Any valid record key
Properties
archived
boolean
Optional
No description available.
Default:
falsecreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesname
string
Required
No description available.
maxLength: 800 bytesmaxGraphemes: 80 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 800,
"maxGraphemes": 80
},
"archived": {
"type": "boolean",
"default": false
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
}
}
},
"description": "A named vote board. Lives in the owner's repo; the record key is the board's URL slug."
}