JSON Syntax Rules

Common JSON Errors

ErrorWrongCorrect
Single quotes{'name': 'John'}{"name": "John"}
Trailing comma{"a": 1, "b": 2,}{"a": 1, "b": 2}
Unquoted key{name: "John"}{"name": "John"}
undefined{"val": undefined}{"val": null}

JSON vs Other Formats