Klaviyo · Schema

Step

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
id string Not allowed on create.
columns array
name string
steps array
View JSON Schema on GitHub

JSON Schema

klaviyo-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Step",
  "title": "Step",
  "type": "object",
  "properties": {
    "id": {
      "description": "Not allowed on create.",
      "type": "string",
      "nullable": true
    },
    "columns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ColumnV0"
      }
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "steps": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Step"
      },
      "nullable": true
    }
  },
  "required": [
    "columns"
  ]
}