No description available.
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
criteria
array
of
ref
#criterion
Required
Criteria for matching this item against a set of tracks
ephemeral
boolean
Optional
No description available.
id
string
Required
No description available.
playlist
string
Required
The name of the playlist
positionedAfter
string
Optional
Id of the item that this item should be positioned after
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"type": "record",
"record": {
"type": "object",
"required": [
"id",
"criteria",
"playlist"
],
"properties": {
"id": {
"type": "string"
},
"criteria": {
"type": "array",
"items": {
"ref": "#criterion",
"type": "ref"
},
"description": "Criteria for matching this item against a set of tracks"
},
"playlist": {
"type": "string",
"description": "The name of the playlist"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"ephemeral": {
"type": "boolean"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"positionedAfter": {
"type": "string",
"description": "Id of the item that this item should be positioned after"
}
}
}
}