Amazon Proton · JSON Structure

Amazon Proton Tag Structure

A description of a resource tag.

Type: object Properties: 2 Required: 2
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Tag is a JSON Structure definition published by Amazon Proton, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

key value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-structure/amazon-proton-tag-structure.json",
  "name": "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"
  ]
}