Klaviyo · Schema

TableImageSubBlock

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
dynamic boolean
alt_text string
asset_id string
href string
src string
width integer
height integer
image_width integer
image_align string Image Alignment.
show_on string Show on.
table_column_width string
cell_text_align string Text Alignment.
cropped_asset_id string
cropped_src string
cropping_aspect_ratio string
cropping_height integer
cropping_width integer
cropping_x integer
cropping_y integer
id string
type string
View JSON Schema on GitHub

JSON Schema

klaviyo-tableimagesubblock-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableImageSubBlock",
  "title": "TableImageSubBlock",
  "type": "object",
  "properties": {
    "dynamic": {
      "type": "boolean",
      "nullable": true
    },
    "alt_text": {
      "type": "string",
      "nullable": true
    },
    "asset_id": {
      "type": "string",
      "nullable": true
    },
    "href": {
      "type": "string",
      "nullable": true
    },
    "src": {
      "type": "string",
      "nullable": true
    },
    "width": {
      "type": "integer",
      "nullable": true
    },
    "height": {
      "type": "integer",
      "nullable": true
    },
    "image_width": {
      "type": "integer",
      "nullable": true
    },
    "image_align": {
      "description": "Image Alignment.",
      "type": "string",
      "enum": [
        "center",
        "left",
        "right"
      ],
      "nullable": true
    },
    "show_on": {
      "description": "Show on.",
      "type": "string",
      "enum": [
        "all",
        "desktop",
        "mobile"
      ],
      "nullable": true
    },
    "table_column_width": {
      "type": "string",
      "nullable": true
    },
    "cell_text_align": {
      "description": "Text Alignment.",
      "type": "string",
      "enum": [
        "center",
        "left",
        "right"
      ],
      "nullable": true
    },
    "cropped_asset_id": {
      "type": "string",
      "nullable": true
    },
    "cropped_src": {
      "type": "string",
      "nullable": true
    },
    "cropping_aspect_ratio": {
      "type": "string",
      "nullable": true
    },
    "cropping_height": {
      "type": "integer",
      "nullable": true
    },
    "cropping_width": {
      "type": "integer",
      "nullable": true
    },
    "cropping_x": {
      "type": "integer",
      "nullable": true
    },
    "cropping_y": {
      "type": "integer",
      "nullable": true
    },
    "id": {
      "type": "string",
      "nullable": true,
      "readOnly": true
    },
    "type": {
      "type": "string",
      "enum": [
        "table_image"
      ]
    }
  },
  "required": [
    "type"
  ]
}