action discourse_remove_topic { label: "Remove a topic" provider: discourse method: DELETE path: "/t/{id}.json" encoding: json input: { type: "object" properties: { "Api-Key": { type: "string" } "Api-Username": { type: "string" } id: { type: "string" } } required: ["Api-Key", "Api-Username", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }