1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.issue",
4 "needsCbor": true,
5 "needsType": true,
6 "defs": {
7 "main": {
8 "type": "record",
9 "key": "tid",
10 "record": {
11 "type": "object",
12 "required": ["repo", "title", "createdAt"],
13 "properties": {
14 "repo": {
15 "type": "string",
16 "format": "at-uri"
17 },
18 "title": {
19 "type": "string"
20 },
21 "body": {
22 "type": "string"
23 },
24 "createdAt": {
25 "type": "string",
26 "format": "datetime"
27 }
28 }
29 }
30 }
31 }
32}