pics.pixl.image
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "pics.pixl.image",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"image",
11
11
"alt",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"alt": {
16
16
"type": "string",
17
17
"maxLength": 20000,
18
18
"description": "Alt text for the image.",
19
19
"maxGraphemes": 2000
20
20
},
21
21
"image": {
22
22
"type": "blob",
23
23
"accept": [
24
24
"image/jpeg",
25
25
"image/png",
26
26
"image/webp",
27
27
"image/gif",
28
28
"image/avif",
29
29
"image/heic"
30
30
],
31
31
"maxSize": 50000000,
32
32
"description": "The original image file."
33
33
},
34
34
"preview": {
35
35
"type": "blob",
36
36
"accept": [
37
37
"image/png"
38
38
],
39
39
"maxSize": 2000000,
40
-
"description": "A smaller WebP preview of the image."
40
+
"description": "A smaller PNG preview of the image."
41
41
},
42
42
"createdAt": {
43
43
"type": "string",
44
44
"format": "datetime"
45
45
}
46
46
}
47
47
}
48
48
}
49
49
},
50
50
"$type": "com.atproto.lexicon.schema",
51
51
"lexicon": 1,
52
52
"description": "An image stored in an AT Protocol repository."
53
53
}