About 5,990,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. Using JSON code formatting in SharePoint List Gallery view to display ...

    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 page displays …

  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. HTTP requests and JSON parsing in Python - Stack Overflow

    Jun 17, 2011 · The requests Python module takes care of both retrieving JSON data and decoding it, due to its builtin JSON decoder. Here is an example taken from the module's documentation:

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

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

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

  10. How to create correct JSONArray in Java using JSONObject

    153 how can I create a JSON Object like the following, in Java using JSONObject ?