Skip to main content

valid-boolean-property-value

Overview

This rule belongs to the json-validation ruleset and states that:

A boolean property value should not be enclosed in quotation marks. The only allowed values are: true, false.

PropertyValue
EnabledYes
Maximum SeverityBlocking
MessageJSON data is invalid as the boolean property value could not be parsed.
CodeJSON_V102
TypeValidation
Rule SystemSyntax
Broad CategoryJSON Property Value
Tagsjson data preliminary checks validation json boolean bool property value

Suggested Fixes

  • Make sure that you are not using a variant of boolean values which is not supported. Use values true or false only.
  • If the value is not a boolean, enclose it in double quotation marks.
  • If the value is quoted, make sure that there is no missing starting/ending quotation mark.
  • If the value is quoted, make sure that there are no extra trailing/leading quotation marks around the value.
  • Make sure that the property value is properly escaped.
  • If there is any extra content before the actual JSON content, remove that.

For More Information