atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.graph.getActorLists",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get lists created by an actor.",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "actor"
12 ],
13 "properties": {
14 "actor": {
15 "type": "string",
16 "format": "at-identifier"
17 },
18 "cursor": {
19 "type": "string"
20 },
21 "limit": {
22 "type": "integer",
23 "default": 50,
24 "minimum": 1,
25 "maximum": 100
26 },
27 "purpose": {
28 "type": "string",
29 "description": "Filter by list purpose."
30 }
31 }
32 },
33 "output": {
34 "encoding": "application/json",
35 "schema": {
36 "type": "object",
37 "required": [
38 "lists"
39 ],
40 "properties": {
41 "cursor": {
42 "type": "string"
43 },
44 "lists": {
45 "type": "array",
46 "items": {
47 "type": "ref",
48 "ref": "sh.weaver.graph.defs#listView"
49 }
50 }
51 }
52 }
53 }
54 }
55 }
56}