Record representing a post's inclusion on a specific list. The AppView will ignore duplicate listitem records.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"list",
"createdAt"
],
"properties": {
"list": {
"type": "string",
"format": "at-uri",
"description": "Reference (AT-URI) to the list record (net.anisota.feed.list)."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "The post URI which is included on the list."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the post was added to the list"
}
}
},
"description": "Record representing a post's inclusion on a specific list. The AppView will ignore duplicate listitem records."
}