examples/archived/aqua-ceramic-integration/ceramic/snapshot_schema.json
2023-03-01 05:49:23 -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"]
}