social.colibri.embed.searchGifs
Schema Diff
+10 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.embed.searchGifs",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "AuthRequired",
9
+
"description": "Missing, malformed, or unverifiable service auth."
10
+
},
11
+
{
12
+
"name": "InvalidRequest",
13
+
"description": "A parameter or body field was missing or malformed."
14
+
}
15
+
],
6
16
"output": {
7
17
"schema": {
8
18
"type": "object",
9
19
"required": [
10
20
"items",
11
21
"page",
12
22
"hasNext"
13
23
],
14
24
"properties": {
15
25
"page": {
16
26
"type": "integer"
17
27
},
18
28
"items": {
19
29
"type": "array",
20
30
"items": {
21
31
"ref": "lex:social.colibri.embed.defs#gifItem",
22
32
"type": "ref"
23
33
}
24
34
},
25
35
"hasNext": {
26
36
"type": "boolean"
27
37
}
28
38
}
29
39
},
30
40
"encoding": "application/json"
31
41
},
32
42
"parameters": {
33
43
"type": "params",
34
44
"required": [
35
45
"q"
36
46
],
37
47
"properties": {
38
48
"q": {
39
49
"type": "string"
40
50
},
41
51
"page": {
42
52
"type": "integer"
43
53
}
44
54
}
45
55
},
46
56
"description": "Searches GIFs by query."
47
57
}
48
58
},
49
59
"$type": "com.atproto.lexicon.schema",
50
60
"lexicon": 1
51
61
}