40 lines
811 B
1
{
2
"lexicon": 1,
3
"id": "sh.tangled.repo.issue.comment",
4
"needsCbor": true,
5
"needsType": true,
6
"defs": {
7
"main": {
8
"type": "record",
9
"key": "tid",
10
"record": {
11
"type": "object",
12
"required": ["issue"],
13
"properties": {
14
"issue": {
15
"type": "string",
16
"format": "at-uri"
17
},
18
"repo": {
19
"type": "string",
20
"format": "at-uri"
21
},
22
"commentId": {
23
"type": "integer"
24
},
25
"owner": {
26
"type": "string",
27
"format": "did"
28
},
29
"body": {
30
"type": "string"
31
},
32
"createdAt": {
33
"type": "string",
34
"format": "datetime"
35
}
36
}
37
}
38
}
39
}
40
}
41