Skip to content

Checkbox

A checkbox field represents a boolean value and indicates whether an option is selected or not.

It stores a simple true/false state depending on the user’s selection.


List Context

When retrieved in a list context, a checkbox returns:

  • Yes (true)
  • No (false)

Get Operation

When retrieved via a get operation, a checkbox returns:

  • 1 (true)
  • 10 (false)

Notes

  • The underlying value represents a boolean state regardless of the format returned.
  • The output format differs depending on the retrieval method used (list vs get).