ServiceNow · Schema

Catalog

A ServiceNow service catalog.

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
sys_id string Unique identifier for the catalog.
title string The display title of the catalog.
description string A description of the catalog.
has_categories boolean Whether the catalog has categories.
has_items boolean Whether the catalog has items.
View JSON Schema on GitHub

JSON Schema

servicenow-service-catalog-catalog-schema.json Raw ↑
{
  "type": "object",
  "description": "A ServiceNow service catalog.",
  "properties": {
    "sys_id": {
      "type": "string",
      "description": "Unique identifier for the catalog.",
      "example": "500123"
    },
    "title": {
      "type": "string",
      "description": "The display title of the catalog.",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "description": "A description of the catalog.",
      "example": "A sample description."
    },
    "has_categories": {
      "type": "boolean",
      "description": "Whether the catalog has categories.",
      "example": true
    },
    "has_items": {
      "type": "boolean",
      "description": "Whether the catalog has items.",
      "example": true
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Catalog"
}