These inputs are for editing true/false values in your data.
Checkbox#
Checkbox input for values that can be toggled.
Checkbox inputs are shown for inputs configured with the type checkbox
, or for the inputs values true
and false
.

show_feature: true
{
"show_feature": true
}
show_feature = true
featured: true
_inputs:
featured:
type: checkbox
{
"featured": true,
"_inputs": {
"featured": {
"type": "checkbox"
}
}
}
featured = true
[_inputs.featured]
type = "checkbox"
Switch#
Switch input for values that can be toggled.
Switch inputs are shown for inputs configured with the type switch
.

featured: true
_inputs:
featured:
type: switch
{
"featured": true,
"_inputs": {
"featured": {
"type": "switch"
}
}
}
featured = true
[_inputs.featured]
type = "switch"
Valid values#
Documented below are the valid formats for checkbox and switch inputs.
The lists of examples are non-exhaustive.
Empty/null value:
is_true:
Boolean values (without any quotation marks):
is_true: true
is_true: false
Boolean values (without any quotation marks):
is_true = true
is_true = false
Null value:
"is_true": null
Boolean values (without any quotation marks):
"is_true": true
"is_true": false