Guide
Fix Single Quotes in JSON
JSON strings and object keys must use double quotes. Single-quoted values are common in JavaScript snippets, Python-like output, and LLM responses.
Why single quotes fail
Strict JSON only accepts double-quoted strings. A parser will reject {'name':'Ada'} even though JavaScript developers may recognize the shape.
Broken example
{ 'name': 'Ada', 'active': true }
Fixed JSON
{ "name": "Ada", "active": true }