{ "lexicon": 1, "id": "pub.leaflet.poll.definition", "defs": { "main": { "type": "record", "description": "Record declaring a poll", "key": "tid", "record": { "type": "object", "required": [ "name", "options" ], "properties": { "endDate": { "type": "string", "format": "datetime" }, "name": { "type": "string", "maxLength": 500, "maxGraphemes": 100 }, "options": { "type": "array", "items": { "type": "ref", "ref": "#option" } } } } }, "option": { "type": "object", "properties": { "text": { "type": "string", "maxLength": 500, "maxGraphemes": 50 } } } } }