action openaq_latest_v1_get_v1_latest_get { label: "Latest V1 Get" provider: openaq method: GET path: "/v1/latest" encoding: json input: { type: "object" properties: { city: { type: "array" description: "\n Limit results by a certain city or cities.\n (ex. ?city=Chicago or ?city=Chicago&city=Boston)\n " items: { type: "string" } } coordinates: { type: "string" } 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 " } dumpRaw: { type: "boolean" } entity: { description: "Source entity type." type: "object" } has_geo: { type: "boolean" } isAnalysis: { type: "boolean" description: "Data is the product of a previous analysis/aggregation and not raw measurements" } isMobile: { type: "boolean" description: "Location is mobile" } limit: { type: "integer" description: "Change the number of results returned." } location: { type: "array" items: { type: "object" } } location_id: { type: "integer" } manufacturerName: { type: "array" description: "Manufacturer of Sensor" items: { type: "string" } } modelName: { type: "array" description: "Model Name of Sensor" items: { type: "string" } } offset: { type: "integer" } order_by: { description: "Order by a field" type: "object" } page: { type: "integer" description: "Paginate through results." } parameter: { type: "array" items: { type: "object" } } parameter_id: { type: "integer" } radius: { type: "integer" } sensorType: { description: "Type of Sensor" type: "object" } sort: { description: "Sort Direction" type: "object" } sourceName: { type: "array" description: "Name of the data source" items: { type: "string" } } unit: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "object" properties: { meta: { type: "object" } results: { type: "array" items: { type: "object" } } } } }