action httpbin_put_anything_anything { label: "Returns anything passed in request data." provider: httpbin method: PUT path: "/anything/{anything}" encoding: json input: { type: "object" properties: { anything: { type: "string" } } required: ["anything"] additionalProperties: false } output: { type: "object" additionalProperties: true } }