ServiceNow · JSON Structure

Servicenow Service Catalog Cart Item Structure

An item in the shopping cart.

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

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

Properties

cart_item_id catalog_item_id quantity subtotal

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

JSON Structure

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