June 1, 2023

by Amna Hashmi

Zus is now live with a direct connection to Carequality! This direct connection will result in higher match rates across your patient population and more historical medical records matched per patient. You do no need to take any action to benefit from the direct Carequality connection.

May 5, 2023

by Max Tabachnik

Care teams can now view encounters and diagnostic reports (i.e., labs, imaging, clinical studies, etc.) from their organization and outside provider records in the new Timeline embeddable component. Learn more about the Timeline and the overall Zus component library.

May 2, 2023

by Max Tabachnik

Care teams can now view clinical documents from their organization and outside provider records in the new Documents embeddable component. These documents contain information that Zus has not yet incorporated into other embeddable UI components. Learn more about the Documents component and the overall Zus component library.

April 25th 2023

by Brian Marentay

Over the next several weeks, we will be making some changes to how third-party data is stored in order to enable greater interoperability and care coordination. As of today, medication history results from the Surescripts network will be written to the Zus Common Patient Record (CPR), enabling builders to access all available third party medication data within the Zus network for patients with whom they have an active treatment relationship. Zus application and data warehouse users will not need to make any changes to in order to benefit from this update. In FHIRplace, users can view available CPR resources by clicking the filter button next to a given patient.

If querying for third party resources directly via API, builders will need to search for resources by the universal identifier of the given patient in order to access results from third party sources.

https://api.zusapi.com/fhir/MedicationDispense?patient.identifier=https://zusapi.com/fhir/identifier/universal-id|{{universal ID}}

April 19, 2023

by Brian Marentay

The Patient History API will now allow a maximum of one patient-history refresh requests per patient per 13 day period. Multiple requests inside of this window will receive an HTTP 429 error (too many requests), with a Retry-After value included in the response header. Real-time medication, lab, and ADT alerts will not be impacted by this change, and will continue to provide real-time insight into the health of patients.

April 4, 2023

by Amna Hashmi

📆 Appointments and five other FHIR resource types now included in Data Marts.

Builders can now analyze Appointment, Consent, Device, DeviceUseStatement, FamilyMemberHistory, and Goal FHIR resource types. Please see the linked FHIR specification to understand what the resource types represent.

For example, suppose you want to identify which patients have had the most appointments in the last year. The query below will retrieve an ordered result set.

select 
    universal_patient_identifier,
    count(distinct id)
from appointment
where status != 'cancelled' 
and end >= dateadd(year, -1, current_date())
group by 1 
order by 2 desc;

March 29, 2023

by Amna Hashmi

Data is now continuously streamed to Snowflake data marts. The latest state of FHIR resources should be reflected in Snowflake data marts within one hour of the change in the Zus FHIR Store. Previously, Snowflake data marts were automatically refreshed 4 times a day.

March 27, 2023

by Brian Marentay

Filter by Patient in FHIRplace

Builders can now click the ⌯ Filter button next to any Patient resource to browse all available FHIR resources linked to that patient from across the Zus network. Once selected, the filter will apply across any resource list in FHIRplace, allowing you to view a streamlined list Medications, Conditions, and more!

You can view and clear the current filter at any time from the top left corner of any page

You can view and clear the current filter at any time from the top left corner of any page

Enabling a patient filter will also enable to access external FHIR resources sourced from other healthcare providers via the Zus Common Patient Record (CPR). You'll recognize CPR resources by the presence of a green lightning bolt after the resource name. Please note that certain features like version history and editing will not be available for these resources.