net.atchan.embed.audio
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "net.atchan.embed.audio",
3
3
"defs": {
4
4
"main": {
5
5
"type": "object",
6
6
"required": [
7
7
"filename",
8
8
"audio",
9
9
"alt"
10
10
],
11
11
"properties": {
12
12
"alt": {
13
13
"type": "string",
14
14
"maxLength": 20000,
15
15
"description": "Text description or transcript of the audio for accessibility. May be empty.",
16
16
"maxGraphemes": 2000
17
17
},
18
18
"audio": {
19
19
"type": "blob",
20
20
"accept": [
21
21
"audio/*"
22
22
],
23
-
"maxSize": 5242880,
23
+
"maxSize": 26214400,
24
24
"description": "The audio represented as bytes"
25
25
},
26
26
"duration": {
27
27
"type": "integer",
28
28
"minimum": 0,
29
29
"description": "Client-declared length of the audio in whole seconds"
30
30
},
31
31
"filename": {
32
32
"type": "string",
33
33
"maxLength": 2600,
34
34
"description": "Name of the file as uploaded",
35
35
"maxGraphemes": 260
36
36
}
37
37
}
38
38
}
39
39
},
40
40
"$type": "com.atproto.lexicon.schema",
41
41
"lexicon": 1
42
42
}