Snapchat · Schema

ContentItem

A product or content item associated with a conversion event.

AdvertisingARAugmented RealityMarketingMessagingSocial Media

Properties

Name Type Description
id string The product or content identifier.
quantity integer The quantity of the item.
item_price number The price of the individual item.
brand string The brand name of the item.
category string The category of the item.
View JSON Schema on GitHub

JSON Schema

snapchat-contentitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentItem",
  "title": "ContentItem",
  "type": "object",
  "description": "A product or content item associated with a conversion event.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The product or content identifier."
    },
    "quantity": {
      "type": "integer",
      "description": "The quantity of the item.",
      "minimum": 1
    },
    "item_price": {
      "type": "number",
      "format": "double",
      "description": "The price of the individual item."
    },
    "brand": {
      "type": "string",
      "description": "The brand name of the item."
    },
    "category": {
      "type": "string",
      "description": "The category of the item."
    }
  }
}