Tag information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TagValue", "title": "TagValue", "type": "object", "description": "Tag information.", "properties": { "id": { "type": "string", "readOnly": true, "description": "The tag value ID.", "example": "abc123" }, "tagValue": { "type": "string", "description": "The tag value.", "example": "example_value" }, "count": { "$ref": "#/components/schemas/TagCount" } } }