Oracle GoldenGate · Schema

HeartbeatEntries

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
entries array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-heartbeatentries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HeartbeatEntries",
  "title": "HeartbeatEntries",
  "type": "object",
  "properties": {
    "entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "sourceProcess": {
            "type": "string"
          },
          "targetProcess": {
            "type": "string"
          },
          "lastHeartbeatSent": {
            "type": "string",
            "format": "date-time"
          },
          "lastHeartbeatReceived": {
            "type": "string",
            "format": "date-time"
          },
          "lagInSeconds": {
            "type": "number"
          }
        }
      },
      "example": []
    }
  }
}