action rbaskets_post_baskets_name { label: "Create new basket" description: "Creates a new basket with this name." provider: rbaskets method: POST path: "/baskets/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }