dev.roe.sync

danielroe.dev

Documentation

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.

main record

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

canonicalUrl string uri Required

A valid URI.

provider string Required

Identifier of the syndication target (e.g. `gde-advocu`).

maxLength: 64 bytes
syncedAt string datetime Required

An RFC 3339 formatted timestamp.

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."
}

Lexicon Garden

@