atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.graph.searchStarterPacks",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Find starter packs matching search criteria. Does not require auth.",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "q"
12 ],
13 "properties": {
14 "cursor": {
15 "type": "string"
16 },
17 "limit": {
18 "type": "integer",
19 "default": 25,
20 "minimum": 1,
21 "maximum": 100
22 },
23 "q": {
24 "type": "string",
25 "description": "Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended."
26 }
27 }
28 },
29 "output": {
30 "encoding": "application/json",
31 "schema": {
32 "type": "object",
33 "required": [
34 "starterPacks"
35 ],
36 "properties": {
37 "cursor": {
38 "type": "string"
39 },
40 "starterPacks": {
41 "type": "array",
42 "items": {
43 "type": "ref",
44 "ref": "app.bsky.graph.defs#starterPackViewBasic"
45 }
46 }
47 }
48 }
49 }
50 }
51 }
52}