About 6,740,000 results
Open links in new tab
  1. How do I make a JSON object with multiple arrays?

    The JSON data is an object (basically an associative array). Indexed arrays use square brackets, , while associative arrays use curly braces, . Any of the data within the outermost object can be either type …

  2. How to generate JSON examples from OpenAPI/Swagger model …

    Dec 31, 2016 · I'm building a fuzzer for a REST API that has an OpenAPI (Swagger) definition. I want to test all available path from the OpenAPI definition, generate data to test the servers, analyse …

  3. Complex JSON nesting of objects and arrays - Stack Overflow

    May 11, 2012 · Yaml is in between Xml and json. But if you want to work with Javascript heavily and/or your software makes a lot of data transfer between browser-server, you should use Json, because it …

  4. Json Schema example for oneOf objects - Stack Overflow

    Jul 29, 2014 · I am trying to figure out how oneOf works by building a schema which validates two different object types. For example a person (firstname, lastname, sport) and vehicles (type, cost). …

  5. rest - How do I POST JSON data with cURL? - Stack Overflow

    And when using --data or --data-binary with a JSON argument, cURL got confused and would interpret the {} in the JSON as a URL template. Adding a -g argument to turn off cURL globbing fixed that.

  6. How do you represent a JSON array of strings? - Stack Overflow

    Mar 14, 2011 · This is an example of a JSON string with Employee as object, then multiple strings and values in an array as a reference to @cregox... A bit complicated but can explain a lot in a single …

  7. Send JSON via POST in C# and Receive the JSON returned?

    This is my first time ever using JSON as well as System.Net and the WebRequest in any of my applications. My application is supposed to send a JSON payload, similar to the one below to an …

  8. 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.

  9. How can I parse (read) and use JSON in Python? - Stack Overflow

    My Python program receives JSON data, and I need to get bits of information out of it. How can I parse the data and use the result? I think I need to use json.loads for this task, but I can't under...

  10. 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