Files: 4d462b129a9f5195f3ae4e70fcf2bccea36ebbb4 / poll / schema / details / proposal.js
226 bytesRaw
1 | var schema = { |
2 | type: 'object', |
3 | required: ['type', 'proposal'], |
4 | properties: { |
5 | type: { |
6 | type: 'string', |
7 | pattern: '^proposal$' |
8 | }, |
9 | proposal: { |
10 | type: 'string' |
11 | } |
12 | } |
13 | } |
14 | |
15 | module.exports = schema |
16 |
Built with git-ssb-web