Klaviyo · Schema

SMSDisclosureCustom

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
compliance_company_name string
privacy_policy_url string
terms_of_service_url string
html string
View JSON Schema on GitHub

JSON Schema

klaviyo-smsdisclosurecustom-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SMSDisclosureCustom",
  "title": "SMSDisclosureCustom",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "custom"
      ]
    },
    "compliance_company_name": {
      "type": "string",
      "example": "[company name]",
      "default": "[company name]"
    },
    "privacy_policy_url": {
      "type": "string",
      "example": "[link]",
      "default": "[link]"
    },
    "terms_of_service_url": {
      "type": "string",
      "example": "[link]",
      "default": "[link]"
    },
    "html": {
      "type": "string",
      "default": ""
    }
  },
  "required": [
    "type"
  ]
}