Oracle GoldenGate · Schema

CreateComparePairsRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
comparePairs array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-createcomparepairsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateComparePairsRequest",
  "title": "CreateComparePairsRequest",
  "type": "object",
  "properties": {
    "comparePairs": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "sourceSchema",
          "sourceTable",
          "targetSchema",
          "targetTable"
        ],
        "properties": {
          "sourceSchema": {
            "type": "string"
          },
          "sourceTable": {
            "type": "string"
          },
          "targetSchema": {
            "type": "string"
          },
          "targetTable": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}