{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-compute-optimizer/refs/heads/main/json-schema/compute-optimizer-tag-schema.json",
"title": "Tag",
"description": " A list of tag key and value pairs that you define. ",
"type": "object",
"properties": {
"key": {
"allOf": [
{
"$ref": "#/components/schemas/TagKey"
},
{
"description": " One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values. "
}
]
},
"value": {
"allOf": [
{
"$ref": "#/components/schemas/TagValue"
},
{
"description": " One part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). The value can be empty or null. "
}
]
}
}
}