JSON Literal Values & Keywords
Unlike full programming languages, JSON defines only three keyword literals: true, false, and null. All three must be strictly lowercase.
Literal Specifications:
true/false: Boolean primitives. Keywords likeTrueorFALSEtrigger syntax errors.null: Represents empty or non-existent values.Noneorundefinedare invalid in JSON.
json
{
"isActive": true,
"isDeleted": false,
"deletedAt": null
}