Monorepo for Tangled
tangled.org
1{
2 "lexicon": 1,
3 "id": "sh.tangled.actor.getProfiles",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "required": ["actors"],
10 "properties": {
11 "actors": {
12 "type": "array",
13 "items": {
14 "type": "string",
15 "format": "at-uri"
16 },
17 "maxLength": 50,
18 "description": "AT-URIs of the sh.tangled.actor.profile records to fetch. At most 50 per request."
19 }
20 }
21 },
22 "output": {
23 "encoding": "application/json",
24 "schema": {
25 "type": "object",
26 "required": ["items"],
27 "properties": {
28 "items": {
29 "type": "array",
30 "items": {
31 "type": "ref",
32 "ref": "#recordView"
33 }
34 }
35 }
36 }
37 }
38 },
39 "recordView": {
40 "type": "object",
41 "required": ["uri", "value"],
42 "properties": {
43 "uri": {
44 "type": "string",
45 "format": "at-uri"
46 },
47 "cid": {
48 "type": "string",
49 "format": "cid"
50 },
51 "value": {
52 "type": "unknown",
53 "description": "Embedded sh.tangled.actor.profile record."
54 }
55 }
56 }
57 }
58}