No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this audio was originally created.
details
ref
so.sprk.sound.defs#audioDetails
Optional
No description available.
labels
union
Optional
Self-label values for this audio. Effectively content warnings.
Known types:
origin
ref
com.atproto.repo.strongRef
Optional
No description available.
sound
blob
Required
No description available.
maxSize: 10.5 MBtitle
string
Required
The audio's title.
maxLength: 1000 bytesmaxGraphemes: 100 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"sound",
"title",
"createdAt"
],
"properties": {
"sound": {
"type": "blob",
"accept": [
"audio/*"
],
"maxSize": 10485760
},
"title": {
"type": "string",
"maxLength": 1000,
"description": "The audio's title.",
"maxGraphemes": 100
},
"labels": {
"refs": [
"com.atproto.label.defs#selfLabels"
],
"type": "union",
"description": "Self-label values for this audio. Effectively content warnings."
},
"origin": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"details": {
"ref": "so.sprk.sound.defs#audioDetails",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this audio was originally created."
}
}
}
}