How can I get individual values from this JSON? For example the SSN? Also, some items are arrays that can hold multiples (addresses, phones). What is the best way to parse this? I have tried with JArray.Parse(data), but still can't "find" the individual items. Can anyone point me in the right direction?
[{
"firstName": "test",
"middleName": "test",
"lastName": "test"
},
{
"addresses":
[{
"street": "test",
"city": "test",
"state": "test",
"zip": "test"
}]
},
{
"DOB": ""
},
{
"SSN": "123123123"
},
{
"occupation": "test",
"typeOfOccupation": "test"
},
{
"phones":
[{
"phone": "",
"type": ""
}]
},
{
"Email": ""
},
{
"typeOfId": "",
"idNumber": "",
"expirationDate": ""
}]