Determine Changes from Previous Baseline
To determine what’s changed from a previous baseline:
Retrieve a previous baseline for a specific project by specifying the projectId and the projectRunConfigurationId. For example:
GET /enterprise/accuracy/v1/Inspections?projectId=12345&projectRunConfigurationId=123456 HTTP/1.1
Retrieve the current baseline for the same project by specifying the project Id. For example:
GET /enterprise/accuracy/v1/Inspections?projectId=12345 HTTP/1.1
Programmatically determine the diff between the previous baseline and current baseline using any tool of your choice. Particularly useful is to identify data elements where the verified values date has changed between the previous and the current baseline. For example, in the following JSON code snippet taken from the previous baseline, verifiedValues for providerLanguages is null:
providerLanguages": {
"sourceValue": "",
"standardizedValue": null,
"verifiedValues": []
}
Whereas in the second snippet, verifiedValues has a value of English and an attestation date of January 8, 2023:
providerLanguages": {
"sourceValue": "",
"standardizedValue": null,
"verifiedValues": [
{
"value": "English",
"outcome": "Enriched",
"source": "BdxTruth",
"date": "2023-01-08T14:05:16.791Z"
}
]
}