Klaviyo · Schema

StaticTrackingParam

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string The type of the tracking parameter
value string The value of the tracking parameter
name string Name of the tracking param
View JSON Schema on GitHub

JSON Schema

klaviyo-statictrackingparam-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StaticTrackingParam",
  "title": "StaticTrackingParam",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of the tracking parameter",
      "type": "string",
      "enum": [
        "static"
      ]
    },
    "value": {
      "description": "The value of the tracking parameter",
      "type": "string"
    },
    "name": {
      "description": "Name of the tracking param",
      "type": "string",
      "example": "utm_medium"
    }
  },
  "required": [
    "type",
    "value",
    "name"
  ]
}