Oracle GoldenGate · Schema

RepairStatisticsList

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
statistics array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-repairstatisticslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepairStatisticsList",
  "title": "RepairStatisticsList",
  "type": "object",
  "properties": {
    "statistics": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "runId": {
            "type": "integer",
            "format": "int64"
          },
          "status": {
            "type": "string"
          },
          "rowsRepaired": {
            "type": "integer",
            "format": "int64"
          },
          "rowsFailed": {
            "type": "integer",
            "format": "int64"
          }
        }
      },
      "example": []
    }
  }
}