About 280,000 results
Open links in new tab
  1. What is the correct format in JSON, should I quote names also?

    I am writing a JSON file, but I am not sure about which of the following formats is the correct one? Quoting variable names and all string values { "class": { "number": 2, "st...

  2. What is the "right" JSON date format? - Stack Overflow

    If you have control over the generated json, for example, you provide data to other systems in json format, choosing 8601 as the date interchange format is a good choice.

  3. Json files structure/format in Visual Studio Code

    Jan 16, 2022 · In Visual Studio Code (under Windows), my present Json files are displayed as the following : I would them to be formatted as displayed below :

  4. parsing - How to reformat JSON in Notepad++ - Stack Overflow

    Oct 13, 2009 · 12 Steps to add JSON viewer plugin for notepad++: Download JSON viewer plugin for notepad++ from sourceforge. Copy NPPJSONViewer.dll into Notepad++\plugins\NPPJSONViewer …

  5. feed - Correct JSON format for the JSON_LISTING_FEED product …

    Jun 16, 2023 · This is currently how my JSON is formatted for the JSON_LISTING_FEED upload channel and whenever I go to upload the test product I can see it processing in seller central, and …

  6. How do I check if a string is valid JSON in Python?

    Despite the fact that the spec says that a JSON text must be an array or object, most encoders and decoders (including Python's) will work with any JSON value at the "top," including numbers and …

  7. JSON not in Correct Format - Stack Overflow

    Jun 25, 2013 · JSON not in Correct Format Asked 12 years, 5 months ago Modified 12 years, 5 months ago Viewed 3k times

  8. Formatting JSON in Python - Stack Overflow

    Nov 6, 2018 · You have to parse the string one way or another, and then format and print it, one way or another. I don't think json.loads and json.dumps is more expensive than any other approch, e.g. …

  9. How to make sure that string is valid JSON using JSON.NET

    Feb 20, 2013 · How can one validate whether a raw string is valid JSON or just text? I'm using JSON.NET.

  10. How to check if a string is a valid JSON string? - Stack Overflow

    @user3651476 That's because "12345678" is a valid json string. JSON documents have a single root node, which can be null, a boolean, a number, a string, an array or an object.