Oracle GoldenGate · Example Payload

Oracle Goldengate Generatemappingobjects Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Generatemappingobjects 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": "generateMappingObjects",
  "method": "POST",
  "path": "/services/configuration/cps/mappings",
  "summary": "Oracle Goldengate Generate Mapping Objects From Rules",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "GeneratemappingobjectsRequestExample",
      "example": {
        "sourceSchemaPattern": "example_value",
        "targetSchemaPattern": "example_value",
        "tablePattern": "example_value"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Generatemappingobjects200Example",
      "example": {
        "mappings": [
          {
            "sourceSchema": "example_value",
            "sourceTable": "example_value",
            "targetSchema": "example_value",
            "targetTable": "example_value"
          }
        ]
      }
    }
  ]
}