Oracle GoldenGate · Schema

ComparePair

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
id integer
groupId integer
sourceSchema string
sourceTable string
targetSchema string
targetTable string
profileId integer
columnMappings array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-comparepair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComparePair",
  "title": "ComparePair",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "example": "abc123"
    },
    "groupId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "sourceSchema": {
      "type": "string",
      "example": "example_value"
    },
    "sourceTable": {
      "type": "string",
      "example": "example_value"
    },
    "targetSchema": {
      "type": "string",
      "example": "example_value"
    },
    "targetTable": {
      "type": "string",
      "example": "example_value"
    },
    "profileId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "columnMappings": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ColumnMapping"
      },
      "example": []
    }
  }
}