space.remanso.recording
Schema Diff
+4 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.remanso.recording",
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
"audio",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"audio": {
15
15
"type": "blob",
16
16
"accept": [
17
-
"audio/*"
17
+
"audio/*",
18
+
"video/mp4"
18
19
],
19
-
"maxSize": 50000000
20
+
"maxSize": 50000000,
21
+
"description": "The recording itself. video/mp4 is accepted alongside audio/* because a PDS sniffs the container rather than trusting the upload's Content-Type, and an audio-only MP4 or M4A sniffs as video/mp4."
20
22
},
21
23
"title": {
22
24
"type": "string",
23
25
"maxLength": 1000
24
26
},
25
27
"createdAt": {
26
28
"type": "string",
27
29
"format": "datetime"
28
30
},
29
31
"recordedAt": {
30
32
"type": "string",
31
33
"format": "datetime",
32
34
"description": "When the audio was originally captured — a past stream's air date, not the upload time."
33
35
},
34
36
"durationSec": {
35
37
"type": "integer",
36
38
"description": "Playback length in seconds."
37
39
}
38
40
}
39
41
},
40
42
"description": "An audio recording — a past stream, a podcast episode, a voice note — referenced from a Remanso note by at-uri."
41
43
}
42
44
},
43
45
"$type": "com.atproto.lexicon.schema",
44
46
"lexicon": 1
45
47
}