Dell Servers · Schema

Chassis

Chassis resource representing the physical enclosure of a Dell PowerEdge server including power, thermal, and physical component information

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
@odata.id string OData resource identifier
Id string Chassis resource identifier
Name string Chassis name
ChassisType string Type of physical form factor
Manufacturer string Chassis manufacturer
Model string Chassis model
SerialNumber string Chassis serial number
PartNumber string Chassis part number
SKU string Chassis SKU or service tag
AssetTag string User-assigned asset tag
IndicatorLED string State of the chassis indicator LED
Status object
PowerState string Current power state
View JSON Schema on GitHub

JSON Schema

dell-servers-chassis-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Chassis",
  "title": "Chassis",
  "type": "object",
  "description": "Chassis resource representing the physical enclosure of a Dell PowerEdge server including power, thermal, and physical component information",
  "properties": {
    "@odata.id": {
      "type": "string",
      "description": "OData resource identifier"
    },
    "Id": {
      "type": "string",
      "description": "Chassis resource identifier"
    },
    "Name": {
      "type": "string",
      "description": "Chassis name"
    },
    "ChassisType": {
      "type": "string",
      "description": "Type of physical form factor",
      "enum": [
        "Rack",
        "Blade",
        "Enclosure",
        "StandAlone",
        "RackMount",
        "Card",
        "Cartridge",
        "Row",
        "Pod",
        "Expansion",
        "Sidecar"
      ]
    },
    "Manufacturer": {
      "type": "string",
      "description": "Chassis manufacturer"
    },
    "Model": {
      "type": "string",
      "description": "Chassis model"
    },
    "SerialNumber": {
      "type": "string",
      "description": "Chassis serial number"
    },
    "PartNumber": {
      "type": "string",
      "description": "Chassis part number"
    },
    "SKU": {
      "type": "string",
      "description": "Chassis SKU or service tag"
    },
    "AssetTag": {
      "type": "string",
      "description": "User-assigned asset tag"
    },
    "IndicatorLED": {
      "type": "string",
      "description": "State of the chassis indicator LED",
      "enum": [
        "Lit",
        "Blinking",
        "Off"
      ]
    },
    "Status": {
      "$ref": "#/components/schemas/Status"
    },
    "PowerState": {
      "type": "string",
      "description": "Current power state",
      "enum": [
        "On",
        "Off",
        "PoweringOn",
        "PoweringOff"
      ]
    }
  }
}