Oracle GoldenGate · Schema

RepairedRowDetails

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
runId integer
rows array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-repairedrowdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepairedRowDetails",
  "title": "RepairedRowDetails",
  "type": "object",
  "properties": {
    "runId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "table": {
            "type": "string"
          },
          "repairType": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "keyValues": {
            "type": "object",
            "additionalProperties": true
          }
        }
      },
      "example": []
    }
  }
}