ServiceNow · Schema

CatalogItem

A catalog item summary.

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
sys_id string Unique identifier for the catalog item.
name string The display name of the item.
short_description string A brief description of the item.
category string The category sys_id.
price string The displayed price of the item.
picture string URL to the item picture.
View JSON Schema on GitHub

JSON Schema

servicenow-service-catalog-catalog-item-schema.json Raw ↑
{
  "type": "object",
  "description": "A catalog item summary.",
  "properties": {
    "sys_id": {
      "type": "string",
      "description": "Unique identifier for the catalog item.",
      "example": "500123"
    },
    "name": {
      "type": "string",
      "description": "The display name of the item.",
      "example": "Example Title"
    },
    "short_description": {
      "type": "string",
      "description": "A brief description of the item.",
      "example": "example_value"
    },
    "category": {
      "type": "string",
      "description": "The category sys_id.",
      "example": "example_value"
    },
    "price": {
      "type": "string",
      "description": "The displayed price of the item.",
      "example": "example_value"
    },
    "picture": {
      "type": "string",
      "description": "URL to the item picture.",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CatalogItem"
}