action openaq_sources_get_v2_sources_get { label: "Sources Get" provider: openaq method: GET path: "/v2/sources" encoding: json input: { type: "object" properties: { limit: { type: "integer" description: "Change the number of results returned." } offset: { type: "integer" } order_by: { type: "object" } page: { type: "integer" description: "Paginate through results." } sort: { description: "Define sort order." type: "object" } sourceId: { type: "array" items: { type: "integer" } } sourceName: { type: "array" items: { type: "string" } } sourceSlug: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "object" properties: { meta: { type: "object" } results: { type: "array" items: { type: "object" } } } } }