Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

not_like

Function: #NOT_LIKE
  If a string is not like another string.
  Behaves like a SQL LIKE, which accepts % prefix/suffix
  for substring LIKE queries.


  Examples:

    "foo" NOT LIKE "foo" -- false

    "foo%" LIKE "bazfoo" -- true

    "%foo%" LIKE "bazfoobar" -- false

Signatures
text, text -> checkbox