-
Notifications
You must be signed in to change notification settings - Fork 554
/
images.json
52 lines (52 loc) · 1.18 KB
/
images.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"lexicon": 1,
"id": "app.bsky.embed.images",
"description": "A set of images embedded in some other form of content",
"defs": {
"main": {
"type": "object",
"required": ["images"],
"properties": {
"images": {
"type": "array",
"items": {"type": "ref", "ref": "#image"},
"maxLength": 4
}
}
},
"image": {
"type": "object",
"required": ["image", "alt"],
"properties": {
"image": {
"type": "image",
"accept": ["image/*"],
"maxWidth": 2000,
"maxHeight": 2000,
"maxSize": 1000000
},
"alt": {"type": "string"}
}
},
"presented": {
"type": "object",
"required": ["images"],
"properties": {
"images": {
"type": "array",
"items": {"type": "ref", "ref": "#presentedImage"},
"maxLength": 4
}
}
},
"presentedImage": {
"type": "object",
"required": ["thumb", "fullsize", "alt"],
"properties": {
"thumb": {"type": "string"},
"fullsize": {"type": "string"},
"alt": {"type": "string"}
}
}
}
}