boolean
The boolean type matches only two special values:
true
andfalse
. Note that values that evaluate totrue
orfalse
, such as 1 and 0, are not accepted by the schema.
Visuals
The following schema describes a boolean.
type: boolean description: True if it is active example: true
The following image shows the boolean schema.
Types
- SchemaProperties
const SchemaProperties: NodeType = { properties: {}, additionalProperties: 'Schema', };