factom-vote
Version:
JS implementation of the Factom voting specification
21 lines • 491 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Factom on-chain vote eligible voters schema",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"voterId"
],
"properties": {
"voterId": {
"type": "string"
},
"weight": {
"type": "number",
"minimum": 0
}
}
}
}