action jumpseller_get_countries_country_code_json { label: "Retrieve a single Country information." provider: jumpseller method: GET path: "/countries/{country_code}.json" encoding: json input: { type: "object" properties: { country_code: { type: "string" format: "string" } } required: ["country_code"] additionalProperties: false } output: { properties: { code: { type: "string" } name: { type: "string" } } } }