Amazon Pinpoint · Schema

EventCondition

Specifies the conditions to evaluate for an event that applies to an activity in a journey.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Dimensions object
MessageActivity object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-event-condition-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-event-condition-schema.json",
  "title": "EventCondition",
  "description": "Specifies the conditions to evaluate for an event that applies to an activity in a journey.",
  "type": "object",
  "properties": {
    "Dimensions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventDimensions"
        },
        {
          "description": "The dimensions for the event filter to use for the activity."
        }
      ]
    },
    "MessageActivity": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The message identifier (message_id) for the message to use when determining whether message events meet the condition."
        }
      ]
    }
  }
}