A key-value metadata label applied to a FreeRTOS management resource.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-freertos/refs/heads/main/json-schema/amazon-freertos-tag-schema.json", "title": "Tag", "description": "A key-value metadata label applied to a FreeRTOS management resource.", "type": "object", "properties": { "key": { "type": "string", "description": "Tag key." }, "value": { "type": "string", "description": "Tag value." } }, "required": [ "key", "value" ] }