Monorepo for Tangled
tangled.org
1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.getIssue",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "required": ["issue"],
10 "properties": {
11 "issue": {
12 "type": "string",
13 "format": "at-uri",
14 "description": "AT-URI of the sh.tangled.repo.issue record to fetch."
15 }
16 }
17 },
18 "output": {
19 "encoding": "application/json",
20 "schema": {
21 "type": "object",
22 "required": ["uri", "value"],
23 "properties": {
24 "uri": {
25 "type": "string",
26 "format": "at-uri"
27 },
28 "cid": {
29 "type": "string",
30 "format": "cid"
31 },
32 "value": {
33 "type": "unknown",
34 "description": "Embedded sh.tangled.repo.issue record."
35 }
36 }
37 }
38 }
39 }
40 }
41}