ServiceNow · JSON Structure

Servicenow Service Catalog Category Structure

A catalog category.

Type: object Properties: 5
AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Category is a JSON Structure definition published by ServiceNow, describing 5 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

sys_id title description full_description subcategories

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "A catalog category.",
  "name": "Category",
  "properties": {
    "sys_id": {
      "type": "string",
      "description": "Unique identifier for the category."
    },
    "title": {
      "type": "string",
      "description": "The display title of the category."
    },
    "description": {
      "type": "string",
      "description": "A description of the category."
    },
    "full_description": {
      "type": "string",
      "description": "The full description of the category."
    },
    "subcategories": {
      "type": "array",
      "description": "Child categories.",
      "items": {
        "type": "object",
        "properties": {
          "sys_id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          }
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}