You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Custom breakdowns can be added to the breakdownResultOutputTypes property in shrine.conf. A new custom breakdown can be added by creating a new property inside breakdownResultOutputTypes and providing a description and category for the new breakdown. Here is an example of three custom breakdown configurations.

Example Custom Breakdowns
breakdownResultOutputTypes {
    PATIENT_TOP20MEDS_XML {
      description = "Top 20 Medications"
      category = "Medications"
    }

    PATIENT_LOS_XML {
      description = "Length of stay breakdown"
      category = "Visits"
    }

    PATIENT_INOUT_XML {
      description = "Inpatient and outpatient breakdown"
      category = "Visits"
    }
  }//breakdownResultOutputTypes
  • No labels