Amazon IoT Events · JSON Structure

Iot Events Tags Structure

Tags schema

Type: array Properties: 0
Event DetectionIoTState MachineAutomation

Tags is a JSON Structure definition published by Amazon IoT Events. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-iot-events/refs/heads/main/json-structure/iot-events-tags-structure.json",
  "name": "Tags",
  "description": "Tags schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "key",
      "value"
    ],
    "properties": {
      "key": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TagKey"
          },
          {
            "description": "The tag's key."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TagValue"
          },
          {
            "description": "The tag's value."
          }
        ]
      }
    },
    "description": "Metadata that can be used to manage the resource."
  }
}