Klaviyo · Schema

DynamicImageBlockProperties

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
dynamic boolean
alt_text string
href string
src string
View JSON Schema on GitHub

JSON Schema

klaviyo-dynamicimageblockproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DynamicImageBlockProperties",
  "title": "DynamicImageBlockProperties",
  "type": "object",
  "properties": {
    "dynamic": {
      "type": "boolean",
      "enum": [
        true
      ]
    },
    "alt_text": {
      "type": "string",
      "nullable": true
    },
    "href": {
      "type": "string",
      "nullable": true
    },
    "src": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "dynamic"
  ]
}