Public podcast creator profile declaration on VoxPort
Record Key
tid
Timestamp-based ID
Properties
bio
string
Optional
Creator bio/summary
maxLength: 500 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
donationUrl
string
uri
Optional
Link for tips/support/donations
maxLength: 2048 bytesseries
array
of
string
at-uri
Optional
Public series by this creator (AT Protocol URIs)
maxLength: 100 itemsupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
website
string
uri
Optional
Creator website URL
maxLength: 2048 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"bio": {
"type": "string",
"maxLength": 500,
"description": "Creator bio/summary"
},
"series": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 100,
"description": "Public series by this creator (AT Protocol URIs)"
},
"website": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Creator website URL"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"donationUrl": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Link for tips/support/donations"
}
}
},
"description": "Public podcast creator profile declaration on VoxPort"
}