booleanCreates a schema that matches booleans.const booleanSchema = boolean();const booleanValidator = validate(booleanSchema); // Returns trueconst loading = booleanValidator(true);Copy