Amazon Pinpoint · Schema

ClosedDays

The time when journey will stop sending messages.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
EMAIL object
SMS object
PUSH object
VOICE object
CUSTOM object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-closed-days-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-schema.json",
  "title": "ClosedDays",
  "description": "The time when journey will stop sending messages.",
  "type": "object",
  "properties": {
    "EMAIL": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfClosedDaysRules"
        },
        {
          "description": "Rules for Email Channel."
        }
      ]
    },
    "SMS": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfClosedDaysRules"
        },
        {
          "description": "Rules for SMS Channel."
        }
      ]
    },
    "PUSH": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfClosedDaysRules"
        },
        {
          "description": "Rules for Push Channel."
        }
      ]
    },
    "VOICE": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfClosedDaysRules"
        },
        {
          "description": "Rules for Voice Channel."
        }
      ]
    },
    "CUSTOM": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfClosedDaysRules"
        },
        {
          "description": "Rules for Custom Channel."
        }
      ]
    }
  }
}