Last updated

boolean

The boolean type matches only two special values: true and false. Note that values that evaluate to true or false, 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.

schema boolean

Types

  • SchemaProperties
const SchemaProperties: NodeType = {
  properties: {},
  additionalProperties: 'Schema',
};