Klaviyo · Schema

SendTimeSubObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
datetime string The datetime that the message is to be sent
is_local boolean Whether that datetime is to be a local datetime for the recipient
View JSON Schema on GitHub

JSON Schema

klaviyo-sendtimesubobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendTimeSubObject",
  "title": "SendTimeSubObject",
  "type": "object",
  "properties": {
    "datetime": {
      "description": "The datetime that the message is to be sent",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-08T00:00:00+00:00"
    },
    "is_local": {
      "description": "Whether that datetime is to be a local datetime for the recipient",
      "type": "boolean"
    }
  },
  "required": [
    "datetime",
    "is_local"
  ]
}