Oracle GoldenGate · Example Payload

Oracle Goldengate Replacecomparepair Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Replacecomparepair Example is an example object payload from Oracle GoldenGate, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "replaceComparePair",
  "method": "PUT",
  "path": "/services/configuration/cps/{Id}",
  "summary": "Oracle Goldengate Replace a Compare Pair",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "ReplacecomparepairRequestExample",
      "example": {
        "sourceSchema": "example_value",
        "sourceTable": "example_value",
        "targetSchema": "example_value",
        "targetTable": "example_value",
        "profileId": "500123"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Replacecomparepair200Example",
      "example": {
        "id": "abc123",
        "groupId": "500123",
        "sourceSchema": "example_value",
        "sourceTable": "example_value",
        "targetSchema": "example_value",
        "targetTable": "example_value",
        "profileId": "500123",
        "columnMappings": [
          {
            "sourceColumn": "example_value",
            "targetColumn": "example_value",
            "dataType": "example_value"
          }
        ]
      }
    }
  ]
}