Klaviyo · Schema

DisplayOptions

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

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