type Tag struct {
ID string `json:"id"`
Name string `json:"name"`
Color string `json:"color"`
WorkflowCount int `json:"workflowCount"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
}
Tag is the API response shape for a single tag in the list.