product · inferred from evidence
anon
A role or user type in the database system, representing anonymous users.
- "new row violates row-level security policy" (42501) on INSERT with TO anon WITH CHECK (true)
A public contact/lead form needs anonymous users to insert rows into a table, so RLS was enabled with CREATE POLICY ... FOR INSERT TO anon WITH CHECK (true) plus GRANT INSERT ON the table TO anon and GRANT USAGE, SELECT ON SEQUENCE TO anon.