action openaq_countries_get_v1_countries_country_id_get { label: "Countries Get" provider: openaq method: GET path: "/v1/countries/{country_id}" encoding: json input: { type: "object" properties: { country: { type: "array" description: "\n Limit results by a certain country using two letter country code.\n (ex. ?country=US or ?country=US&country=MX)\n " items: { type: "string" } } country_id: { type: "string" } limit: { type: "integer" } offset: { type: "integer" } order_by: { type: "object" } page: { type: "integer" description: "Paginate through results." } sort: { description: "Define sort order." type: "object" } } required: ["country_id"] additionalProperties: false } output: { type: "object" required: ["results"] properties: { meta: { type: "object" } results: { type: "array" items: { type: "object" required: ["code", "name", "locations", "firstUpdated", "lastUpdated", "parameters", "count", "cities", "sources"] properties: { cities: { type: "integer" } code: { type: "string" } count: { type: "integer" } firstUpdated: { type: "string" format: "date-time" } lastUpdated: { type: "string" format: "date-time" } locations: { type: "integer" } name: { type: "string" } parameters: { type: "array" items: { type: "string" } } sources: { type: "integer" } } } } } } }