Klaviyo · Schema

ProfileOperationUpdateOrCreateBoolean

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
operator string The type of operation to perform on a profile property.
property_type string
property_key string
property_value boolean
View JSON Schema on GitHub

JSON Schema

klaviyo-profileoperationupdateorcreateboolean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfileOperationUpdateOrCreateBoolean",
  "title": "ProfileOperationUpdateOrCreateBoolean",
  "type": "object",
  "properties": {
    "operator": {
      "description": "The type of operation to perform on a profile property.",
      "type": "string",
      "enum": [
        "create",
        "update"
      ]
    },
    "property_type": {
      "type": "string",
      "enum": [
        "boolean"
      ]
    },
    "property_key": {
      "type": "string"
    },
    "property_value": {
      "type": "boolean"
    }
  },
  "required": [
    "operator",
    "property_type",
    "property_key",
    "property_value"
  ]
}