com.scanash.content.image
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.scanash.content.image",
3
3
"defs": {
4
4
"main": {
5
5
"type": "object",
6
6
"required": [
7
7
"image"
8
8
],
9
9
"properties": {
10
10
"alt": {
11
11
"type": "string",
12
12
"maxLength": 10000,
13
13
"description": "Alt text describing the image for accessibility.",
14
14
"maxGraphemes": 1000
15
15
},
16
16
"image": {
17
17
"type": "blob",
18
18
"accept": [
19
19
"image/*"
20
20
],
21
21
"maxSize": 5000000
22
22
}
23
23
},
24
-
"description": "An image uploaded for a site.standard.document body. Held on the record (as an entry in the document's `content` union) so the PDS retains the blob."
24
+
"description": "An image uploaded for a site.standard.document body. Held on the record (nested in the markdown content's `images` list) so the PDS retains the blob."
25
25
}
26
26
},
27
27
"$type": "com.atproto.lexicon.schema",
28
28
"lexicon": 1
29
29
}