ServiceNow · Schema

Category

A catalog category.

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
sys_id string Unique identifier for the category.
title string The display title of the category.
description string A description of the category.
full_description string The full description of the category.
subcategories array Child categories.
View JSON Schema on GitHub

JSON Schema

servicenow-service-catalog-category-schema.json Raw ↑
{
  "type": "object",
  "description": "A catalog category.",
  "properties": {
    "sys_id": {
      "type": "string",
      "description": "Unique identifier for the category.",
      "example": "500123"
    },
    "title": {
      "type": "string",
      "description": "The display title of the category.",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "description": "A description of the category.",
      "example": "A sample description."
    },
    "full_description": {
      "type": "string",
      "description": "The full description of the category.",
      "example": "example_value"
    },
    "subcategories": {
      "type": "array",
      "description": "Child categories.",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "sys_id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Category"
}