mirror of
https://github.com/fluencelabs/examples
synced 2024-12-04 19:20:17 +00:00
16 lines
400 B
JSON
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"]
|
|
}
|