Dataiku · Schema

HealthStatus

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
status string Overall health status
details object Additional health check details
View JSON Schema on GitHub

JSON Schema

dataiku-healthstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HealthStatus",
  "title": "HealthStatus",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "HEALTHY",
        "DEGRADED",
        "UNHEALTHY"
      ],
      "description": "Overall health status"
    },
    "details": {
      "type": "object",
      "description": "Additional health check details"
    }
  }
}