json serializer settings for legacy asp.net core applications were set by adding AddMvc().AddJsonOptions(), but I don't use AddMvc() in asp.net core 3. So how c
I'm trying to use Google Sheets as a JSON backend. The JSON output is here: "gsx$company": { //all is ok "$t": "Company name"
How should I parse JSON using Node.js? Is there some module which will validate and parse JSON securely?
I'm reading a json value in c++ using Json::Reader reader and the value is stored in Json::Value root This root contains "age" and "id" and I want to conve
I have created a Restful Web Service in ASP.NET and would like to use it in my own Qt project. I can post to and get the data from my Web Service in the SoapUi
What is the most convenient and comprehensive way of validating incoming requests in Falcon views against Swagger 2.0 specification written in json? I used to
I am working on a project with an API which gives me a JSON Object with some data in a variable. But the name of the variable under which the data is provided c
My application has been using json schema (org.everit.json.schema.Schema ) to validate JSON messages whether they comply to a particular forma
I'm new to using protobuf, and was wondering if there is a simple way to convert a json stream/string to a protobuf stream/string in Java? For example, protoS
I have an array of objects. now I want to convert them to json. var dd =new MyUser[10]; for (int i = 0; i < 10; i++) { Debug.Log
Source Object (JSON, using JSON.NET if it matters): { "conum" : 1001, "name" : "CLN Industries Corporation", "agencyName" : "Murphy, Holmes & A
I'm searching for a module to validate POST json requests in my Express.js application. What json schema module do you use in your node.js ap
In powershell while converting VM objects to json , ($json = ConvertTo-Json $vm -Compress) i am getting "An item with the same key has already been added" exc
I am getting a null value for my transformed object when trying to convert something like this: { "employees": [ { "f_name" : "tom", "l_name" : "smith"
I have been trying to create a google assistant interaction for checking to see if the most recently drawn lottery results match the user's I have tried an API
I am using Json.net in my MVC 4 program. I have an object item of class Item. I did: string j = JsonConvert.SerializeObject(item); Now I want to add an extr
I have a CRUD app powered by angular. Recently I added datatables to it in order to search, filter, sort,export and hide columns using the power of datatables.
I am serializing multiple nested dictionaries to JSON using Python with simplejson. Is there any way to automatically exclude empty/null values? For example,
I use com.fasterxml.jackson and io.swagger libraries. In my REST endpoint I use org.javamoney.moneta.Money type for a GET query. When deploying the war i get f
How can I get data from PHP to Android? can you help me?, how can I display result of PHP to android textview this is my PHP code I should use JSON on this...