No description available.
Properties
alt
string
Required
Text description or transcript of the audio for accessibility. May be empty.
maxLength: 20000 bytesmaxGraphemes: 2000 graphemesaudio
blob
Required
The audio represented as bytes
maxSize: 26.2 MBduration
integer
Optional
Client-declared length of the audio in whole seconds
minimum: 0filename
string
Required
Name of the file as uploaded
maxLength: 2600 bytesmaxGraphemes: 260 graphemesView raw schema
{
"type": "object",
"required": [
"filename",
"audio",
"alt"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 20000,
"description": "Text description or transcript of the audio for accessibility. May be empty.",
"maxGraphemes": 2000
},
"audio": {
"type": "blob",
"accept": [
"audio/*"
],
"maxSize": 26214400,
"description": "The audio represented as bytes"
},
"duration": {
"type": "integer",
"minimum": 0,
"description": "Client-declared length of the audio in whole seconds"
},
"filename": {
"type": "string",
"maxLength": 2600,
"description": "Name of the file as uploaded",
"maxGraphemes": 260
}
}
}