Skip to content

v2.169.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 09 Dec 19:08
· 5 commits to master since this release

What's Changed

Full Changelog: 2.168.0...2.169.0

Additional Release Notes

This release upgrades HAPI FHIR from 7.4 to 7.6 which includes some minor changes to the API responses. For V1 endpoints only, ID numbers used to reference elements within the FHIR response have changed from numeric strings to UUIDs. This is only applicable to intra-document ID links, not IDs that reference a separate resource.

Before:

{
    "resourceType" : "Observation",
    "id" : "4",
    "status" : "unknown"
}

After:

{
    "resourceType" : "Observation",
    "id" : "b01e2264-1327-4d53-a62b-c6986494095e",
    "status" : "unknown"
}

Corresponding reference fields are also changed to match this format:

Before:

{
    "url" : "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num",
    "valueReference" : {
         "reference" : "#2"
    }
}

After:

{
    "url" : "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num",
    "valueReference" : {
         "reference" : "#ea66ac63-d00b-4cc0-b155-4e533d22ceb2"
    }
}