A music-related post sharing what the user is experiencing.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this post was originally created.
labels
union
Optional
Author-declared content warnings. Uses the standard AT Protocol self-label vocabulary for ecosystem compatibility.
langs
array
of
string
language
Optional
BCP-47 language tags for the text content. Up to three.
maxLength: 3 itemssubject
union
Required
The music being referenced. Open union: third parties or future versions may introduce additional ref types (e.g. playlistRef, concertRef). AppViews must gracefully handle unknown subject $types.
text
string
Optional
Optional commentary about the music.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesverb
string
Required
The action describing the user's relationship to the music. knownValues is informational; AppViews should accept unknown values and apply a graceful fallback (e.g. ignore or render as 'listening').
maxLength: 100 byteslistening, addicted, inLove, obsessed, hating, vibing, feelingLikeView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"verb",
"subject",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000,
"description": "Optional commentary about the music.",
"maxGraphemes": 300
},
"verb": {
"type": "string",
"maxLength": 100,
"description": "The action describing the user's relationship to the music. knownValues is informational; AppViews should accept unknown values and apply a graceful fallback (e.g. ignore or render as 'listening').",
"knownValues": [
"listening",
"addicted",
"inLove",
"obsessed",
"hating",
"vibing",
"feelingLike"
]
},
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "BCP-47 language tags for the text content. Up to three."
},
"labels": {
"refs": [
"com.atproto.label.defs#selfLabels"
],
"type": "union",
"description": "Author-declared content warnings. Uses the standard AT Protocol self-label vocabulary for ecosystem compatibility."
},
"subject": {
"refs": [
"app.tempomusic.feed.defs#songRef",
"app.tempomusic.feed.defs#albumRef",
"app.tempomusic.feed.defs#artistRef"
],
"type": "union",
"description": "The music being referenced. Open union: third parties or future versions may introduce additional ref types (e.g. playlistRef, concertRef). AppViews must gracefully handle unknown subject $types."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
}
}
},
"description": "A music-related post sharing what the user is experiencing."
}