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.

is_empty

Function: is_empty
  Returns whether or not the input is empty. Empty means null values,
  empty strings, or strings of entirely whitespace.

Examples:

  is_empty(null)
  -- Result: true

  is_empty('')
  -- Result: true

  is_empty('  ')
  -- Result: true

  is_empty('  foo  ')
  -- Result: false




Signatures
text -> checkbox