About 12,600,000 results
Open links in new tab
  1. Can comments be used in JSON? - Stack Overflow

    Yes. The JSON format has a lot of dead-space between elements and is space-insensitive in those regions, so there's no reason why you can't have single or multi-line comments there. …

  2. Is there any standard for JSON API response format?

    Do standards or best practices exist for structuring JSON responses from an API? Obviously, every application's data is different, so that much I'm not concerned with, but rather the "response

  3. Representing null in JSON - Stack Overflow

    What is the preferred method for returning null values in JSON? Is there a different preference for primitives? For example, if my object on the server has an Integer called …

  4. What is the difference between launch.json and tasks.json in visual ...

    Jan 5, 2017 · Why do we have two configurations to setup the build environment in Visual Studio Code? What is the difference between them?

  5. python - How to prettyprint a JSON file? - Stack Overflow

    jq . some.json and you get colors as a bonus (and way easier extendability). Addendum: There is some confusion in the comments about using jq to process large JSON files on the one hand, …

  6. Using JSON code formatting in SharePoint List Gallery view to …

    Apr 2, 2025 · used the Embed web part to insert an iFrame on the page, ensuring that its name attribute matches the target name in the JSON code. The net result of all this is the SharePoint …

  7. Convert JSON String To C# Object - Stack Overflow

    Trying to convert a JSON string into an object in C#. Using a really simple test case: JavaScriptSerializer json_serializer = new JavaScriptSerializer(); object routes_list = …

  8. How to open Visual Studio Code's 'settings.json' file

    I did it many times, and each time I forgot where it was. Menu File → Preferences → Settings. I get this: I want to open file settings.json (editable JSON file) instead. How can I do that?

  9. How to get JSON from webpage into Python script

    Unfortunately, that doesn't work in Python 3. json.load is just a wrapper around json.loads that calls read () for a file-like object. json.loads requires a string object and the output of …

  10. python - Serializing class instance to JSON - Stack Overflow

    JSON is not really meant for serializing arbitrary Python objects. It's great for serializing dict objects, but the pickle module is really what you should be using in general.