social.colibri.embed.getImage
Schema Diff
+10 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.embed.getImage",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "NotAnImage",
9
+
"description": "The linked resource is not an image type the AppView serves."
10
+
},
11
+
{
12
+
"name": "RateLimited",
13
+
"description": "The caller exceeded its rate budget."
14
+
}
15
+
],
6
16
"output": {
7
17
"encoding": "*/*",
8
18
"description": "The proxied image bytes (Content-Type is image/*)."
9
19
},
10
20
"parameters": {
11
21
"type": "params",
12
22
"required": [
13
23
"url"
14
24
],
15
25
"properties": {
16
26
"url": {
17
27
"type": "string",
18
28
"format": "uri"
19
29
}
20
30
}
21
31
},
22
32
"description": "Proxies and returns an external image, guarding against SSRF."
23
33
}
24
34
},
25
35
"$type": "com.atproto.lexicon.schema",
26
36
"lexicon": 1
27
37
}