Amazon Pinpoint · Schema

ClosedDaysRule

Closed Days Rule. Part of Journey sending schedule.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Name object
StartDateTime object
EndDateTime object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-closed-days-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-closed-days-rule-schema.json",
  "title": "ClosedDaysRule",
  "description": "Closed Days Rule. Part of Journey sending schedule.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "Name of the rule."
        }
      ]
    },
    "StartDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "Start Datetime in ISO 8601 format."
        }
      ]
    },
    "EndDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "End Datetime in ISO 8601 format."
        }
      ]
    }
  }
}