36 chars · 4 lines
Two-way sync · Edit either side and the other updates automatically.
"name" "Ada",36 chars · 4 lines
Two-way sync · Edit either side and the other updates automatically.
"name" "Ada",JSON property separator error
A JSON object member always follows the pattern "key": value. When the parser finishes a quoted key and sees a value, comma, or other token instead of :, it cannot determine a valid member boundary. This tool is free to use. No account or payment is required.
Last updated
The key must be a double-quoted string, followed by a colon, followed by one valid JSON value. Whitespace is optional around the colon but the colon itself is mandatory.
Adding the separator only fixes the member boundary. The value still needs to be valid JSON, including quoted strings and properly nested arrays or objects.
The name key is quoted, but the string value begins without the required colon.
{
"name" "Ada",
"active": true
}{
"name": "Ada",
"active": true
}Common questions
No. Standard JSON object members require a colon between each property name and value.
No. Whitespace may surround the colon but cannot replace it.
The key may be valid by itself. The parser only knows the separator is missing when it reaches the next token where a colon should have appeared.
Debugging a specific JSON issue? Browse JSON troubleshooting.