Fix
Fix JSON Unquoted Property Names
JavaScript object literals allow unquoted keys, but JSON requires every key to be a double-quoted string.
Invalid
{name: "Alice", age: 30}
Valid
{"name": "Alice", "age": 30}
Automated Fix
Use the JSON Validator to locate unquoted keys by line number, then wrap each key in double quotes.