Amazon Pinpoint · Schema

RandomSplitActivity

Specifies the settings for a random split activity in a journey. This type of activity randomly sends specified percentages of participants down one of as many as five paths in a journey, based on conditions that you specify.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Branches object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-random-split-activity-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-random-split-activity-schema.json",
  "title": "RandomSplitActivity",
  "description": "Specifies the settings for a random split activity in a journey. This type of activity randomly sends specified percentages of participants down one of as many as five paths in a journey, based on conditions that you specify.",
  "type": "object",
  "properties": {
    "Branches": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfRandomSplitEntry"
        },
        {
          "description": "The paths for the activity, including the percentage of participants to enter each path and the activity to perform for each path."
        }
      ]
    }
  }
}