Dedupe marker for a syndication pipeline. One record per (provider, canonical URL) pair that has been submitted; presence of a record means we've already synced and shouldn't re-submit.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"provider",
"canonicalUrl",
"syncedAt"
],
"properties": {
"provider": {
"type": "string",
"maxLength": 64,
"description": "Identifier of the syndication target (e.g. `gde-advocu`)."
},
"syncedAt": {
"type": "string",
"format": "datetime"
},
"canonicalUrl": {
"type": "string",
"format": "uri"
}
}
},
"description": "Dedupe marker for a syndication pipeline. One record per (provider, canonical URL) pair that has been submitted; presence of a record means we've already synced and shouldn't re-submit."
}