Oracle GoldenGate · Schema

Checkpoints

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string
readCheckpoint object
writeCheckpoint object
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-checkpoints-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Checkpoints",
  "title": "Checkpoints",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "readCheckpoint": {
      "type": "object",
      "properties": {
        "sequenceNumber": {
          "type": "integer"
        },
        "rba": {
          "type": "integer"
        },
        "timestamp": {
          "type": "string",
          "format": "date-time"
        }
      },
      "example": "example_value"
    },
    "writeCheckpoint": {
      "type": "object",
      "properties": {
        "sequenceNumber": {
          "type": "integer"
        },
        "rba": {
          "type": "integer"
        },
        "timestamp": {
          "type": "string",
          "format": "date-time"
        }
      },
      "example": "example_value"
    }
  }
}