com.suibari.nagi.searchActors
Schema Diff
+12 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.suibari.nagi.searchActors",
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
"actors"
11
11
],
12
12
"properties": {
13
13
"actors": {
14
14
"type": "array",
15
15
"items": {
16
16
"type": "unknown"
17
17
},
18
-
"maxLength": 10
18
+
"maxLength": 20
19
19
}
20
20
}
21
21
},
22
22
"encoding": "application/json"
23
23
},
24
24
"parameters": {
25
25
"type": "params",
26
26
"required": [
27
27
"q"
28
28
],
29
29
"properties": {
30
30
"q": {
31
31
"type": "string",
32
32
"maxLength": 256
33
33
},
34
+
"mode": {
35
+
"type": "string",
36
+
"default": "hybrid",
37
+
"description": "exact=handle/displayName の語彙一致のみ / semantic=プロフィール埋め込みの近傍のみ(語彙一致ヒットは除外・相対しきい値で足切り) / hybrid=両者を1本にまとめた従来の挙動(タイプアヘッド用)。",
38
+
"knownValues": [
39
+
"exact",
40
+
"semantic",
41
+
"hybrid"
42
+
]
43
+
},
34
44
"limit": {
35
45
"type": "integer",
36
46
"default": 10,
37
-
"maximum": 10,
47
+
"maximum": 20,
38
48
"minimum": 1
39
49
}
40
50
}
41
51
}
42
52
}
43
53
},
44
54
"$type": "com.atproto.lexicon.schema",
45
55
"lexicon": 1
46
56
}