Amazon Pinpoint · Schema

SegmentReference

Specifies the segment identifier and version of a segment.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Id object
Version object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-segment-reference-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-segment-reference-schema.json",
  "title": "SegmentReference",
  "description": "Specifies the segment identifier and version of a segment.",
  "type": "object",
  "properties": {
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the segment."
        }
      ]
    },
    "Version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "description": "The version number of the segment."
        }
      ]
    }
  },
  "required": [
    "Id"
  ]
}