Files: 3c9734dbc87863e2373fcdfa511441b061e7a813 / poll / schema / details / chooseOne.js
336 bytesRaw
1 | const { chooseOnePollType } = require('../../../types') |
2 | const typeStringPattern = `^${chooseOnePollType}$` |
3 | |
4 | var schema = { |
5 | type: 'object', |
6 | required: ['type', 'choices'], |
7 | properties: { |
8 | type: { |
9 | type: 'string', |
10 | pattern: typeStringPattern |
11 | }, |
12 | choices: { |
13 | type: 'array' |
14 | } |
15 | } |
16 | } |
17 | |
18 | module.exports = schema |
19 |
Built with git-ssb-web