Subscription to a podcast series for episode notifications
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
notifyNewEpisodes
boolean
Optional
Whether to notify when new episodes are published
Default:
truesubject
ref
live.voxport.podcast.series#seriesRef
Required
The series being subscribed to (uri + optional cid)
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"ref": "live.voxport.podcast.series#seriesRef",
"type": "ref",
"description": "The series being subscribed to (uri + optional cid)"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"notifyNewEpisodes": {
"type": "boolean",
"default": true,
"description": "Whether to notify when new episodes are published"
}
}
},
"description": "Subscription to a podcast series for episode notifications"
}