Oracle GoldenGate · Schema

ServiceHealthDetails

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
healthy boolean
services array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-servicehealthdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceHealthDetails",
  "title": "ServiceHealthDetails",
  "type": "object",
  "properties": {
    "healthy": {
      "type": "boolean",
      "example": true
    },
    "services": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "port": {
            "type": "integer"
          },
          "secure": {
            "type": "boolean"
          }
        }
      },
      "example": []
    }
  }
}