atproto blogging
1{
2 "lexicon": 1,
3 "id": "pub.leaflet.poll.vote",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Record declaring a vote on a poll",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": [
12 "poll",
13 "option"
14 ],
15 "properties": {
16 "option": {
17 "type": "array",
18 "items": {
19 "type": "string"
20 }
21 },
22 "poll": {
23 "type": "ref",
24 "ref": "com.atproto.repo.strongRef"
25 }
26 }
27 }
28 }
29 }
30}