Monorepo for Tangled
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": ["title", "createdAt"],
13 "properties": {
14 "repo": {
15 "type": "string",
16 "format": "at-uri"
17 },
18 "repoDid": {
19 "type": "string",
20 "format": "did"
21 },
22 "title": {
23 "type": "string"
24 },
25 "body": {
26 "type": "string"
27 },
28 "createdAt": {
29 "type": "string",
30 "format": "datetime"
31 },
32 "mentions": {
33 "type": "array",
34 "items": {
35 "type": "string",
36 "format": "did"
37 }
38 },
39 "references": {
40 "type": "array",
41 "items": {
42 "type": "string",
43 "format": "at-uri"
44 }
45 }
46 }
47 }
48 }
49 }
50}