No description available.
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
ephemeral
boolean
Optional
No description available.
id
string
Required
No description available.
kind
string
Optional
No description available.
audiobook, miscellaneous, music, placeholder, podcast, streamstats
ref
#stats
Optional
No description available.
tags
ref
#tags
Optional
No description available.
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
uri
string
Required
This is a 'semi-permanent' URI. Tracks are typically cached so you can't, for example, use an URL that expires in several hours.
View raw schema
{
"type": "record",
"record": {
"type": "object",
"required": [
"id",
"uri"
],
"properties": {
"id": {
"type": "string"
},
"uri": {
"type": "string",
"description": "This is a 'semi-permanent' URI. Tracks are typically cached so you can't, for example, use an URL that expires in several hours."
},
"kind": {
"enum": [
"audiobook",
"miscellaneous",
"music",
"placeholder",
"podcast",
"stream"
],
"type": "string"
},
"tags": {
"ref": "#tags",
"type": "ref"
},
"stats": {
"ref": "#stats",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"ephemeral": {
"type": "boolean"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
}
}