Klaviyo · Schema

ProfileHasCustomObjectCondition

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
object_type_id string
object_type_relationship_id string
filter object
filters array
View JSON Schema on GitHub

JSON Schema

klaviyo-profilehascustomobjectcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfileHasCustomObjectCondition",
  "title": "ProfileHasCustomObjectCondition",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "profile-has-custom-object"
      ]
    },
    "object_type_id": {
      "type": "string"
    },
    "object_type_relationship_id": {
      "type": "string"
    },
    "filter": {
      "$ref": "#/components/schemas/IntegerFilter"
    },
    "filters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProfileHasCustomObjectFilter"
      }
    }
  },
  "required": [
    "type",
    "object_type_id",
    "object_type_relationship_id",
    "filter",
    "filters"
  ]
}