Membership of one meme in one collection. One record per (collection, meme) pair, mirroring the app.bsky.graph.list/listitem split rather than an inline member array -- see docs/data-model.md.
Record Key
tid
Timestamp-based ID
Properties
collection
ref
com.atproto.repo.strongRef
Required
Reference to the at.meme-museum.collection record.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
meme
ref
com.atproto.repo.strongRef
Required
Reference to the at.meme-museum.meme record.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"collection",
"meme",
"createdAt"
],
"properties": {
"meme": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the at.meme-museum.meme record."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"collection": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the at.meme-museum.collection record."
}
}
},
"description": "Membership of one meme in one collection. One record per (collection, meme) pair, mirroring the app.bsky.graph.list/listitem split rather than an inline member array -- see docs/data-model.md."
}