Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Embedded JSONNew to Visual Studio Code? Get it now.
Embedded JSON

Embedded JSON

Robin Lieb

|
278 installs
| (0) | Free
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

embedded-json

Visual Studio Code Extension to unwrap string encoded embedded JSON.

Features

This extension can unwarp embedded string JSONs to expand to the full JSON.

For example you have a input JSON like that:

{
  "firstName": "John",
  "lastName": "Doe",
  "age": 21,
  "address": "{\"city\": \"San Diego\", \"zip\": 92101}"
}

This extension will unwrap it to this example.

{
    "firstName": "John",
    "lastName": "Doe",
    "age": 21,
    "address": {
        "city": "San Diego",
        "zip": 92101
    }
}

Unwrap Embedded JSON

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft