action discourse_list_tag_groups { label: "Get a list of tag groups" provider: discourse method: GET path: "/tag_groups.json" encoding: json output: { type: "object" properties: { tag_groups: { type: "array" items: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } one_per_topic: { type: "boolean" } parent_tag_name: { type: "array" items: { type: "object" } } permissions: { type: "object" properties: { staff: { type: "integer" } } } tag_names: { type: "array" items: { type: "object" } } } } } } } }