Dell Servers · Schema

ComputerSystem

Computer system resource representing a Dell PowerEdge server with hardware inventory, health status, and configuration

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
@odata.id string OData resource identifier
@odata.type string OData resource type
Id string System resource identifier
Name string System name
Manufacturer string Server manufacturer
Model string Server model name
SerialNumber string Server serial number
SKU string Server SKU or service tag
PartNumber string Server part number
SystemType string Type of computer system
AssetTag string User-assigned asset tag
BiosVersion string Current BIOS firmware version
PowerState string Current power state of the system
Status object
HostName string Hostname of the operating system
IndicatorLED string State of the system indicator LED
ProcessorSummary object Summary of processor inventory
MemorySummary object Summary of memory inventory
Boot object Boot configuration
View JSON Schema on GitHub

JSON Schema

dell-servers-computersystem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComputerSystem",
  "title": "ComputerSystem",
  "type": "object",
  "description": "Computer system resource representing a Dell PowerEdge server with hardware inventory, health status, and configuration",
  "properties": {
    "@odata.id": {
      "type": "string",
      "description": "OData resource identifier"
    },
    "@odata.type": {
      "type": "string",
      "description": "OData resource type"
    },
    "Id": {
      "type": "string",
      "description": "System resource identifier"
    },
    "Name": {
      "type": "string",
      "description": "System name"
    },
    "Manufacturer": {
      "type": "string",
      "description": "Server manufacturer"
    },
    "Model": {
      "type": "string",
      "description": "Server model name"
    },
    "SerialNumber": {
      "type": "string",
      "description": "Server serial number"
    },
    "SKU": {
      "type": "string",
      "description": "Server SKU or service tag"
    },
    "PartNumber": {
      "type": "string",
      "description": "Server part number"
    },
    "SystemType": {
      "type": "string",
      "description": "Type of computer system",
      "enum": [
        "Physical",
        "Virtual",
        "OS",
        "PhysicallyPartitioned",
        "VirtuallyPartitioned"
      ]
    },
    "AssetTag": {
      "type": "string",
      "description": "User-assigned asset tag"
    },
    "BiosVersion": {
      "type": "string",
      "description": "Current BIOS firmware version"
    },
    "PowerState": {
      "type": "string",
      "description": "Current power state of the system",
      "enum": [
        "On",
        "Off",
        "PoweringOn",
        "PoweringOff"
      ]
    },
    "Status": {
      "$ref": "#/components/schemas/Status"
    },
    "HostName": {
      "type": "string",
      "description": "Hostname of the operating system"
    },
    "IndicatorLED": {
      "type": "string",
      "description": "State of the system indicator LED",
      "enum": [
        "Lit",
        "Blinking",
        "Off"
      ]
    },
    "ProcessorSummary": {
      "type": "object",
      "description": "Summary of processor inventory",
      "properties": {
        "Count": {
          "type": "integer",
          "description": "Number of processors installed"
        },
        "Model": {
          "type": "string",
          "description": "Processor model name"
        },
        "Status": {
          "$ref": "#/components/schemas/Status"
        }
      }
    },
    "MemorySummary": {
      "type": "object",
      "description": "Summary of memory inventory",
      "properties": {
        "TotalSystemMemoryGiB": {
          "type": "number",
          "description": "Total system memory in GiB"
        },
        "Status": {
          "$ref": "#/components/schemas/Status"
        }
      }
    },
    "Boot": {
      "type": "object",
      "description": "Boot configuration",
      "properties": {
        "BootSourceOverrideEnabled": {
          "type": "string",
          "description": "Boot source override state",
          "enum": [
            "Disabled",
            "Once",
            "Continuous"
          ]
        },
        "BootSourceOverrideTarget": {
          "type": "string",
          "description": "Boot source override target device"
        },
        "BootSourceOverrideMode": {
          "type": "string",
          "description": "BIOS boot mode",
          "enum": [
            "Legacy",
            "UEFI"
          ]
        }
      }
    }
  }
}