Klaviyo · Schema

CampaignTrackingSettingStaticParam

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-campaigntrackingsettingstaticparam-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CampaignTrackingSettingStaticParam",
  "title": "CampaignTrackingSettingStaticParam",
  "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"
    }
  },
  "required": [
    "type",
    "value"
  ]
}