A crate (playlist/collection) of tracks
Record Key
tid
Timestamp-based ID
Properties
coverImageUrl
string
uri
Optional
URL to crate cover image
maxLength: 3000 bytescreatedAt
string
datetime
Required
Record creation timestamp
maxLength: 100 bytesdescription
string
Optional
Crate description
maxLength: 2000 bytesisPublic
boolean
Optional
Whether the crate is publicly visible
Default:
truename
string
Required
Crate name
maxLength: 200 bytestracks
array
of
string
at-uri
Optional
Ordered list of track AT URIs
maxLength: 500 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 200,
"description": "Crate name"
},
"tracks": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri",
"maxLength": 3000
},
"maxLength": 500,
"description": "Ordered list of track AT URIs"
},
"isPublic": {
"type": "boolean",
"default": true,
"description": "Whether the crate is publicly visible"
},
"createdAt": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "Record creation timestamp"
},
"description": {
"type": "string",
"maxLength": 2000,
"description": "Crate description"
},
"coverImageUrl": {
"type": "string",
"format": "uri",
"maxLength": 3000,
"description": "URL to crate cover image"
}
}
},
"description": "A crate (playlist/collection) of tracks"
}