No Action Required

The three scenarios in which no action is required are indicated by null values for sourceValue and/or verifiedValues, or by matching values for sourceValue and verifiedValues.

If there are no client-provided values and no inspector-discovered values, then the entire data element is null. For example:

"locationPhone": null

If client-provided values exist but data inspectors could not verify those values, then sourceValue is populated and verifiedValues is null. For example:

"locationPhone": { 
"sourceValue": "5104736707",
"standardizedValue": null,
"verifiedValues": []
}

If the client-provided values and the inspector-discovered values match, then sourceValue and verifiedValues match and “Valid” is returned in outcome. For example:

"locationPhone": { 
"sourceValue": "5107521000",
"standardizedValue": "5107521000",
"verifiedValues": [
{
"value": "5107521000",
"outcome": "Valid",
"source": "NppesTruth",
"date": "2022-11-01T00:00:00Z"
}
]
}