action httpbin_get_links_n_offset { label: "Generate a page containing n links to other pages which do the same." provider: httpbin method: GET path: "/links/{n}/{offset}" encoding: json input: { type: "object" properties: { n: { type: "integer" } offset: { type: "integer" } } required: ["n", "offset"] additionalProperties: false } output: { type: "object" additionalProperties: true } }