I have am consuming some survey data via JSON from an API for my .Net app. I have created a class from the JSON file in my .net app. The JSON has a node called Response[] which is an array – so my survey platform gives me back multiple surveys. This works great when I get two or more surveys back (as its an array).
var root = JsonConvert.DeserializeObject<SurveyJsonModel.Rootobject>(json);
However, if the survey platform only returns back one survey the deserialisation fails, I suspect as the JSON is not returning an array. See attached screen shot of my model that I have created from the JSON. Any idea how I resolve – so it works for one record as well as multiples? Also not fail for zero records eithier. I suspect my model needs chnaging or do I need to use a different deserialisation method
The error message I get is:
Please see below the error message:
Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type ‘SurveyJsonModel+Response[]’ because the type requires a JSON array(e.g. [1, 2, 3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1, 2, 3]) or change the deserialized type so that it is a normal .NET type (e.g.not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
This is my class that I am using – im not sure where I add the constructor
public class SurveyJsonModel
{
public class Rootobject
{
public Xml xml { get; set; }
public Responses Responses { get; set; }
}
public class Xml
{
public string version { get; set; }
}
public class Responses
{
public Response[] Response { get; set; }
}
public class Response
{
public string startDate { get; set; }
public string endDate { get; set; }
public string status { get; set; }
public string ipAddress { get; set; }
}
}
This is my JSON string that returns one result,if it returns two surveys my code worked – but the below fails for one record as its not an array
{"?xml":{"@version":"1.0"},"Responses":{"Response":{"startDate":"2023-01-26 10:13:16","endDate":"2023-01-26 10:13:29","status":"0","ipAddress":"192.168.0.1"}}}
2
Answers
If you are using .NET Core 3 or higher you can try to change the type of the
Response
property toJsonElement
and check theValueKind
property to see if it is an object or an array.You don’t need any custom converters, in this case I usually recommend to create a very simple JsonConstructor. And I fixed some bugs in your classes