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