Tag details.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TagDetails", "title": "TagDetails", "type": "object", "description": "Tag details.", "properties": { "id": { "type": "string", "readOnly": true, "description": "The tag name ID.", "example": "abc123" }, "tagName": { "type": "string", "description": "The tag name.", "example": "example_value" }, "count": { "$ref": "#/components/schemas/TagCount" }, "values": { "type": "array", "items": { "$ref": "#/components/schemas/TagValue" }, "description": "The list of tag values.", "example": [] } } }