action httpbin_patch_status_codes { label: "Return status code or random status code if more than one are given" provider: httpbin method: PATCH path: "/status/{codes}" encoding: json input: { type: "object" properties: { codes: { type: "string" } } required: ["codes"] additionalProperties: false } output: { type: "object" additionalProperties: true } }