Klaviyo · Schema

StaticImageBlockProperties

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-staticimageblockproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StaticImageBlockProperties",
  "title": "StaticImageBlockProperties",
  "type": "object",
  "properties": {
    "dynamic": {
      "type": "boolean",
      "enum": [
        false
      ],
      "nullable": true
    },
    "alt_text": {
      "type": "string",
      "nullable": true
    },
    "asset_id": {
      "type": "string",
      "nullable": true
    },
    "cropping_properties": {
      "$ref": "#/components/schemas/ImageBlockCroppingProperties",
      "nullable": true,
      "readOnly": true
    },
    "href": {
      "type": "string",
      "nullable": true
    },
    "src": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "dynamic"
  ]
}