Klaviyo · Schema

BlockDisplayOptions

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
show_on string Show on.
visible_check string
content_repeat object
View JSON Schema on GitHub

JSON Schema

klaviyo-blockdisplayoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlockDisplayOptions",
  "title": "BlockDisplayOptions",
  "type": "object",
  "properties": {
    "show_on": {
      "description": "Show on.",
      "type": "string",
      "enum": [
        "all",
        "desktop",
        "mobile"
      ],
      "nullable": true
    },
    "visible_check": {
      "type": "string",
      "nullable": true
    },
    "content_repeat": {
      "$ref": "#/components/schemas/ContentRepeatV0",
      "nullable": true
    }
  }
}