Vote on field proposal
Record Key
tid
Timestamp-based ID
Properties
comment
string
Optional
No description available.
maxLength: 500 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
proposalUri
string
at-uri
Required
Proposal being voted on
schemaRevision
integer
Optional
Schema revision this record was created with. Absent means revision 1.
minimum: 1vote
string
Required
No description available.
Known values:
approve, rejectView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"proposalUri",
"vote",
"createdAt"
],
"properties": {
"vote": {
"type": "string",
"knownValues": [
"approve",
"reject"
]
},
"comment": {
"type": "string",
"maxLength": 500
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"proposalUri": {
"type": "string",
"format": "at-uri",
"description": "Proposal being voted on"
},
"schemaRevision": {
"type": "integer",
"minimum": 1,
"description": "Schema revision this record was created with. Absent means revision 1."
}
}
},
"description": "Vote on field proposal"
}