action openaq_countries_getv1_v1_countries_get { label: "Countries Getv1" provider: openaq method: GET path: "/v1/countries" 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" description: "\n Limit results by a certain country using two letter country code.\n (ex. /US)\n " } limit: { type: "integer" } offset: { type: "integer" } order_by: { type: "object" } page: { type: "integer" description: "Paginate through results." } sort: { description: "Define sort order." type: "object" } } 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" } } } } } } }