Oracle GoldenGate · Schema

MappingObjectList

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
mappings array
View JSON Schema on GitHub

JSON Schema

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