Klaviyo · Schema

ExplicitlyReachable

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
reachable_status string
filters array
View JSON Schema on GitHub

JSON Schema

klaviyo-explicitlyreachable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExplicitlyReachable",
  "title": "ExplicitlyReachable",
  "type": "object",
  "properties": {
    "reachable_status": {
      "type": "string",
      "enum": [
        "explicitly_reachable"
      ]
    },
    "filters": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/EffectiveDateFilter"
          },
          {
            "$ref": "#/components/schemas/RecordedDateFilter"
          },
          {
            "$ref": "#/components/schemas/MethodFilter"
          },
          {
            "$ref": "#/components/schemas/FormSubscribeFilter"
          }
        ]
      }
    }
  },
  "required": [
    "reachable_status",
    "filters"
  ]
}