{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 12.5 ] }, "properties": { "error": "Incomplete coordinates" } }, { "type": "feature", "geometry": { "type": "Point", "coordinates": [ "long", "lat" ] }, "properties": { "error": "Lowercase type and string coordinates" } }, { "type": "Feature", "geometry": null, "properties": null, "missing_properties_field": true }, { "type": "Feature", "properties": { "error": "Missing geometry field" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [[[0,0], [1,1], [1,0]]] }, "properties": { "error": "LinearRing not closed" } } ] }