Monorepo for Tangled
tangled.org
1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.getReposByRepoDids",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "required": ["dids"],
10 "properties": {
11 "dids": {
12 "type": "array",
13 "items": { "type": "string", "format": "did" },
14 "maxLength": 50,
15 "description": "Repo DIDs to fetch. DIDs that resolve to none are omitted from the response."
16 }
17 }
18 },
19 "output": {
20 "encoding": "application/json",
21 "schema": {
22 "type": "object",
23 "required": ["items"],
24 "properties": {
25 "items": {
26 "type": "array",
27 "items": { "type": "ref", "ref": "#listItem" }
28 }
29 }
30 }
31 }
32 },
33 "listItem": {
34 "type": "object",
35 "required": ["uri", "value"],
36 "properties": {
37 "uri": { "type": "string", "format": "at-uri" },
38 "cid": { "type": "string", "format": "cid" },
39 "value": {
40 "type": "unknown",
41 "description": "sh.tangled.repo record"
42 }
43 }
44 }
45 }
46}