Klaviyo · Schema

Checkboxes

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
id string Not allowed on create.
type string
styles object
properties object
View JSON Schema on GitHub

JSON Schema

klaviyo-checkboxes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Checkboxes",
  "title": "Checkboxes",
  "type": "object",
  "properties": {
    "id": {
      "description": "Not allowed on create.",
      "type": "string",
      "nullable": true
    },
    "type": {
      "type": "string",
      "enum": [
        "checkboxes"
      ]
    },
    "styles": {
      "$ref": "#/components/schemas/CheckboxesStyles"
    },
    "properties": {
      "$ref": "#/components/schemas/CheckboxesProperties"
    }
  },
  "required": [
    "type",
    "properties"
  ]
}