2023-02-28 18:02:32 -07:00

16 lines
400 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Snapshot",
"type": "object",
"properties": {
"proposal": { "type": "string" },
"proposal_verifications": {
"type": "array",
"items": { "type": "string" }
},
"vote": { "type": "string" },
"vote_verifications": { "type": "array", "items": { "type": "string" } }
},
"required": ["proposal"]
}