Klaviyo · Schema

ProfilePredictiveAnalyticsStringFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
operator object
value string Values for profile predictive analytics gender conditions.
View JSON Schema on GitHub

JSON Schema

klaviyo-profilepredictiveanalyticsstringfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfilePredictiveAnalyticsStringFilter",
  "title": "ProfilePredictiveAnalyticsStringFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "string"
      ]
    },
    "operator": {
      "oneOf": [
        {
          "enum": [
            "equals"
          ],
          "type": "string"
        },
        {
          "enum": [
            "not-equals"
          ],
          "type": "string"
        }
      ]
    },
    "value": {
      "description": "Values for profile predictive analytics gender conditions.",
      "type": "string",
      "enum": [
        "likely_female",
        "likely_male",
        "uncertain"
      ]
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}