Spiceworks · Schema

Spiceworks Help Desk Ticket

JSON Schema for a Spiceworks Help Desk support ticket, including status, priority, assignee, and comment associations.

CommunityEnterprise ITIT Management

Properties

Name Type Description
id integer Unique ticket identifier within Spiceworks
summary string Brief description of the issue
description string Detailed description of the issue
status string Current ticket status
priority string Ticket priority level
assignee object
creator object
created_at string Timestamp when the ticket was created
updated_at string Timestamp when the ticket was last updated
due_date string Optional due date for ticket resolution
tags array Tags associated with the ticket
comments array Comments on this ticket
View JSON Schema on GitHub

JSON Schema

spiceworks-ticket-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/spiceworks/json-schema/spiceworks-ticket-schema.json",
  "title": "Spiceworks Help Desk Ticket",
  "description": "JSON Schema for a Spiceworks Help Desk support ticket, including status, priority, assignee, and comment associations.",
  "type": "object",
  "required": ["id", "summary", "status"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique ticket identifier within Spiceworks"
    },
    "summary": {
      "type": "string",
      "description": "Brief description of the issue",
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the issue"
    },
    "status": {
      "type": "string",
      "description": "Current ticket status",
      "enum": ["open", "in_progress", "closed"]
    },
    "priority": {
      "type": "string",
      "description": "Ticket priority level",
      "enum": ["low", "medium", "high", "urgent"],
      "default": "medium"
    },
    "assignee": {
      "$ref": "#/$defs/UserRef"
    },
    "creator": {
      "$ref": "#/$defs/UserRef"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the ticket was created"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the ticket was last updated"
    },
    "due_date": {
      "type": "string",
      "format": "date",
      "description": "Optional due date for ticket resolution"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags associated with the ticket"
    },
    "comments": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Comment"
      },
      "description": "Comments on this ticket"
    }
  },
  "$defs": {
    "UserRef": {
      "type": "object",
      "description": "Brief reference to a Spiceworks user",
      "properties": {
        "id": {
          "type": "integer",
          "description": "User ID"
        },
        "first_name": {
          "type": "string",
          "description": "User first name"
        },
        "last_name": {
          "type": "string",
          "description": "User last name"
        },
        "email": {
          "type": "string",
          "format": "email",
          "description": "User email address"
        }
      }
    },
    "Comment": {
      "type": "object",
      "description": "A comment on a Help Desk ticket",
      "required": ["id", "body"],
      "properties": {
        "id": {
          "type": "integer",
          "description": "Unique comment identifier"
        },
        "body": {
          "type": "string",
          "description": "Comment text content"
        },
        "is_public": {
          "type": "boolean",
          "description": "Whether visible to the ticket requester",
          "default": true
        },
        "author": {
          "$ref": "#/$defs/UserRef"
        },
        "created_at": {
          "type": "string",
          "format": "date-time",
          "description": "Timestamp when comment was created"
        }
      }
    }
  }
}

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-ticket"
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.