openehr Querying for secondary uses Ian McNicoll

Size: px
Start display at page:

Download "openehr Querying for secondary uses Ian McNicoll"

Transcription

1 openehr Querying for secondary uses Ian McNicoll

2 Example AQL All Nursing reports during this admission with a clinical synopsis record SELECT c FROM EHR[ehr_id/value='a4a3f0c8-254a-49a5-97dd-784d50c46b78'] CONTAINS Composition c[openehr-ehr-composition.encounter.v1] CONTAINS Evaluation e[openehr-ehr- EVALUATION.clinical_synopsis.v1] WHERE c/name/value matches {'Summary report'} AND c/context/start_time >= ' T ' AND c/context/start_time < ' T '

3 SELECT com0/context/start_time/value as START_DATE, Vital Signs chart obs1/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/magnitude as SYSTOLIC, obs1/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/magnitude as DIASTOLIC, obs3/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude as PULSE_RATE, obs4/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude as RESPIRATORY_RATE, obs6/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value as SPO2_PROPORTION, obs7/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value as BODY_TEMPERATURE_QUANTITY FROM EHR e[ehr_id/value='a4a3f0c8-254a-49a5-97dd-784d50c46b78'] CONTAINS COMPOSITION com0 [openehr-ehr-composition.encounter.v1] CONTAINS (OBSERVATION obs7 [openehr-ehr-observation.body_temperature-zn.v1] OR OBSERVATION obs3 [openehr-ehr-observation.heart_rate-pulse-zn.v1] OR OBSERVATION obs1 [openehr-ehr-observation.blood_pressure-zn.v1] OR OBSERVATION obs6 [openehr-ehr-observation.indirect_oximetry.v1] OR OBSERVATION obs4 [openehr-ehr-observation.respiration.v1]) WHERE com0/name/value matches {'Vital functions', 'Respiratory assessment'} AND com0/context/start_time >= ' T ' AND com0/context/start_time >= ' T '

4 Basic principle You can never guess how the data will be queried or what purpose it will be put to Make it as open (queryable) as possible even if you think it only has one use when you design it

5 Scenario 1 Get the number of all patients with diabetes who have HbA1c results greater than 7.0 in last 12 months.

6 Scenario 1 SELECT COUNT(e/ehr_id) FROM EHR e CONTAINS (COMPOSITION c [openehr-ehr- COMPOSITION.problem_list.v1] CONTAINS EVALUATION e [openehr-ehr-evaluation.problemdiagnosis.v1] AND COMPOSITION c1 [openehr-ehr-composition.report.v1] CONTAINS OBSERVATION o [openehr-ehr-observation.laboratoryhba1c.v1]) WHERE e/data/items[at0002.1]/value/value= diabetes mellitus AND c1/context/other_context/items[at0006]/items[at0013]/value > current-date() -P1Y AND o/data/events[at0002]/data/items[at0013.1]/value/numerator > 7

7 Scenario 2 Get all HbA1c observations that have been done in the last 12 months for a specific patient.

8 Scenario 2 SELECT o FROM EHR e[ehr_id=$ehrid] CONTAINS COMPOSITION c [openehr-ehr-composition.report.v1] CONTAINS OBSERVATION o [openehr-ehr-observation.laboratoryhba1c.v1] WHERE c/context/other_context[at0001]/items[at0006]/ items[at0013]/value > current-date()-1py

9 Scenario 3 Get a patient s current medication list

10 SELECT c Scenario 3 FROM EHR e[ehr_id=$ehrid] CONTAINS COMPOSITION c [openehr-ehr- COMPOSITION.medication_list.v1] WHERE c/name/value= current medication list

11 TIMEWINDOW Constrain the query source to data committed to the system before : TIMEWINDOW / Constrain the query source to data committed within the period of two years before : TIMEWINDOW P2Y/

12 AQL Queries are portable The one query will work the same way in any openehr system that uses archetypes unlike existing database queries that are dependent on the local database schema. This means they can be shared among decision support tools e.g. a query to detect risk of heart attack, based on history of BP, smoking, exercise, other conditions

13 Querying with Terminology SELECT o/data[at0002]/events[at0003]/data/items[at0015]/it ems[at0018]/name FROM Ehr [uid=$ehruid] CONTAINS Composition c CONTAINS Observation o[openehr-ehr- OBSERVATION.microbiology.v1] WHERE o/data[at0002]/events[at0003]/data/items[at0015]/it ems[at0018]/items[at0019]/items[at0021]/name/defi ning_code/code_string matches {' ', ' ', ' '}

14 Querying with Terminology SELECT e/ehr_status/subject/external_ref/id/value, diagnosis/data/items[at0002.1]/value FROM EHR e CONTAINS Composition c[openehr- EHR-COMPOSITION.problem_list.v1] CONTAINS Evaluation diagnosis [openehr-ehr- EVALUATION.problem-diagnosis.v1] WHERE c/name/value='current Problems' AND diagnosis /data/items[at0002.1]/value/defining_code matches { terminology://snomed- CT/hierarchy?rootConceptId= }

15 Research Query: demographic QUERY as Summary_Query_Report1 SELECT dataset, demo FROM EHR e CONTAINS COMPOSITION dataset[openehr-ehr- COMPOSITION.data_set.v1] AND COMPOSITION demo[openehr-ehr-composition.data_set.v1] WHERE demo/name/value='baseline_demographic' AND dataset/archetype_details/template_id/value='baseline_health VIEW TABLE as Summary_Query_Report1 Maps demo to baseline_demographic, dataset to baseline_health SELECT dataset.asthm_flg, demo.sex_cde, demo.cob_cde, demo.atndage_ord

16 Mappings in template <map alias="h2_id" template_path="/context/other_context[at000 1]/items[at0011 and name/defining_code/code_string='at0012']/v alue" /> <map alias="sex_cde" template_path="/content[openehr-ehr- ADMIN_ENTRY.demographics_ccv.v1 and name/value='demographics (CCV)']/data[at0001]/items[at0095 and name/value='individual']/items[at0065]/items [at0011]/value" />

17 Result: Stata output

18 Result: openehr data

19 Research Query: Breast cancer QUERY as cancer_breast SELECT e/ehr_id/value as ehr_id, composition FROM EHR e CONTAINS COMPOSITION composition[openehr-ehr- COMPOSITION.data_set.v1] WHERE composition/archetype_details/template_id/value='canc er_breast' VIEW TABLE as cancer_breast MAPS composition to cancer_breast SELECT ehr_id, composition.*

20 Result: Stata output

21 Result: openehr data

Introduction to openehr Archetypes & Templates. Dr Ian McNicoll Dr Heather Leslie

Introduction to openehr Archetypes & Templates. Dr Ian McNicoll Dr Heather Leslie Introduction to openehr Archetypes & Templates Dr Ian McNicoll Dr Heather Leslie Traditional Application Development Clinical Knowledge Data Model Ocean Informatics 2010 Tradi&onal Informa&on model 2 level

More information

HL7 CDA, Clinical Modelling and openehr

HL7 CDA, Clinical Modelling and openehr HL7 CDA, Clinical Modelling and openehr Thomas Beale NHS Scotland, February 2007 Thomas Beale Introductions Chief Technology Officer Ocean Informatics Senior Researcher, Centre for Health Informatics,

More information

The Electronic Health Record Why is it still so hard?

The Electronic Health Record Why is it still so hard? The Electronic Health Record Why is it still so hard? Dr Ian McNicoll Clinical Analyst Ocean Informatics Editor openehr Clinical Knowledge Manager Cape Town MEDINFO Sept 2010 Agenda 0900-0945 Why is the

More information

openehr The Reference Model Thomas Beale Sam Heard

openehr The Reference Model Thomas Beale Sam Heard openehr The Reference Model Thomas Beale Sam Heard 1:N openehr Semantic architecture Screen Forms Messages 1:N Reports Templates Data conversion schemas 1:N Archetypes Terminology interface Terminologies

More information

Creating application interfaces for legacy systems. Clinical-driven EHRs the openehr approach. Health Informatics Group - http://cintesis.med.up.

Creating application interfaces for legacy systems. Clinical-driven EHRs the openehr approach. Health Informatics Group - http://cintesis.med.up. Clinical-driven EHRs the openehr approach Legacy systems and what is special about them Problems with what data really means Creating application interfaces for legacy systems Compreension of collected

More information

Electronic Health Records: An introduction to openehr and archetypes

Electronic Health Records: An introduction to openehr and archetypes Electronic Health Records: An introduction to openehr and archetypes Dr. Sebastian Garde CCR Workshop Munich 29 th April 2008 Expectations Timely information and reports for ALL professions with a minimum

More information

8th Medical Open Source Software Symposium

8th Medical Open Source Software Symposium 8th Medical Open Source Software Symposium openehr as A New Approach to Electronic Health Record System in Cambodia Maternity Care Program Kakada Hok 2009.10.31 1 Objectives of the Research Study To identify

More information

DIPS Arena New Archetype-based EHR. Sigurd From, DIPS ASA

DIPS Arena New Archetype-based EHR. Sigurd From, DIPS ASA DIPS Arena New Archetype-based EHR Sigurd From, DIPS ASA The largest EHR vendor in Norway Product areas Clinical Process Support - EHR Administative Process Support Medical Services & Integration Main

More information

Templates and Archetypes: how do we know what we are talking about?

Templates and Archetypes: how do we know what we are talking about? Templates and Archetypes: how do we know what we are talking about? Sam Heard, Thomas Beale, Gerard Freriks, Angelo Rossi Mori, Ognian Pishev Version 1.2, 12th February 2003 This discussion paper is addressed

More information

Tackling the Semantic Interoperability challenge

Tackling the Semantic Interoperability challenge European Patient Summaries: What is next? Tackling the Semantic Interoperability challenge Dipak Kalra Cross-border health care The context for sharing health summaries Also useful for within-border health

More information

The next generation EHR

The next generation EHR The next generation EHR European EHR standard OpenEHR Ocean Informatics Gerard Freriks v1 7-11-2007 Electronic Patient Record What do we expect? We need and expect EHR-systems that: 2 Electronic Patient

More information

CDS Starter Kit: Diabetes f ollow-up care

CDS Starter Kit: Diabetes f ollow-up care CDS Starter Kit: Diabetes f ollow-up care Introduction The delivery of high-quality diabetes care is a complex process that requires a provider to consider many pieces of patient information and treatment

More information

VCH PHCTF EVALUATION CORE INDICATORS, DATA COLLECTION PROCESSES, TOOLS & TARGETS

VCH PHCTF EVALUATION CORE INDICATORS, DATA COLLECTION PROCESSES, TOOLS & TARGETS OVERVIEW In alignment with VCH PHCTF deliverables, there is general agreement that our teams use the following core evaluation indicators and evaluation processes to move closer to the proposed targets

More information

2013 ACO Quality Measures

2013 ACO Quality Measures ACO 1-7 Patient Satisfaction Survey Consumer Assessment of HealthCare Providers Survey (CAHPS) 1. Getting Timely Care, Appointments, Information 2. How well Your Providers Communicate 3. Patient Rating

More information

Standardised and Flexible Health Data Management with an Archetype Driven EHR System (EHRflex)

Standardised and Flexible Health Data Management with an Archetype Driven EHR System (EHRflex) Standardised and Flexible Health Data Management with an Archetype Driven EHR System (EHRflex) Anton Brass 1, David Moner 2, Claudia Hildebrand 1, Montserrat Robles 2 1 Helmholtz Zentrum München, Germany

More information

Using Archetypes with HL7 Messages and Clinical Documents. Heath Frankel HL7 Working Group Meeting 14 January 2011

Using Archetypes with HL7 Messages and Clinical Documents. Heath Frankel HL7 Working Group Meeting 14 January 2011 Using Archetypes with HL7 Messages and Clinical Documents Heath Frankel HL7 Working Group Meeting 14 January 2011 Ocean Informatics 2011 Template Data Schema (TDS) XML Schema representation of a clinical

More information

Price Transparency Attestation emr4md version 9.7 09/03/2014

Price Transparency Attestation emr4md version 9.7 09/03/2014 Price Transparency Attestation emr4md version 9.7 09/03/2014 mednetmedical.com 1 Price Transparency Attestation Company Name: MedNet Medical Solutions Product Name: emr4md Version #: 9.7 mednetmedical.com

More information

Kaiser Permanente: Health Education. Mei Ling Schwartz, MPH Director, Health & Physician Education Kaiser Permanente Panorama City Medical Center

Kaiser Permanente: Health Education. Mei Ling Schwartz, MPH Director, Health & Physician Education Kaiser Permanente Panorama City Medical Center Kaiser Permanente: Health Education Mei Ling Schwartz, MPH Director, Health & Physician Education Kaiser Permanente Panorama City Medical Center Who Is Kaiser Permanente? Founded in 1945, Kaiser Permanente

More information

European Quality Labelling, Certification, Electronic Health Record systems (EHRs) gf v1

European Quality Labelling, Certification, Electronic Health Record systems (EHRs) gf v1 European Quality Labelling, Certification, Electronic Health Record systems (EHRs) gf v1 EuroRec: current standing on EHR certification in Europe AGENDA 1. The EuroRec Institute 2. EHR-systems Certification:

More information

Open Source Modular Units for Electronic Patient Records. Hari Kusnanto Faculty of Medicine, Gadjah Mada University

Open Source Modular Units for Electronic Patient Records. Hari Kusnanto Faculty of Medicine, Gadjah Mada University Open Source Modular Units for Electronic Patient Records Hari Kusnanto Faculty of Medicine, Gadjah Mada University Open Source Initiatives in Patient Information System electronic health records, scheduling

More information

11/2/2015 Domain: Care Coordination / Patient Safety

11/2/2015 Domain: Care Coordination / Patient Safety 11/2/2015 Domain: Care Coordination / Patient Safety 2014 CT Commercial Medicaid Compared to 2012 all LOB Medicaid Quality Compass Benchmarks 2 3 4 5 6 7 8 9 10 Documentation of Current Medications in

More information

Medicare Shared Savings Program Quality Measure Benchmarks for the 2015 Reporting Year

Medicare Shared Savings Program Quality Measure Benchmarks for the 2015 Reporting Year Medicare Shared Savings Program Quality Measure Benchmarks for the 2015 Reporting Year Release Notes/Summary of Changes (February 2015): Issued correction of 2015 benchmarks for ACO-9 and ACO-10 quality

More information

Archetype-Based Knowledge Management for Semantic Interoperability of Electronic Health Records

Archetype-Based Knowledge Management for Semantic Interoperability of Electronic Health Records Medical Informatics in a United and Healthy Europe K.-P. Adlassnig et al. (Eds.) IOS Press, 2009 2009 European Federation for Medical Informatics. All rights reserved. doi:10.3233/978-1-60750-044-5-1007

More information

MISSING DATA ANALYSIS AMONG PATIENTS IN THE PINNACLE REGISTRY

MISSING DATA ANALYSIS AMONG PATIENTS IN THE PINNACLE REGISTRY MISSING DATA ANALYSIS AMONG PATIENTS IN THE PINNACLE REGISTRY In order to improve the efficiency of PINNACLE Registry data analytics, a missing data analysis has been conducted on PINNACLE Registry data

More information

A Metabolic Syndrome Health Check EHR based on openehr

A Metabolic Syndrome Health Check EHR based on openehr Seagaia Meeting 2009, Okinawa A Metabolic Syndrome Health Check EHR based on openehr 2009/05/15 早 稲 田 大 学 国 際 情 報 通 信 研 究 科 Waseda University, GITS Kano Lab Hsu WanYen (Nora) 徐 婉 晏 1 Research Background

More information

Total Health Quality Indicators For Providers 2015

Total Health Quality Indicators For Providers 2015 Total Health Quality Indicators For Providers 2015 Adult- Preventive Measure Test/Procedure Parameters Frequency CPT/HCPCS CPT II ICD-9 BMI Assessment BMI Recording 18-74 yrs Yearly G8417, G8418, G8420

More information

The HL7 CIMI Workgroup: Creating Detailed Clinical Models to Support FHIR Interoperability. HIMSS March 2, 2016 Las Vegas Stanley M.

The HL7 CIMI Workgroup: Creating Detailed Clinical Models to Support FHIR Interoperability. HIMSS March 2, 2016 Las Vegas Stanley M. The HL7 CIMI Workgroup: Creating Detailed Clinical Models to Support FHIR Interoperability HIMSS March 2, 2016 Las Vegas Stanley M. Huff, MD Current Situation Each EHR vendor uses a proprietary database

More information

InteGreat EHR Meaningful Use 2 Features and Reports Jenni Walters, Sr. Business Analyst, McKesson Beth Crews, Business Analyst, McKesson

InteGreat EHR Meaningful Use 2 Features and Reports Jenni Walters, Sr. Business Analyst, McKesson Beth Crews, Business Analyst, McKesson InteGreat EHR Meaningful Use 2 Features and Reports Jenni Walters, Sr. Business Analyst, McKesson Beth Crews, Business Analyst, McKesson Stage 2 Overview On September 4, 2012, CMS published final rule

More information

emeasure Development: Priorities, Methods, and Opportunities Phyllis Torda, MA and Aldo Tinoco, MD, MPH

emeasure Development: Priorities, Methods, and Opportunities Phyllis Torda, MA and Aldo Tinoco, MD, MPH emeasure Development: Priorities, Methods, and Opportunities Phyllis Torda, MA and Aldo Tinoco, MD, MPH DISCLAIMER: The views and opinions expressed in this presentation are those of the author and do

More information

Clinical Decision Support: The Basics

Clinical Decision Support: The Basics Clinical Decision Support: The Basics REACH - Achieving - Achieving meaningful meaningful use of your use EHR of your EHR Paul Kleeberg, MD, FAAFP, FHIMSS CMIO Stratis Health Minnesota e-health Advisory

More information

Application for Demonstrating at California Connects 2014

Application for Demonstrating at California Connects 2014 Application for Demonstrating at California Connects 2014 This document collects critical information for each proposed demonstration at the 2014 California Connects Interoperability Exhibition, to be

More information

Demonstration Study of Healthcare Utilization by Obese Patients. Joseph Vasey PhD Director, Epidemiology Quintiles Outcome May 22, 2013

Demonstration Study of Healthcare Utilization by Obese Patients. Joseph Vasey PhD Director, Epidemiology Quintiles Outcome May 22, 2013 Demonstration Study of Healthcare Utilization by Patients Joseph Vasey PhD Director, Epidemiology Quintiles Outcome May 22, 2013 Copyright 2013 Quintiles Revised April 2013 Introduction Obesity in the

More information

ACO Name and Location Allina Health Minneapolis, Minnesota

ACO Name and Location Allina Health Minneapolis, Minnesota ACO Name and Location Allina Health Minneapolis, Minnesota ACO Primary Contact Patrick Flesher Director, Payer Contracting & Pioneer ACO Program Email: Patrick.Flesher@allina.com Phone: 612-262-4865 Composition

More information

Distributed Networking

Distributed Networking Distributed Networking Millions of people. Strong collaborations. Privacy first. Jeffrey Brown, Lesley Curtis, Richard Platt Harvard Pilgrim Health Care Institute and Harvard Medical School Duke Medical

More information

Meaningful Use Stage 2 Update: Deploying SNOMED CT to provide decision support in the EHR

Meaningful Use Stage 2 Update: Deploying SNOMED CT to provide decision support in the EHR Meaningful Use Stage 2 Update: Deploying SNOMED CT to provide decision support in the EHR James R. Campbell MD University of Nebraska Medical Center Implementation Showcase October 31, 2014 Disclosure

More information

Medicare Shared Savings Program Quality Measure Benchmarks for the 2014 Reporting Year

Medicare Shared Savings Program Quality Measure Benchmarks for the 2014 Reporting Year Medicare Shared Savings Program Quality Measure Benchmarks for the 2014 Reporting Year Release Notes/Summary of Changes (February 2015): Issued correction of 2014 benchmarks for ACO-9 and ACO-10 quality

More information

Beacon User Stories Version 1.0

Beacon User Stories Version 1.0 Table of Contents 1. Introduction... 2 2. User Stories... 2 2.1 Update Clinical Data Repository and Disease Registry... 2 2.1.1 Beacon Context... 2 2.1.2 Actors... 2 2.1.3 Preconditions... 3 2.1.4 Story

More information

Comprehensive Primary Care (CPC) Assessment

Comprehensive Primary Care (CPC) Assessment Comprehensive Primary Care (CPC) Assessment Meaningful Use: The Building Block for CPC By Denise Anderson, Ph.D. NJ-HITEC February, 2013 The Centers for Medicare and Medicaid Services (CMS) jump-started

More information

Techniques for ensuring interoperability in an Electronic health Record

Techniques for ensuring interoperability in an Electronic health Record Techniques for ensuring interoperability in an Electronic health Record Author: Ovidiu Petru STAN 1. INTRODUCTION Electronic Health Records (EHRs) have a tremendous potential to improve health outcomes

More information

Healthcare Data: Secondary Use through Interoperability

Healthcare Data: Secondary Use through Interoperability Healthcare Data: Secondary Use through Interoperability Floyd Eisenberg MD MPH July 18, 2007 NCVHS Agenda Policies, Enablers, Restrictions Date Re-Use Landscape Sources of Data for Quality Measurement,

More information

Ohio Health Homes Learning Community Meeting. Overview of Health Homes Measures

Ohio Health Homes Learning Community Meeting. Overview of Health Homes Measures Ohio Health Homes Learning Community Meeting Overview of Health Homes Measures Tuesday, March 5, 2013 Presenter: Amber Saldivar, MHSM Associate Director, Informatics Analysis Health Services Advisory Group,

More information

GE Healthcare. Operating New Features in Centricity EMR v9.8

GE Healthcare. Operating New Features in Centricity EMR v9.8 GE Healthcare Operating New Features in Centricity EMR v9.8 Geoff Lay, Product Manager Nicole Echorst, Clinical Applications Specialist February 27, 2014 2014 General Electric Company All rights reserved.

More information

Data Driven Approaches to Prescription Medication Outcomes Analysis Using EMR

Data Driven Approaches to Prescription Medication Outcomes Analysis Using EMR Data Driven Approaches to Prescription Medication Outcomes Analysis Using EMR Nathan Manwaring University of Utah Masters Project Presentation April 2012 Equation Consulting Who we are Equation Consulting

More information

Electronic Health Record Strategies for Pay for Performance. James O Connor MD Director of Clinical Informatics

Electronic Health Record Strategies for Pay for Performance. James O Connor MD Director of Clinical Informatics Electronic Health Record Strategies for Pay for Performance This Title is Copy where the title would go. James O Connor MD Director of Clinical Informatics Early Days of EMR... Access to Records E&M Coding

More information

The value MIE delivers can be summed up in two words:

The value MIE delivers can be summed up in two words: The value MIE delivers can be summed up in two words: minimally TM invasive EHR WebChart EHR Portfolio minimally invasive TM Philosophy The MIE architecture was built to have a minimally invasive impact

More information

Comparing Different Approaches to Two-Level Modelling of Electronic Health Records

Comparing Different Approaches to Two-Level Modelling of Electronic Health Records 113 Comparing Different Approaches to Two-Level Modelling of Electronic Health Records Line Michelsen, Signe S. Pedersen, Helene B. Tilma, Stig K. Andersen Abstract Department of Health Science and Technology

More information

Welcome UDS Review for Intergy CHC Jeff Urkevich Director of Health Solutions Health Choice Network

Welcome UDS Review for Intergy CHC Jeff Urkevich Director of Health Solutions Health Choice Network Welcome UDS Review for Intergy CHC Jeff Urkevich Director of Health Solutions Health Choice Network 1 Agenda Welcome Where is the UDS data Intergy POMIS Intergy EHR Practice Analytics cross walk Basic

More information

Data, Outcomes and Population Health Management. CPPEG January 2016

Data, Outcomes and Population Health Management. CPPEG January 2016 Data, Outcomes and Population Health Management CPPEG January 216 NHS Outcomes Framework There are national outcome measures which the CCG is held to account on. In conjunction to monitoring these the

More information

Electronic Health Record (EHR) Standards Survey

Electronic Health Record (EHR) Standards Survey Electronic Health Record (EHR) Standards Survey Compiled by: Simona Cohen, Amnon Shabo Date: August 1st, 2001 This report is a short survey about the main emerging standards that relate to EHR - Electronic

More information

Data modelling methods in clinical trials: Experiences from the CTMND project (ctmnd.org)

Data modelling methods in clinical trials: Experiences from the CTMND project (ctmnd.org) Data modelling methods in clinical trials: Experiences from the CTMND project (ctmnd.org) Athanasios Anastasiou, Emmanuel Ifeachor, John Zajicek & the CTMND Consortium University of Plymouth Peninsula

More information

EHR Standards Landscape

EHR Standards Landscape EHR Standards Landscape Dr Dipak Kalra Centre for Health Informatics and Multiprofessional Education (CHIME) University College London d.kalra@chime.ucl.ac.uk A trans-national ehealth Infostructure Wellness

More information

Demonstrating Meaningful Use Stage 1 Requirements for Eligible Providers Using Certified EMR Technology

Demonstrating Meaningful Use Stage 1 Requirements for Eligible Providers Using Certified EMR Technology Demonstrating Meaningful Use Stage 1 Requirements for Eligible Providers Using Certified EMR Technology The chart below lists the measures (and specialty exclusions) that eligible providers must demonstrate

More information

Continuity of Care Guide for Ambulatory Medical Practices

Continuity of Care Guide for Ambulatory Medical Practices Continuity of Care Guide for Ambulatory Medical Practices www.himss.org t ra n sf o r m i ng he a lth c a re th rou g h IT TM Table of Contents Introduction 3 Roles and Responsibilities 4 List of work/responsibilities

More information

Design of Modern Mobile Devices based on Medical Information Interchange Standards Med e Tel, 2015 Luxembourg

Design of Modern Mobile Devices based on Medical Information Interchange Standards Med e Tel, 2015 Luxembourg D. Tcharaktchiev University Hospital of Endocrinology, Sofia, Bulgaria I. E. Ivanov, V. Gueorguiev Technical University Sofia, Bulgaria D. V. Georgieva 4New Bulgarian University, Bulgaria Design of Modern

More information

EHRs Can Place Excessive Data Entry Burden on Physicians

EHRs Can Place Excessive Data Entry Burden on Physicians EHRs Can Place Excessive Data Entry Burden on Physicians Required Structured Data Only Small Percentage of Typical Patient te JOHNSON CITY, Tenn., Oct. 7, 2014 /PRNewswire/ -- A new study by WebChartMD

More information

SNOMED CT in the EHR Present and Future. with the patient at the heart

SNOMED CT in the EHR Present and Future. with the patient at the heart SNOMED CT in the EHR Present and Future ` SNOMED CT in the EHR Present and Future Christopher Alban, MD Epic Systems Corporation Objectives Describe the use of SNOMED CT to enable decision support, analytics,

More information

Contra Cost Health Plan Quality Program Summary November, 2013

Contra Cost Health Plan Quality Program Summary November, 2013 Contra Cost Health Plan Quality Program Summary November, 2013 Mission Statement: Contra Costa Health Plan, along with our community and county health care providers, is committed to ensure our diverse

More information

Health Informatics Standardisation - educational, informative and normative

Health Informatics Standardisation - educational, informative and normative Health Informatics Standardisation - educational, informative and normative William Grimson, Chair: NSAI s Health Informatics Standards Consultative committee What do you observe? What do you observe?

More information

Improving EHR Semantic Interoperability Future Vision and Challenges

Improving EHR Semantic Interoperability Future Vision and Challenges Improving EHR Semantic Interoperability Future Vision and Challenges Catalina MARTÍNEZ-COSTA a,1 Dipak KALRA b, Stefan SCHULZ a a IMI,Medical University of Graz, Austria b CHIME, University College London,

More information

Electronic Health Records and Quality Metrics Using the right expertise to make full and meaningful use of your EHR investment

Electronic Health Records and Quality Metrics Using the right expertise to make full and meaningful use of your EHR investment Electronic Health Records and Quality Metrics Using the right expertise to make full and meaningful use of your EHR investment October 2014 402 Lippincott Drive Marlton, NJ 08053 856.782.3300 www.challc.net

More information

Home Health Care Today: Higher Acuity Level of Patients Highly skilled Professionals Costeffective Uses of Technology Innovative Care Techniques

Home Health Care Today: Higher Acuity Level of Patients Highly skilled Professionals Costeffective Uses of Technology Innovative Care Techniques Comprehensive EHR Infrastructure Across the Health Care System The goal of the Administration and the Department of Health and Human Services to achieve an infrastructure for interoperable electronic health

More information

Embedding Guidance in the Kaiser Permanente EHR. Wiley Chan, MD Kaiser Permanente Care Management Institute Oakland, CA, USA

Embedding Guidance in the Kaiser Permanente EHR. Wiley Chan, MD Kaiser Permanente Care Management Institute Oakland, CA, USA Embedding Guidance in the Kaiser Permanente EHR Wiley Chan, MD Kaiser Permanente Care Management Institute Oakland, CA, USA Statement of Disclosure Wiley Chan, MD I have no commercial or academic conflicts

More information

Integration Information Model

Integration Information Model Release 1.0.1 The openehr Reference Model a. Ocean Informatics Editors: T Beale a Revision: 0.6 Pages: 15 Date of issue: 22 Jul 2006 Keywords: EHR, reference model, integration, EN13606, openehr EHR Extract

More information

Diabetes. C:\Documents and Settings\wiscs\Local Settings\Temp\Diabetes May02revised.doc Page 1 of 12

Diabetes. C:\Documents and Settings\wiscs\Local Settings\Temp\Diabetes May02revised.doc Page 1 of 12 Diabetes Introduction The attached paper is adapted from the initial background paper on Diabetes presented to the Capital and Coast District Health Board Community and Public Health Advisory Committee

More information

Electronic Health Record Systems and Secondary Data Use

Electronic Health Record Systems and Secondary Data Use Electronic Health Record Systems and Secondary Data Use HCQI Expert Group Meeting 10 May 2012 Jillian Oderkirk OECD/HD Background and Needs The 2010 Health Ministerial Communiqué noted that health care

More information

Navigate Nursing Webinars

Navigate Nursing Webinars Navigate Nursing Webinars Navigating Meaningful Use: What it Means for Your Practice June 18, 2014 Thank you for joining us. The webinar will begin shortly! Judith J. Warren, PhD, RN, FAAN, FACMI Consultant,

More information

Mid-Hudson Adherence to Antipsychotic Medications for People Living With Schizophrenia

Mid-Hudson Adherence to Antipsychotic Medications for People Living With Schizophrenia Adherence to Antipsychotic Medications for People Living With Schizophrenia 83 81 71 70 68 68 66 71 A. Behavioral Health 880 151 396 134 325 41 317 65 63 The percentage of recipients living with schizophrenia,

More information

1. How are you using health IT enabled clinical quality measures for internal quality improvement efforts and patients care?

1. How are you using health IT enabled clinical quality measures for internal quality improvement efforts and patients care? 1. How are you using health IT enabled clinical quality measures for internal quality improvement efforts and patients care? Sharp Rees-Stealy medical group (SRSMG), a 400-physician multispecialty group

More information

Summary of Benefits and Coverage under Health Care Reform

Summary of Benefits and Coverage under Health Care Reform Summary of Benefits and Coverage under Health Care Reform This is just one example of the many online resources Practical Law Company offers. PLC Employee Benefits & Executive Compensation This Note provides

More information

Clinical Knowledge Manager. Product Description 2012 MAKING HEALTH COMPUTE

Clinical Knowledge Manager. Product Description 2012 MAKING HEALTH COMPUTE Clinical Knowledge Manager Product Description 2012 MAKING HEALTH COMPUTE Cofounder and major sponsor Member and official submitter for HL7/OMG HSSP RLUS, EIS 'openehr' is a registered trademark of the

More information

The Triple Aim. Two System Changes. PCMH Short Definition. Doctors Employed by Hospitals Exceed 100,000

The Triple Aim. Two System Changes. PCMH Short Definition. Doctors Employed by Hospitals Exceed 100,000 Doctors Employed by Hospitals Exceed 100,000 You May Be Hiring Physicians Is Your Primary Care Strategy Successful? 2004 64, 392 full time physicians were employed by hospitals In 2011 More than 100,000

More information

Enabling medical research on clinically collected data using openehr archetypes

Enabling medical research on clinically collected data using openehr archetypes FACULTY OF SCIENCE AND TECHNOLOGY DEPARTMENT OF COMPUTER SCIENCE Enabling medical research on clinically collected data using openehr archetypes Leykun Melkamu Gebeyehu INF-3997 Master's Thesis in Telemedicine

More information

A Population Health Management Approach in the Home and Community-based Settings

A Population Health Management Approach in the Home and Community-based Settings A Population Health Management Approach in the Home and Community-based Settings Mark Emery Linda Schertzer Kyle Vice Charles Lagor Philips Home Monitoring Philips Healthcare 2 Executive Summary Philips

More information

The EHR and Clinical Archetypes: time for clinical engagement!

The EHR and Clinical Archetypes: time for clinical engagement! ehealth Planning and Management Symposium 2008 The EHR and Clinical Archetypes: time for clinical engagement! Dr Dipak Kalra and Dr Archana Tapuria Centre for Health Informatics and Multiprofessional Education

More information

The Role of Health Information Technology in Improving Health Care

The Role of Health Information Technology in Improving Health Care The Role of Health Information Technology in Improving Health Care The HIT Symposium Massachusetts Institute of Technology July 1, 2009 Michael T. Rapp, MD, JD, FACEP Director, Quality Measurement and

More information

I n t e r S y S t e m S W h I t e P a P e r F O R H E A L T H C A R E IT E X E C U T I V E S. In accountable care

I n t e r S y S t e m S W h I t e P a P e r F O R H E A L T H C A R E IT E X E C U T I V E S. In accountable care I n t e r S y S t e m S W h I t e P a P e r F O R H E A L T H C A R E IT E X E C U T I V E S The Role of healthcare InfoRmaTIcs In accountable care I n t e r S y S t e m S W h I t e P a P e r F OR H E

More information

Survey on Coding Quality Measurement: Hospital Inpatient Acute Care

Survey on Coding Quality Measurement: Hospital Inpatient Acute Care Survey on Coding Quality Measurement: Hospital Inpatient Acute Care In November 2007, the AHIMA e-him Quality Work Group on Coding Performance Measures and the Foundation of Research and Education (FORE)

More information

Meaningful Use - HL7 Version 2

Meaningful Use - HL7 Version 2 Meaningful Use - HL7 Version 2 HL7 Version 2 and Surveillance Your Ambassadors Today Anna Orlova, PhD, Executive Director, Public Health Data Standards Consortium and Johns Hopkins University Lori Reed-Fourquet,

More information

Physician and other health professional services

Physician and other health professional services O n l i n e A p p e n d i x e s 4 Physician and other health professional services 4-A O n l i n e A p p e n d i x Access to physician and other health professional services 4 a1 Access to physician care

More information

OPTIMIZING THE USE OF YOUR ELECTRONIC HEALTH RECORD. A collaborative training offered by Highmark and the Pittsburgh Regional Health Initiative

OPTIMIZING THE USE OF YOUR ELECTRONIC HEALTH RECORD. A collaborative training offered by Highmark and the Pittsburgh Regional Health Initiative OPTIMIZING THE USE OF YOUR ELECTRONIC HEALTH RECORD A collaborative training offered by Highmark and the Pittsburgh Regional Health Initiative Introductions Disclosures Successful completion of training

More information

National Diabetes Audit 2013-2014 and 2014-2015 Report 1: Care Processes and Treatment Targets. Version 1.0 Published: 28 January 2016

National Diabetes Audit 2013-2014 and 2014-2015 Report 1: Care Processes and Treatment Targets. Version 1.0 Published: 28 January 2016 National Diabetes Audit 2013-2014 and 2014-2015 Report 1: Care Processes and Treatment Targets Version 1.0 Published: 28 January 2016 Introduction The National Diabetes Audit (NDA) continues to provide

More information

Coventry Health Care of Florida, Inc. Coventry Health Plan of Florida, Inc. Coventry Health and Life Insurance Company Commercial Lines of Business

Coventry Health Care of Florida, Inc. Coventry Health Plan of Florida, Inc. Coventry Health and Life Insurance Company Commercial Lines of Business Coventry Health Care of Florida, Inc. Coventry Health Plan of Florida, Inc. Coventry Health and Life Insurance Company Commercial Lines of Business Quality Management Program 2012 Overview Quality Improvement

More information

INTRODUCTION AND OVERVIEW. U. S. Department of Health and Human Services Health Resources and Services Administration

INTRODUCTION AND OVERVIEW. U. S. Department of Health and Human Services Health Resources and Services Administration INTRODUCTION AND OVERVIEW U. S. Department of Health and Human Services Health Resources and Services Administration April 2011 Contents INTRODUCTION AND OVERVIEW... 1 The HRSA Quality Toolkit... 1 Meeting

More information

Informatics and Technology, Hall in Tirol, Austria. Austria

Informatics and Technology, Hall in Tirol, Austria. Austria An EHR Prototype Using Structured ISO/EN 13606 Documents to Respond to Identified Clinical Information Needs of Diabetes Specialists: A Controlled Study on Feasibility and Impact Gudrun Huebner-Bloder,

More information

How To Qualify For EHR Stimulus Funds Under

How To Qualify For EHR Stimulus Funds Under BEST PRACTICES: How To Qualify For EHR Stimulus Funds Under Meaningful Use & Certified EHR Technology The American Recovery and Reinvestment Act (ARRA) set aside early $20 billion in incentive payments

More information

Current Status of Databases in Japan

Current Status of Databases in Japan Current Status of Databases in Japan 2012.03 Kiyoshi Kubota, MD, PhD, FISPE Department of Pharmacodpiemiology, Graduate School of Medicine, University of Tokyo Kubotape-tky@umin.ac.jp NPO Drug Safety Research

More information

(MUHIT) Assistant VP, Quality Solutions Group CA

(MUHIT) Assistant VP, Quality Solutions Group CA Meaningful Use of Health IT () Jennifer Lenz Assistant VP, Quality Solutions Group CA ABOUT TODAY S PRESENTATION NCQA Role in P4P P4P Alignment with CMS EHR Incentive Program: MY 2011 Requirements Scoring

More information

Electronic Medical Records

Electronic Medical Records Electronic Medical Records Milisa K Rizer, MD, MPH Clinical Director, Integrated Healthcare Information System Associate Professor, Clinical Family Medicine The Ohio State University Medical Center 2011

More information

Using population health data analytics to optimize medical device investment decisions

Using population health data analytics to optimize medical device investment decisions Research and Studies Using population health data analytics to optimize medical device investment decisions Mazen Hassanain, MD PhD WHO Second Global Forum on Medical Devices, Geneva, Nov. 23, 2013 Saudi

More information

The ERS IC-EHR as Local, Regional and National ehealth Infrastructure July 2010

The ERS IC-EHR as Local, Regional and National ehealth Infrastructure July 2010 The ERS IC-EHR as Local, Regional and National ehealth Infrastructure July 2010 Table of contents Present situation!... 1 What healthcare wants!... 2 ERS IC-EHR: Introduction!... 4 ERS IC-EHR: Integrating

More information

Chapter Three Accountable Care Organizations

Chapter Three Accountable Care Organizations Chapter Three Accountable Care Organizations One of the most talked-about changes in health care delivery in recent decades is Accountable Care Organizations, or ACOs. Having gained the attention of both

More information

THE ROLE OF CLINICAL DECISION SUPPORT AND ANALYTICS IN IMPROVING LONG-TERM CARE OUTCOMES

THE ROLE OF CLINICAL DECISION SUPPORT AND ANALYTICS IN IMPROVING LONG-TERM CARE OUTCOMES THE ROLE OF CLINICAL DECISION SUPPORT AND ANALYTICS IN IMPROVING LONG-TERM CARE OUTCOMES Long-term and post-acute care (LTPAC) organizations face unique challenges for remaining compliant and delivering

More information

Best Practices in Managing Patients With Chronic Obstructive Pulmonary Disease (COPD)

Best Practices in Managing Patients With Chronic Obstructive Pulmonary Disease (COPD) Best Practices in Managing Patients With Chronic Obstructive Pulmonary Disease (COPD) DuPage Medical Group Case Study Organization Profile Established in 1999, DuPage Medical Group (DMG) is a multispecialty

More information

Clinical Audit in Hospital Authority. Dr Betty Young Convenor for Clinical Audit, Hospital Authority

Clinical Audit in Hospital Authority. Dr Betty Young Convenor for Clinical Audit, Hospital Authority Clinical Audit in Hospital Authority Dr Betty Young Convenor for Clinical Audit, Hospital Authority Background 1990 1992 1996 1998 2005 Establishment of the Hospital Authority Quality Assurance Subcommittee

More information

Clinical Mapping (CMAP) Draft for Public Comment

Clinical Mapping (CMAP) Draft for Public Comment Integrating the Healthcare Enterprise 5 IHE Patient Care Coordination Technical Framework Supplement 10 Clinical Mapping (CMAP) 15 Draft for Public Comment 20 Date: June 1, 2015 Author: PCC Technical Committee

More information

TABLE B5: STAGE 2 OBJECTIVES AND MEASURES

TABLE B5: STAGE 2 OBJECTIVES AND MEASURES 294 TABLE B5: STAGE 2 OBJECTIVES AND MEASURES CORE SET Improving quality, safety, efficiency, and reducing health disparities Use computerized provider order entry (CPOE) for medication, laboratory and

More information

Know your Numbers The D5 Goals for Diabetes Care. Shelly Hanson RN, CNS, CDE Cuyuna Regional Medical Center November 6, 2014

Know your Numbers The D5 Goals for Diabetes Care. Shelly Hanson RN, CNS, CDE Cuyuna Regional Medical Center November 6, 2014 Know your Numbers The D5 Goals for Diabetes Care Shelly Hanson RN, CNS, CDE Cuyuna Regional Medical Center November 6, 2014 The D5 What is it 5 different treatment goals identified for optimal diabetes

More information

Quality Improvement Program

Quality Improvement Program Quality Improvement Program Section M-1 Additional information on the Quality Improvement Program (QIP) and activities is available on our website at www.molinahealthcare.com Upon request in writing, Molina

More information

DEMONSTRATING MEANINGFUL USE STAGE 1 REQUIREMENTS FOR ELIGIBLE PROVIDERS USING CERTIFIED EHR TECHNOLOGY IN 2014

DEMONSTRATING MEANINGFUL USE STAGE 1 REQUIREMENTS FOR ELIGIBLE PROVIDERS USING CERTIFIED EHR TECHNOLOGY IN 2014 DEMONSTRATING MEANINGFUL USE STAGE 1 REQUIREMENTS FOR ELIGIBLE PROVIDERS USING CERTIFIED EHR TECHNOLOGY IN 2014 The chart below lists the measures (and specialty exclusions) that eligible providers must

More information

Medicare Physician Group Practice Demonstration

Medicare Physician Group Practice Demonstration Medicare Physician Group Practice Demonstration Heather Grimsley Medicare Demonstrations Program Group Center for Medicare and Medicaid Innovation Centers for Medicare & Medicaid Services April 2011 PGP

More information