Dell Servers · Schema

Status

Redfish status object indicating resource health

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
Health string Overall health state
HealthRollup string Rolled-up health state from subordinate resources
State string Operational state
View JSON Schema on GitHub

JSON Schema

dell-servers-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Status",
  "title": "Status",
  "type": "object",
  "description": "Redfish status object indicating resource health",
  "properties": {
    "Health": {
      "type": "string",
      "description": "Overall health state",
      "enum": [
        "OK",
        "Warning",
        "Critical"
      ]
    },
    "HealthRollup": {
      "type": "string",
      "description": "Rolled-up health state from subordinate resources",
      "enum": [
        "OK",
        "Warning",
        "Critical"
      ]
    },
    "State": {
      "type": "string",
      "description": "Operational state",
      "enum": [
        "Enabled",
        "Disabled",
        "StandbyOffline",
        "StandbySpare",
        "InTest",
        "Starting",
        "Absent",
        "UnavailableOffline",
        "Deferring",
        "Quiesced",
        "Updating"
      ]
    }
  }
}