Amazon Pinpoint · Schema

TagsModel

Specifies the tags (keys and values) for an application, campaign, message template, or segment.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
tags object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-tags-model-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-tags-model-schema.json",
  "title": "TagsModel",
  "description": "Specifies the tags (keys and values) for an application, campaign, message template, or segment.",
  "type": "object",
  "properties": {
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MapOf__string"
        },
        {
          "description": "<p>A string-to-string map of key-value pairs that defines the tags for an application, campaign, message template, or segment. Each of these resources can have a maximum of 50 tags.</p> <p>Each tag consists of a required tag key and an associated tag value. The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.</p>"
        }
      ]
    }
  },
  "required": [
    "tags"
  ]
}