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