A join record linking an item to a list.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"list",
"item",
"createdAt"
],
"properties": {
"item": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the item record."
},
"list": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the list record."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the item was added to the list."
}
}
},
"description": "A join record linking an item to a list."
}