Whole JSON document wrapped in quotes
The document is double-encoded — a JSON string containing JSON, or a shell variable that kept its surrounding quotes.
The input
'{"a": 1}'{"a": 1}How to fix it
Parse twice, or fix the producer so it sends the object rather than a string containing the object.
If parsing succeeds and gives you a string instead of an object, you have hit the double-encoded version of this — parse the result again.
What each parser reports
Every message below was captured by running this exact input through the parser named. 15 of 21 parsers rejected it; 6 accepted it.
| Parser | Exact message |
|---|---|
| CPython json.loads CPython 3.12.3 | Expecting value: line 1 column 1 (char 0)what this message means → |
| encoding/json Unmarshal Go go1.22.2 | invalid character '\'' looking for beginning of valuewhat this message means → |
| Gson Java 21.0.12 | accepted — no error |
| Gson JsonParser (lenient off) Java 21.0.12 | accepted — no error |
| hjson Node.js 22.22.2 | accepted — no error |
| Jackson ObjectMapper Java 21.0.12 | Unexpected character (''' (code 39)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false')what this message means → |
| JavaScriptCore JSON.parse JavaScriptCore (Bun 1.4.1) | JSON Parse error: Single quotes (') are not allowed in JSONwhat this message means → |
| json-bigint Node.js 22.22.2 | Unexpected ''' |
| JSON5 Node.js 22.22.2 | accepted — no error |
| JSON::PP Perl 5.038002 | malformed JSON string, neither array, object, number, string or atom, at character offset 0 (before "'{"a": 1}'")what this message means → |
| json_decode PHP 8.3.6 | Syntax error |
| Newtonsoft.Json JsonConvert Newtonsoft.Json 13.0.3 on .NET 8.0.30 | accepted — no error |
| Newtonsoft.Json JsonTextReader Newtonsoft.Json 13.0.3 on .NET 8.0.30 | accepted — no error |
| orjson CPython 3.12.3 | unexpected character, expected a JSON value: line 1 column 1 (char 0)what this message means → |
| Ruby JSON.parse Ruby 3.2.3 | unexpected token at ''{"a": 1}'' |
| serde_json::from_str Rust (serde_json 1.x) | expected value at line 1 column 1what this message means → |
| SpiderMonkey JSON.parse SpiderMonkey 115 | JSON.parse: unexpected character at line 1 column 1 of the JSON datawhat this message means → |
| System.Text.Json Deserialize .NET 8.0.30 | ''' is an invalid start of a value. Path: $ | LineNumber: 0 | BytePositionInLine: 0.what this message means → |
| System.Text.Json JsonDocument .NET 8.0.30 | ''' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0.what this message means → |
| ujson CPython 3.12.3 | Expected object or value |
| V8 JSON.parse Node.js 22.22.2 | Unexpected token ''', "'{"a": 1}'" is not valid JSONwhat this message means → |
What the specification says
The exact sections that govern this error. Descriptions are our paraphrase; follow the links for the normative text.
| Body | Section |
|---|---|
| IETF | A JSON text is a single value with optional surrounding whitespace ( JSON-text = ws value ws). The token set is six structural characters, strings, numbers and three literal names — nothing else. |
| IETF | A string begins and ends with a quotation mark. Any Unicode character may appear between them except the quotation mark, the reverse solidus, and the control characters U+0000 through U+001F, which the section requires to be escaped. It also fixes the escape set and the \uXXXX form. |
| Ecma International | A string is code points wrapped in quotation marks; the quotation mark, reverse solidus and U+0000–U+001F must be escaped. Table 3 fixes the escape sequences. |
Other errors in this category
Empty string passed to a JSON parser
The document is zero bytes. Almost always an upstream failure: an HTTP call that returned 204, a file that was never written, a va…
Whitespace-only input
The document contains only spaces, tabs or newlines. Same family as empty input — a file was created but never filled.…
Extra data after a JSON document
Two complete documents concatenated. Usually a file appended to rather than overwritten, or several API responses written to the s…
Trailing characters after a JSON document
Non-whitespace content after the closing brace — a stray word, a shell prompt captured with the output, or a log line appended to …
HTML received where JSON was expected
The response body is an HTML page, not JSON. The server returned an error page, a login redirect, a proxy or captive-portal inters…
The literal string 'undefined' as a JSON document
A JavaScript variable holding `undefined` was interpolated into a string and sent as the body. `String(undefined)` is `"undefined"…
Bare unquoted word as a JSON document
A single token with no quotes. Either a plain-text response being parsed as JSON, or a string value that was never quoted.…
NDJSON fed to a whole-document JSON parser
Newline-delimited JSON: one complete document per line. Each line is valid on its own, but the file as a whole is not a single JSO…