Klaviyo · Schema

CloseButtonStyle

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
background_color string
outline_color string
color string
stroke number
size integer
margin object
View JSON Schema on GitHub

JSON Schema

klaviyo-closebuttonstyle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CloseButtonStyle",
  "title": "CloseButtonStyle",
  "type": "object",
  "properties": {
    "background_color": {
      "type": "string",
      "example": "rgba(180, 187, 195, 0.65)",
      "default": "rgba(180, 187, 195, 0.65)"
    },
    "outline_color": {
      "type": "string",
      "example": "#FFFFFF",
      "default": "#FFFFFF"
    },
    "color": {
      "type": "string",
      "example": "#FFFFFF",
      "default": "#FFFFFF"
    },
    "stroke": {
      "type": "number",
      "example": 2,
      "default": 2
    },
    "size": {
      "type": "integer",
      "example": 20,
      "default": 20
    },
    "margin": {
      "$ref": "#/components/schemas/Margin"
    }
  }
}