A boolean AST representing concepts of TRUE
or FALSE
.
Properties | Type | Description |
---|---|---|
_meta | Meta |
See
Meta
for more information.
|
_type |
|
|
value◊ |
|
The boolean value of this model. |
|
||
|
{
"_type": "AST.Bool",
"value": true
}
{
"info": [
"A boolean AST representing concepts of `TRUE` or `FALSE`."
],
"examples": [
{
"_type": "AST.Bool",
"value": true
}
],
"properties": {
"_meta": {
"$ref": "../Meta.json"
},
"_type": {
"enum": [
"AST.Bool"
]
},
"value": {
"info": [
"The boolean value of this model."
],
"type": "boolean"
}
},
"required": [
"value"
],
"title": "Bool",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false
}