Klaviyo · Schema

CustomObjectTriggerCondition

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
property_id integer
filter object
View JSON Schema on GitHub

JSON Schema

klaviyo-customobjecttriggercondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomObjectTriggerCondition",
  "title": "CustomObjectTriggerCondition",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "custom-object-trigger-property"
      ]
    },
    "property_id": {
      "type": "integer"
    },
    "filter": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/StringOperatorStringFilter"
        },
        {
          "$ref": "#/components/schemas/NumericOperatorNumericFilter"
        },
        {
          "$ref": "#/components/schemas/NumericRangeFilter"
        },
        {
          "$ref": "#/components/schemas/BooleanFilter"
        },
        {
          "$ref": "#/components/schemas/StaticDateFilter"
        },
        {
          "$ref": "#/components/schemas/StaticDateRangeFilter"
        },
        {
          "$ref": "#/components/schemas/RelativeDateOperatorBaseRelativeDateFilter"
        },
        {
          "$ref": "#/components/schemas/RelativeDateRangeFilter"
        },
        {
          "$ref": "#/components/schemas/ListContainsOperatorListContainsFilter"
        },
        {
          "$ref": "#/components/schemas/ListLengthFilter"
        },
        {
          "$ref": "#/components/schemas/ExistenceOperatorExistenceFilter"
        }
      ]
    }
  },
  "required": [
    "type",
    "property_id",
    "filter"
  ]
}