# Check protected-areas overlap Accepts a JSON object with 'plot_ids' (array of strings) and/or 'geojson' (At least one of the two fields must be provided). Returns a single GeoJSON FeatureCollection with all results. Endpoint: POST /protected-areas/checks Version: 3.0.1 ## Header parameters: - `Authorization` (string) Authorization header with a Bearer token, formatted as 'Bearer [JWT]' where [JWT] is the JSON Web Token used for user authentication and authorization. Example: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.your-payload-here.signature" ## Request fields (application/json): - `plot_ids` (array) - `geojson` (object) GeoJSON representation of the plot's geographical data Example: {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.01750003723791,-0.03010959663886581],[20.01857837976968,-0.029779656058593673],[20.01958831997618,-0.031143678695514154],[20.018349030798674,-0.03160640023472183],[20.017491989905864,-0.03011764397074046]]]}}]} - `geojson.type` (string, required) Example: "FeatureCollection" - `geojson.features` (array, required) A list of GeoJson Features that this FeatureCollection is made of Example: [{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.01750003723791,-0.03010959663886581],[20.01857837976968,-0.029779656058593673],[20.01958831997618,-0.031143678695514154],[20.018349030798674,-0.03160640023472183],[20.017491989905864,-0.03011764397074046]]]}}] - `geojson.features.geometry` (any, required) Geometry object defining the spatial aspect of the feature, can be either Point or Polygon - `geojson.features.properties` (object) Additional properties for the feature as key-value pairs. Optional properties include point_ha (float < 4.0) Example: {"point_ha":3.5} - `geojson.features.type` (string, required) Type of the GeoJSON feature Example: "Feature" ## Response 200 fields (application/json): - `type` (string, required) Example: "FeatureCollection" - `features` (array, required) A list of GeoJson Features that this FeatureCollection is made of Example: [{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.01750003723791,-0.03010959663886581],[20.01857837976968,-0.029779656058593673],[20.01958831997618,-0.031143678695514154],[20.018349030798674,-0.03160640023472183],[20.017491989905864,-0.03011764397074046]]]}}] - `features.geometry` (any, required) Geometry object defining the spatial aspect of the feature, can be either Point or Polygon - `features.properties` (object) Additional properties for the feature as key-value pairs. Optional properties include point_ha (float < 4.0) Example: {"point_ha":3.5} - `features.type` (string, required) Type of the GeoJSON feature Example: "Feature"