atproto blogging
1{
2 "lexicon": 1,
3 "id": "pub.leaflet.poll.definition",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Record declaring a poll",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": [
12 "name",
13 "options"
14 ],
15 "properties": {
16 "endDate": {
17 "type": "string",
18 "format": "datetime"
19 },
20 "name": {
21 "type": "string",
22 "maxLength": 500,
23 "maxGraphemes": 100
24 },
25 "options": {
26 "type": "array",
27 "items": {
28 "type": "ref",
29 "ref": "#option"
30 }
31 }
32 }
33 }
34 },
35 "option": {
36 "type": "object",
37 "properties": {
38 "text": {
39 "type": "string",
40 "maxLength": 500,
41 "maxGraphemes": 50
42 }
43 }
44 }
45 }
46}