Oracle GoldenGate · Schema

RepairReport

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
runId integer
startTime string
endTime string
totalRows integer
repairedRows integer
failedRows integer
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-repairreport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepairReport",
  "title": "RepairReport",
  "type": "object",
  "properties": {
    "runId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "startTime": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "endTime": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "totalRows": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "repairedRows": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "failedRows": {
      "type": "integer",
      "format": "int64",
      "example": 10
    }
  }
}