A follow relationship between a user and a podcast show.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
show
ref
com.atproto.repo.strongRef
Required
The show being followed.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"show",
"createdAt"
],
"properties": {
"show": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The show being followed."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A follow relationship between a user and a podcast show."
}