Rx: Simple, Extensible Schemata
//bool
A boolean represents either true or false, and is distinct from other potentially true or false values in that it represents only true or false.
The //bool type takes no parameters.
/.meta/bool, the schema for //bool definitions:
{
"type": "//rec",
"required": {
"type": { "type": "//str", "value": "//bool" }
}
}