Record representing a theme's inclusion in a specific theme collection. Consumers should ignore duplicate items.
Record Key
tid
Timestamp-based ID
Properties
collection
string
at-uri
Required
Reference to the app.witchsky.theme.collection record.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
Reference to the theme included in the collection.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"collection",
"createdAt"
],
"properties": {
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the theme included in the collection."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"collection": {
"type": "string",
"format": "at-uri",
"description": "Reference to the app.witchsky.theme.collection record."
}
}
},
"description": "Record representing a theme's inclusion in a specific theme collection. Consumers should ignore duplicate items."
}