Klaviyo · Schema

DynamicTableBlockProperties

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
dynamic boolean
num_columns integer
row_content_repeat object
show_headers boolean
show_fallback_content boolean
show_static_row boolean
View JSON Schema on GitHub

JSON Schema

klaviyo-dynamictableblockproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DynamicTableBlockProperties",
  "title": "DynamicTableBlockProperties",
  "type": "object",
  "properties": {
    "dynamic": {
      "type": "boolean",
      "enum": [
        true
      ]
    },
    "num_columns": {
      "type": "integer",
      "nullable": true
    },
    "row_content_repeat": {
      "$ref": "#/components/schemas/ContentRepeatV1",
      "nullable": true
    },
    "show_headers": {
      "type": "boolean",
      "nullable": true
    },
    "show_fallback_content": {
      "type": "boolean",
      "nullable": true
    },
    "show_static_row": {
      "type": "boolean",
      "nullable": true
    }
  },
  "required": [
    "dynamic"
  ]
}