Amazon WorkMail · Schema

Tag

Describes a tag applied to a resource.

Business CommunicationCalendarEmailExchangeEnterprise

Properties

Name Type Description
Key object
Value object
View JSON Schema on GitHub

JSON Schema

workmail-tag-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "Key",
    "Value"
  ],
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "The key of the tag."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": "The value of the tag."
        }
      ]
    }
  },
  "description": "Describes a tag applied to a resource.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Tag",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-tag-schema.json"
}