Spiceworks · Schema

Spiceworks Inventory Device

JSON Schema for a managed IT device in the Spiceworks inventory, including hardware specs, software inventory, and network configuration.

CommunityEnterprise ITIT Management

Properties

Name Type Description
id integer Unique device identifier
name string Device hostname or display name
type string Device type classification
manufacturer string Device manufacturer name
model string Device model name
serial_number string Device serial number
ip_address string Primary IP address
mac_address string Primary MAC address
os_name string Operating system name
os_version string Operating system version
cpu string CPU model and speed
ram_mb integer Total RAM in megabytes
disk_gb number Total disk capacity in gigabytes
last_seen_at string Timestamp when the device was last detected
warranty_expiry string Device warranty expiration date
software array Installed software applications
View JSON Schema on GitHub

JSON Schema

spiceworks-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/spiceworks/json-schema/spiceworks-device-schema.json",
  "title": "Spiceworks Inventory Device",
  "description": "JSON Schema for a managed IT device in the Spiceworks inventory, including hardware specs, software inventory, and network configuration.",
  "type": "object",
  "required": ["id", "name", "type"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique device identifier"
    },
    "name": {
      "type": "string",
      "description": "Device hostname or display name"
    },
    "type": {
      "type": "string",
      "description": "Device type classification",
      "enum": ["workstation", "server", "network", "printer", "mobile", "unknown"]
    },
    "manufacturer": {
      "type": "string",
      "description": "Device manufacturer name"
    },
    "model": {
      "type": "string",
      "description": "Device model name"
    },
    "serial_number": {
      "type": "string",
      "description": "Device serial number"
    },
    "ip_address": {
      "type": "string",
      "format": "ipv4",
      "description": "Primary IP address"
    },
    "mac_address": {
      "type": "string",
      "description": "Primary MAC address",
      "pattern": "^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"
    },
    "os_name": {
      "type": "string",
      "description": "Operating system name"
    },
    "os_version": {
      "type": "string",
      "description": "Operating system version"
    },
    "cpu": {
      "type": "string",
      "description": "CPU model and speed"
    },
    "ram_mb": {
      "type": "integer",
      "description": "Total RAM in megabytes",
      "minimum": 0
    },
    "disk_gb": {
      "type": "number",
      "description": "Total disk capacity in gigabytes",
      "minimum": 0
    },
    "last_seen_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the device was last detected"
    },
    "warranty_expiry": {
      "type": "string",
      "format": "date",
      "description": "Device warranty expiration date"
    },
    "software": {
      "type": "array",
      "description": "Installed software applications",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Application name"
          },
          "version": {
            "type": "string",
            "description": "Application version"
          }
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/spiceworks-device"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.