com.suibari.nagi.searchChannels
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.suibari.nagi.searchChannels",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"channels",
11
11
"hasMore"
12
12
],
13
13
"properties": {
14
14
"cursor": {
15
15
"type": "string"
16
16
},
17
17
"hasMore": {
18
18
"type": "boolean"
19
19
},
20
20
"channels": {
21
21
"type": "array",
22
22
"items": {
23
23
"type": "unknown"
24
24
}
25
25
}
26
26
}
27
27
},
28
28
"encoding": "application/json"
29
29
},
30
30
"parameters": {
31
31
"type": "params",
32
32
"required": [
33
33
"q"
34
34
],
35
35
"properties": {
36
36
"q": {
37
37
"type": "string",
38
38
"maxLength": 200,
39
39
"description": "自由文キーワード。name+description を意味検索(埋め込み)+語彙一致で検索する。"
40
40
},
41
41
"limit": {
42
42
"type": "integer",
43
43
"default": 50,
44
44
"maximum": 100,
45
45
"minimum": 1
46
46
},
47
47
"cursor": {
48
48
"type": "string"
49
+
},
50
+
"typeahead": {
51
+
"type": "boolean",
52
+
"default": false,
53
+
"description": "true のとき、入力候補用に name だけを軽量な語彙一致で検索する。"
49
54
}
50
55
}
51
56
}
52
57
}
53
58
},
54
59
"$type": "com.atproto.lexicon.schema",
55
60
"lexicon": 1
56
61
}