Oracle GoldenGate · Example Payload

Oracle Goldengate Createcomparepairs Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Createcomparepairs 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": "createComparePairs",
  "method": "POST",
  "path": "/services/configuration/cps/group/{groupId}",
  "summary": "Oracle Goldengate Create Compare Pairs in a Group",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreatecomparepairsRequestExample",
      "example": {
        "comparePairs": [
          {
            "sourceSchema": "example_value",
            "sourceTable": "example_value",
            "targetSchema": "example_value",
            "targetTable": "example_value"
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createcomparepairs201Example",
      "example": {
        "comparePairs": [
          {
            "id": "abc123",
            "groupId": "500123",
            "sourceSchema": "example_value",
            "sourceTable": "example_value",
            "targetSchema": "example_value",
            "targetTable": "example_value",
            "profileId": "500123",
            "columnMappings": {}
          }
        ]
      }
    }
  ]
}