ServiceNow · Schema

CartItem

An item in the shopping cart.

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
cart_item_id string Unique identifier for the cart item.
catalog_item_id string The sys_id of the catalog item.
quantity integer The quantity ordered.
subtotal string The subtotal for this cart item.
View JSON Schema on GitHub

JSON Schema

servicenow-service-catalog-cart-item-schema.json Raw ↑
{
  "type": "object",
  "description": "An item in the shopping cart.",
  "properties": {
    "cart_item_id": {
      "type": "string",
      "description": "Unique identifier for the cart item.",
      "example": "500123"
    },
    "catalog_item_id": {
      "type": "string",
      "description": "The sys_id of the catalog item.",
      "example": "500123"
    },
    "quantity": {
      "type": "integer",
      "description": "The quantity ordered.",
      "example": 10
    },
    "subtotal": {
      "type": "string",
      "description": "The subtotal for this cart item.",
      "example": 42
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CartItem"
}