CREATE TABLE named_filters (
    id uuid PRIMARY KEY DEFAULT (uuid_generate_v4()) NOT NULL,
    display_name text NOT NULL,
    description text,
    type text NOT NULL,
    priority integer NOT NULL,
    revision SERIAL NOT NULL,
    filter jsonb NOT NULL
);
