action discourse_get_backups { label: "List backups" provider: discourse method: GET path: "/admin/backups.json" encoding: json output: { type: "array" items: { type: "object" required: ["filename", "size", "last_modified"] properties: { filename: { type: "string" } last_modified: { type: "string" } size: { type: "integer" } } } } }