Klaviyo · Schema

BorderStyle

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
radius integer
color string
style string Border pattern enumeration.
thickness integer
View JSON Schema on GitHub

JSON Schema

klaviyo-borderstyle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BorderStyle",
  "title": "BorderStyle",
  "type": "object",
  "properties": {
    "radius": {
      "type": "integer",
      "example": 8,
      "default": 8
    },
    "color": {
      "type": "string",
      "nullable": true
    },
    "style": {
      "description": "Border pattern enumeration.",
      "type": "string",
      "enum": [
        "dashed",
        "dotted",
        "solid"
      ],
      "nullable": true
    },
    "thickness": {
      "type": "integer",
      "nullable": true
    }
  }
}