Hi, I would like to extract some information from a json file. The fields I am interested in are from side to country.
{
“process”: “liquidation”,
“salesforceCase”: “sales-1234”,
“salesforceId”: “slfid-001”,
“mailBox”: “juan@gmail.com”,
“expedient”: “exp-001”,
“documentId”: “doc-001”,
“documentName”: “dni-doc-001-1673944146181”,
“result”: [
{
“pages”: [
1,
2
],
“categories”: [
{
“category”: “dni”,
“confidence”: 0.9998
},
{
“category”: “cuentaBancaria”,
“confidence”: 0.0001
},
{
“category”: “factura”,
“confidence”: 0
},
{
“category”: “libroFamilia”,
“confidence”: 0
},
{
“category”: “mail”,
“confidence”: 0
},
{
“category”: “impuestoSucesiones”,
“confidence”: 0
},
{
“category”: “herederosTestamento”,
“confidence”: 0
},
{
“category”: “ultimasVoluntades”,
“confidence”: 0
}
],
“data”: [
{
“key”: “nes”,
“value”: ,
“confidence”: 0
},
{
“key”: “nis”,
“value”: ,
“confidence”: 0
},
{
“key”: “numPolicy”,
“value”: ,
“confidence”: 0
},
{
“key”: “dnis”,
“value”: [
{
“side”: “BOTH”,
“number”: “24112207L”,
“name”: “SEXO”,
“surname”: “NARVAEZ FERNANDEZ ENCARNACION”,
“address”: “C. AGUSTINA ARAGON 14 D PO2 D”,
“locality”: “GRANADA”,
“province”: “GRANADA”,
“country”: “ESPAÑA”
}
],
“confidence”: 0.9
}
]
}
]
}
I’m trying with the following assign, but it’s returning an error… Any idea?
DNIjson(“result”)(0)(“data”).Where(Function (x) x(“key”).Value(of String).equals(“dnis”)).first()(“value”).toObject(Of String())