action discourse_create_topic_timer { label: "Create topic timer" provider: discourse method: POST path: "/t/{id}/timer.json" encoding: json input: { type: "object" properties: { "Api-Key": { type: "string" } "Api-Username": { type: "string" } based_on_last_post: { type: "boolean" } category_id: { type: "integer" } id: { type: "string" } status_type: { type: "string" } time: { type: "string" } } required: ["Api-Key", "Api-Username", "id"] additionalProperties: false } output: { type: "object" properties: { based_on_last_post: { type: "boolean" } category_id: { type: ["string", "null"] } closed: { type: "boolean" } duration: { type: ["string", "null"] } execute_at: { type: "string" } success: { type: "string" } } } }