Given the following GeoJSON collection:
{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    13.55791,
                    52.54459
                ]
            },
            "properties": {
                "title": "Sommer 2022",
                "opening_hours": null,
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    13.39519,
                    52.5203
                ]
            },
            "properties": {
                "title": "Winter",
                "opening_hours": "Sa,Su,PH 11:00-17:00",
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    13.39519,
                    52.5203
                ]
            },
            "properties": {
                "title": "Winter",
                "opening_hours": "Sa,Su,PH 11:00-17:00",
            }
        }
    ]
}
How can I remove duplicate features to finally have a GeoJSON collection with unique features?
 
    