I have been try to find the best way to search a particular value and extract the data. I am new and hope i have worded this correctly.
{"family": {
"name": "Mary",
"age": "32",
"sex": "female",
"kids": [
{
"name": "jim",
"age": "10",
"sex": "male",
"dob_year": "2007",
"ssn": "123-23-1234"
},
{
"name": "jill",
"age": "6",
"sex": "female",
"dob_year": "2011",
"ssn": "123-23-1235"
}]}}
if i needed to search "ssn" containing "1234" and return the "name" "jim" what would be the best way to go about achieving this?