action jumpseller_get_countries_country_code_regions_json { label: "Retrieve all Regions from a single Country." provider: jumpseller method: GET path: "/countries/{country_code}/regions.json" encoding: json input: { type: "object" properties: { country_code: { type: "string" format: "string" } } required: ["country_code"] additionalProperties: false } output: { type: "array" items: { properties: { code: { type: "string" } name: { type: "string" } } } } }