31 lines
708 B
1
{
2
"lexicon": 1,
3
"id": "sh.tangled.repo.issue.state",
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
"state": {
19
"type": "string",
20
"description": "state of the issue",
21
"knownValues": [
22
"sh.tangled.repo.issue.state.open",
23
"sh.tangled.repo.issue.state.closed"
24
],
25
"default": "sh.tangled.repo.issue.state.open"
26
}
27
}
28
}
29
}
30
}
31
}
32