A quadratic vote allocation targeting a sim.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the vote was cast
sim
ref
com.atproto.repo.strongRef
Required
Reference to the sim record being voted for
votes
integer
Required
Number of quadratic votes allocated
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"sim",
"votes",
"createdAt"
],
"properties": {
"sim": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the sim record being voted for"
},
"votes": {
"type": "integer",
"description": "Number of quadratic votes allocated"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the vote was cast"
}
}
},
"description": "A quadratic vote allocation targeting a sim."
}