Boolean
A logical boolean (true / false).
Insert data that has a boolean attribute
#!test[schema]
#{{
define
entity order, owns shipped;
#}}
#!test[write]
insert
$o isa order, has shipped false;
Specify valid values for a boolean attribute type
#!test[schema]
define
attribute opted-in value boolean @values(true);