Klaviyo · Schema

SmartSendTimeStrategy

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
method string
date string The day to send on
View JSON Schema on GitHub

JSON Schema

klaviyo-smartsendtimestrategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SmartSendTimeStrategy",
  "title": "SmartSendTimeStrategy",
  "type": "object",
  "properties": {
    "method": {
      "type": "string",
      "enum": [
        "smart_send_time"
      ]
    },
    "date": {
      "description": "The day to send on",
      "type": "string",
      "format": "date"
    }
  },
  "required": [
    "method",
    "date"
  ]
}