Klaviyo · Schema

BannerStyles

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
desktop_position string Positioning of banner forms.
mobile_position string Positioning of banner forms.
scroll_with_page boolean
View JSON Schema on GitHub

JSON Schema

klaviyo-bannerstyles-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BannerStyles",
  "title": "BannerStyles",
  "type": "object",
  "properties": {
    "desktop_position": {
      "description": "Positioning of banner forms.",
      "type": "string",
      "example": "top",
      "default": "top",
      "enum": [
        "bottom",
        "top"
      ]
    },
    "mobile_position": {
      "description": "Positioning of banner forms.",
      "type": "string",
      "example": "top",
      "default": "top",
      "enum": [
        "bottom",
        "top"
      ]
    },
    "scroll_with_page": {
      "type": "boolean",
      "example": true,
      "default": true
    }
  }
}