action rbaskets_delete_api_baskets_name { label: "Delete basket" description: "Permanently deletes this basket and all collected requests." provider: rbaskets method: DELETE path: "/api/baskets/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }