action discourse_list_tags { label: "Get a list of tags" provider: discourse method: GET path: "/tags.json" encoding: json output: { type: "object" properties: { extras: { type: "object" properties: { categories: { type: "array" items: { type: "object" } } } } tags: { type: "array" items: { type: "object" properties: { count: { type: "integer" } id: { type: "string" } pm_count: { type: "integer" } target_tag: { type: ["string", "null"] } text: { type: "string" } } } } } } }