Amazon FreeRTOS · Schema

Tag

A key-value metadata label applied to a FreeRTOS management resource.

Embedded SystemsIoTMicrocontrollersRTOS

Properties

Name Type Description
key string Tag key.
value string Tag value.
View JSON Schema on GitHub

JSON Schema

amazon-freertos-tag-schema.json Raw ↑
{
  "$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"
  ]
}