Klaviyo · Schema

HeadingStyleStyles

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
color string
font_family string
font_size integer
font_style string Font style.
font_weight string
letter_spacing integer
line_height number
margin_bottom integer
mobile_font_size integer
mobile_line_height number
text_align string Text Alignment.
text_decoration string
View JSON Schema on GitHub

JSON Schema

klaviyo-headingstylestyles-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HeadingStyleStyles",
  "title": "HeadingStyleStyles",
  "type": "object",
  "properties": {
    "color": {
      "type": "string",
      "nullable": true
    },
    "font_family": {
      "type": "string",
      "nullable": true
    },
    "font_size": {
      "type": "integer",
      "nullable": true
    },
    "font_style": {
      "description": "Font style.",
      "type": "string",
      "enum": [
        "italic",
        "normal"
      ],
      "nullable": true
    },
    "font_weight": {
      "type": "string",
      "nullable": true
    },
    "letter_spacing": {
      "type": "integer",
      "nullable": true
    },
    "line_height": {
      "type": "number",
      "nullable": true
    },
    "margin_bottom": {
      "type": "integer",
      "nullable": true
    },
    "mobile_font_size": {
      "type": "integer",
      "nullable": true
    },
    "mobile_line_height": {
      "type": "number",
      "nullable": true
    },
    "text_align": {
      "description": "Text Alignment.",
      "type": "string",
      "enum": [
        "center",
        "left",
        "right"
      ],
      "nullable": true
    },
    "text_decoration": {
      "type": "string",
      "nullable": true
    }
  }
}