A personal expression of interest in a podcast, stored in the follower's own repository and portable across applications. This record does not define notification behavior, feed inclusion, ranking, or metrics — it captures follow intent only.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When the follow was created.
subject
ref
org.atpodcasting.defs#podcastRef
Required
The podcast being followed.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"ref": "org.atpodcasting.defs#podcastRef",
"type": "ref",
"description": "The podcast being followed."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the follow was created."
}
}
},
"description": "A personal expression of interest in a podcast, stored in the follower's own repository and portable across applications. This record does not define notification behavior, feed inclusion, ranking, or metrics — it captures follow intent only."
}