Record representing a single played item
Record Key
any
Any valid record key
Properties
airdate
string
datetime
Required
An RFC 3339 formatted timestamp.
album
string
Optional
No description available.
maxLength: 500 bytesartist
string
Optional
No description available.
maxLength: 500 bytescomment
string
Optional
No description available.
maxLength: 5000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
id
integer
Required
No description available.
imageUri
string
uri
Optional
A valid URI.
playType
string
Required
No description available.
maxLength: 20 bytesKnown values:
airbreak, trackplayshow
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
song
string
Optional
No description available.
maxLength: 500 bytesthumbnailUri
string
uri
Optional
A valid URI.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"airdate",
"id",
"playType",
"createdAt"
],
"properties": {
"id": {
"type": "integer"
},
"show": {
"type": "string",
"format": "at-uri"
},
"song": {
"type": "string",
"maxLength": 500
},
"album": {
"type": "string",
"maxLength": 500
},
"artist": {
"type": "string",
"maxLength": 500
},
"airdate": {
"type": "string",
"format": "datetime"
},
"comment": {
"type": "string",
"maxLength": 5000
},
"imageUri": {
"type": "string",
"format": "uri"
},
"playType": {
"type": "string",
"maxLength": 20,
"knownValues": [
"airbreak",
"trackplay"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"thumbnailUri": {
"type": "string",
"format": "uri"
}
}
},
"description": "Record representing a single played item"
}