com.suibari.nagi.searchPosts
Schema Diff
+7 -4
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.suibari.nagi.searchPosts",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"ref": "com.suibari.nagi.getTimeline#output",
9
9
"type": "ref"
10
10
},
11
11
"encoding": "application/json"
12
12
},
13
13
"parameters": {
14
14
"type": "params",
15
-
"required": [
16
-
"tag"
17
-
],
18
15
"properties": {
16
+
"q": {
17
+
"type": "string",
18
+
"maxLength": 200,
19
+
"description": "自由文キーワード。意味検索(埋め込み)+語彙一致のハイブリッドで検索する。"
20
+
},
19
21
"tag": {
20
22
"type": "string",
21
23
"description": "小文字で正規化したタグ(# は含まない)。"
22
24
},
23
25
"limit": {
24
26
"type": "integer",
25
27
"default": 50,
26
28
"maximum": 100,
27
29
"minimum": 1
28
30
},
29
31
"cursor": {
30
32
"type": "string"
31
33
}
32
-
}
34
+
},
35
+
"description": "q(自由文キーワード検索)と tag(タグ絞り込み)のどちらか一方を指定する。q 優先。"
33
36
}
34
37
}
35
38
},
36
39
"$type": "com.atproto.lexicon.schema",
37
40
"lexicon": 1
38
41
}