An audio track URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/stream_copyAudioTrack",
"title": "stream_copyAudioTrack",
"properties": {
"label": {
"$ref": "#/components/schemas/stream_audio_label"
},
"url": {
"description": "An audio track URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file.",
"example": "https://www.examplestorage.com/audio_file.mp3",
"format": "uri",
"type": "string"
}
},
"required": [
"label"
],
"type": "object"
}