Tag

A set of key/value pairs that are used to manage the resource.

ComplianceIoTSecurityVulnerability Management

Properties

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

JSON Schema

iot-device-defender-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-schema/iot-device-defender-tag-schema.json",
  "title": "Tag",
  "description": "A set of key/value pairs that are used to manage the resource.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "The tag's key."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": "The tag's value."
        }
      ]
    }
  },
  "required": [
    "Key"
  ]
}