atproto blogging
1{
2 "lexicon": 1,
3 "id": "com.atproto.temp.fetchLabels",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "DEPRECATED: use queryLabels or subscribeLabels instead -- Fetch all labels from a labeler created after a certain date.",
8 "parameters": {
9 "type": "params",
10 "properties": {
11 "limit": {
12 "type": "integer",
13 "default": 50,
14 "minimum": 1,
15 "maximum": 250
16 },
17 "since": {
18 "type": "integer"
19 }
20 }
21 },
22 "output": {
23 "encoding": "application/json",
24 "schema": {
25 "type": "object",
26 "required": [
27 "labels"
28 ],
29 "properties": {
30 "labels": {
31 "type": "array",
32 "items": {
33 "type": "ref",
34 "ref": "com.atproto.label.defs#label"
35 }
36 }
37 }
38 }
39 }
40 }
41 }
42}