Klaviyo · Schema

NonLocalStaticSend

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
is_local boolean Whether the campaign should be sent with local recipient timezone send (requires UTC time) or statically sent at the given time.
View JSON Schema on GitHub

JSON Schema

klaviyo-nonlocalstaticsend-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NonLocalStaticSend",
  "title": "NonLocalStaticSend",
  "type": "object",
  "properties": {
    "is_local": {
      "description": "Whether the campaign should be sent with local recipient timezone send (requires UTC time) or statically sent at the given time.",
      "type": "boolean",
      "enum": [
        false
      ]
    }
  },
  "required": [
    "is_local"
  ]
}