Amazon Pinpoint · JSON Structure

Amazon Pinpoint Quiet Time Structure

Specifies the start and end times that define a time range when messages aren't sent to endpoints.

Type: object Properties: 2
CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

QuietTime is a JSON Structure definition published by Amazon Pinpoint, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

End Start

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-structure/amazon-pinpoint-quiet-time-structure.json",
  "name": "QuietTime",
  "description": "Specifies the start and end times that define a time range when messages aren't sent to endpoints.",
  "type": "object",
  "properties": {
    "End": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The specific time when quiet time ends. This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM."
        }
      ]
    },
    "Start": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The specific time when quiet time begins. This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM."
        }
      ]
    }
  }
}