Dictionary keys must be unique so:
unique_data = list({entry['FILTER']: entry for entry in data}.values())
will remove duplicates and give you a list in the format you need.