Amazon EC2 · Schema

Tag

Describes a tag

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
key string The key of the tag
value string The value of the tag
View JSON Schema on GitHub

JSON Schema

ec2-openapi-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2/refs/heads/main/json-schema/ec2-openapi-tag-schema.json",
  "title": "Tag",
  "description": "Describes a tag",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The key of the tag"
    },
    "value": {
      "type": "string",
      "description": "The value of the tag"
    }
  }
}