39 lines
797 B
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", "issueId", "owner", "title"],
13
"properties": {
14
"repo": {
15
"type": "string",
16
"format": "at-uri"
17
},
18
"issueId": {
19
"type": "integer"
20
},
21
"owner": {
22
"type": "string",
23
"format": "did"
24
},
25
"title": {
26
"type": "string"
27
},
28
"body": {
29
"type": "string"
30
},
31
"createdAt": {
32
"type": "string",
33
"format": "datetime"
34
}
35
}
36
}
37
}
38
}
39
}
40