I have a large GeoJSON file with a single very complex MultiPolygon, and I would like to turn it into an identical file with many small polygons.
How can I do this? I can use ogr2ogr or mapshaper or PostGIS, or any other command-line tool.
This is what my file looks like:

CREATE TABLE polygon_table AS SELECT id (ST_Dump(geom)).geom::geometry(Polygon,27700) AS geom FROM multipolygon_table. – Richard Jan 08 '19 at 21:20