Dell Servers · Schema

InventoryDetail

Hardware inventory component details

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
InventoryType string Type of inventory component such as cpuInformation, memoryInformation, storageInformation, nicInformation, or firmwareInformation
InventoryInfo array Array of inventory items for this component type
View JSON Schema on GitHub

JSON Schema

dell-servers-inventorydetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InventoryDetail",
  "title": "InventoryDetail",
  "type": "object",
  "description": "Hardware inventory component details",
  "properties": {
    "InventoryType": {
      "type": "string",
      "description": "Type of inventory component such as cpuInformation, memoryInformation, storageInformation, nicInformation, or firmwareInformation"
    },
    "InventoryInfo": {
      "type": "array",
      "description": "Array of inventory items for this component type",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}