Oracle GoldenGate · Schema

StatusChangeList

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
statusChanges array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-statuschangelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusChangeList",
  "title": "StatusChangeList",
  "type": "object",
  "properties": {
    "statusChanges": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "timestamp": {
            "type": "string",
            "format": "date-time"
          },
          "process": {
            "type": "string"
          },
          "previousStatus": {
            "type": "string"
          },
          "currentStatus": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}