You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project should implement a command line tool in java, which evaluates FHIR data.
It takes a FHIR Measure resource as input, pages the necessary data from a FHIR server and then evaluates the data based on the Measure to finally create a FHIR MeasureReport.
The input Measure should look something like this:
Each group of the Measure will result in a group in the MeasureReport.
In a Group, the base population is specified with a fhir search query, that is send to a fhir server. Additional stratifiers can be specified, where again each stratifier in the Measure has one corresponding stratifier result in the MeasureReport.
A stratifier can have either a single criteria field, or multiple compontents which each have a criteria field. In that case, only those resources of the population are considered, that meet the criteria of all components.
Each stratifier of the MeasureReport then contains one stratum result that counts every unique value that is observed in the data that satisfy the stratifier.
The text was updated successfully, but these errors were encountered:
This project should implement a command line tool in java, which evaluates FHIR data.
It takes a FHIR Measure resource as input, pages the necessary data from a FHIR server and then evaluates the data based on the Measure to finally create a FHIR MeasureReport.
The input Measure should look something like this:
And the corresponding output MeasureReport could look like this:
Each group of the Measure will result in a group in the MeasureReport.
In a Group, the base population is specified with a fhir search query, that is send to a fhir server. Additional stratifiers can be specified, where again each stratifier in the Measure has one corresponding stratifier result in the MeasureReport.
A stratifier can have either a single criteria field, or multiple compontents which each have a criteria field. In that case, only those resources of the population are considered, that meet the criteria of all components.
Each stratifier of the MeasureReport then contains one stratum result that counts every unique value that is observed in the data that satisfy the stratifier.
The text was updated successfully, but these errors were encountered: