atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.graph.getList",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Gets a 'view' (with additional context) of a specified list.",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "list"
12 ],
13 "properties": {
14 "cursor": {
15 "type": "string"
16 },
17 "limit": {
18 "type": "integer",
19 "default": 50,
20 "minimum": 1,
21 "maximum": 100
22 },
23 "list": {
24 "type": "string",
25 "description": "Reference (AT-URI) of the list record to hydrate.",
26 "format": "at-uri"
27 }
28 }
29 },
30 "output": {
31 "encoding": "application/json",
32 "schema": {
33 "type": "object",
34 "required": [
35 "list",
36 "items"
37 ],
38 "properties": {
39 "cursor": {
40 "type": "string"
41 },
42 "items": {
43 "type": "array",
44 "items": {
45 "type": "ref",
46 "ref": "app.bsky.graph.defs#listItemView"
47 }
48 },
49 "list": {
50 "type": "ref",
51 "ref": "app.bsky.graph.defs#listView"
52 }
53 }
54 }
55 }
56 }
57 }
58}