Klaviyo · Schema

Redirect

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

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