Klaviyo · Schema

ProfileOperationDelete

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

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