Amazon Proton · Schema

Tag

A description of a resource tag.

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
key object
value object
View JSON Schema on GitHub

JSON Schema

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