About 50 results
Open links in new tab
  1. What is JSON and what is it used for? - Stack Overflow

    679 JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging. It is based on a subset of JavaScript language (the way objects are built in JavaScript). As stated in the …

  2. JSON Naming Convention (snake_case, camelCase or PascalCase)

    Is there a standard on JSON naming?I see most examples using all lower case separated by underscore, aka snake_case, but can it be used PascalCase or camelCase as well?

  3. SharePoint Available Icons - Stack Overflow

    Jan 24, 2024 · 3 In the JSON code to format a SharePoint header you can specify an icon to be used. Does anyone know where the list of usable icons can be found? The code below allows for the select …

  4. json - How do I use custom keys with Swift 4's Decodable protocol ...

    Swift 4 introduced support for native JSON encoding and decoding via the Decodable protocol. How do I use custom keys for this? E.g., say I have a struct struct Address:Codable { var street:S...

  5. How to import JSON file to Excel without coding?

    Apr 10, 2020 · How to import JSON file to Excel without coding? Asked 5 years, 10 months ago Modified 2 years, 11 months ago Viewed 17k times

  6. How to use if statement inside JSON? - Stack Overflow

    How to use if statement inside JSON? Asked 13 years ago Modified 4 years ago Viewed 180k times

  7. What is the difference between YAML and JSON? - Stack Overflow

    What are the differences between YAML and JSON, specifically considering the following things? Performance (encode/decode time) Memory consumption Expression clarity Library availability, ease …

  8. What is the best way to insert source code examples into a Microsoft ...

    No need for external plugins or MS Word micro coding. Easier to handle by simple users (such as myself). Cons: It will not maintain code colouring although someone could improve my trick. Steps: …

  9. javascript - How do I handle newlines in JSON? - Stack Overflow

    Sep 3, 2008 · Note that all answers inside here focus on how to parse a JSON string representation in JavaScript, which may cause confusion regarding how to represent newlines on actual JSON. The …

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

    Pros: It is a standard independent of your api. Cons: Less information on what really happened. Use HTTP Status + json body (even if it is an error). Define a uniform structure for errors (ex: code, …