action ljaero_uoa_by_poly_us_v1_uoa_polygon_query_post { label: "Retrieve UAS Operating Areas (UOAs) found within given area." description: "Retrieve UAS Operating Areas (UOAs) found within given area. Request body parameters are:\n* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2." provider: ljaero method: POST path: "/us/v1/uoa/polygon-query" encoding: json input: { type: "object" properties: { poly: { type: "object" } "x-api-key": { type: "string" } } required: ["poly"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }