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.

like

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

  Examples:

  "foo" LIKE "foo" -- true

  "foo%" LIKE "bazfoo" -- false

  "%foo%" LIKE "bazfoobar" -- true

Signatures
text, text -> checkbox