Klaviyo · Schema

Audiences

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
included array A list of included audiences
excluded array An optional list of excluded audiences
View JSON Schema on GitHub

JSON Schema

klaviyo-audiences-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Audiences",
  "title": "Audiences",
  "type": "object",
  "properties": {
    "included": {
      "description": "A list of included audiences",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "Y6nRLr"
      ]
    },
    "excluded": {
      "description": "An optional list of excluded audiences",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "UTd5ui"
      ],
      "nullable": true
    }
  },
  "required": [
    "included"
  ]
}