SlideShare uma empresa Scribd logo
1 de 49
SMART-Indivo App Challenge



             Webinar Presentation

               Tuesday, August 7
On today’s call:




                   Hemali Thakkar       Kenneth Mandl         Nikolai Schwertner    Pascal Pfiffner
 Adam Wong
                  Manager, Developer         Director           Lead Software      Postdoctoral Fellow
Management and                                                    Engineer
                      Challenge
Program Analyst
                                       Boston Children’s
                                       Hospital Intelligent                             SMART
     ONC                                                           SMART
                      Health 2.0          Health Lab
Agenda for Today’s Meeting

ONC  and the Investing in Innovation (i2)
Program

AnIntroduction to the SMART-Indivo
Challenge

Q&A   About the Challenge
ONC and i2
i2 Goals

•   Better Health, Better Care, Better Value through Quality Improvement
    • Further the mission of the Department of Health and Human
       Services
    • Highlight programs, activities, and issues of concern


•   Spur Innovation and Highlight Excellence
    • Motivate, inspire, and lead


•   Community building – Development of ecosystem

•   Stimulate private sector investment
Indivo and Personal Health
              Platforms
• Portals:
  –A static view into the EHR

• PCHRs:
  –Apps platform, and a patient copy of the data
Ecosystem
The Verbs of PCHR

SUBSCRIBE
New Approaches
to Data Liquidity
The Verbs of PCHR

SHARE
VA Survey
• 79% of Veterans are willing to share personal health
  information with those outside their health system
   –62% with a spouse or partner
   –23% with a child
   –15% with another family member
   –25% with a non-VA health care provider
The Verbs of PCHR

ADD AN APP
“We cannot overstate how
important PHRs are to the
efficient functioning of a low-
cost, high quality health-care
system . . . . We think that the
INDIVO system, or something
like it is a good place to start.”
--Clayton Christensen
   Harvard Business School
http://commonhealth.wbur.org/2011/07/killed-google-health




                                               • Trust
                                                issues
                                             • No app
                                            developers
                                            • No data
The App Store for Health




ONC Funded Research Project under the
          “SHARP” program
We imagine EMRs as an iPhone-like platform where
an innovator can create and widely distribute an app
       across many disparate EMRs and PHRs
A en sign ss
            D andle
       ir ed cC
     sp e M e)
   In av
      D lice  ns
from (cc
1 Design + 1 Developer + 1 Week

               1 De
                  v el o
                        per
                    in
               1W
                 eek
EHR as an “iPhone-like” Platform
SMART
 BP Centiles App
Running on Cerner
                    23
ARCHITECTURE OVERVIEW
Vocabulary


Apps




API




Containers
SMART Components
Apps need


UI
 Standards-based integration, flexibility

Authentication
 In-browser, server-to-server

Data
 Context, Medical Record Elements
Container UI
Authentication



Each container implements a consistent
mechanism for delegating access: OAuth.

The app only needs to speak OAuth.
SMART data

80/20 approach
 concentrate on common outpatient data

Consistent coding systems

    Medications: RxNorm (SCD, SBD, Packs)
    Problems: SNOMED CT
    Labs: LOINC

Extensible representations in RDF
Architecture Summary

SMART Containers supply Apps with
  UI integration
  Authenticated API Access
  Data
Containers shoulder significant responsibility!
Data models are critical to enable app developers
  Keeping developer experience in mind
  Data need to be predictable, (relatively) simple
Indivo and SMART
What SMART adds to Indivo
• Standardized Application Programming Interface
  that can run across diverse instances of health
  information technology
•   SMART app developed for an EHR can run
    unmodified on Indivo. Or, can be tweaked for
    a patient-facing experience
•   The Indivo data model will continue to track
    the evolution of the SMART standard
Indivo and SMART
What Indivo adds to SMART
•   Rich write capability
•   Consumer-facing features including
    authentication, carenets/sharing, and auditing
•   Consumer-facing data-types which are not yet
    ratified as part of the SMART model
•   Indivo apps can be either purely SMART-
    compliant or take advantage of hybrid
    functionality, with graceful degredation to
    SMART compliance in non-Indivo containers
Indivo iOS
framework
The iOS Framework
              Makes your life easy™



• Handles authentication (OAuth)
• Provides Indivo objects (automatic XML handling)
• Knows where an object comes from (REST paths)
• Provides messaging functionality
Basic Approach
  Abstract logic into Cocoa objects


          selectRecord:

Server                     Record

          addDocumentOfClass:
         fetchReportsOfClass:


                                    push:

                            Docs    replace:
                                    archive:
                                    ...
App Flow
                              Setup



    server = [IndivoServer serverWithDelegate:self];




#define kIndivoFrameworkServerURL      @“http://10.17.20.127:8000”
#define kIndivoFrameworkUIServerURL    @“http://10.17.20.127:8001”

#define kIndivoFrameworkAppId          @“medsample@apps.indivo.org”
#define kIndivoFrameworkConsumerKey    @“nkd8cg02mgo34sntkao9”
#define kIndivoFrameworkConsumerSecret @“1acgk9804wkmraoceu02”
App Flow
                          Logging in


[server selectRecord:^{   }];




server.activeRecord
App Flow
              Adding a medication


Medication *med = [record addDocument:Medication];

med.drugName = [INCodedValue new];

med.drugName.title = @“Tylenol”;

med.drugName.system ...




                 [med push:^{   }];
App Flow
                 Sending a message


[med.activeRecord sendMessage:@“New medication added”
                     withBody:@“See medlist app”
                       ofType:INMessageTypePlaintext
                     severity:INMessageSeverityMedium
                  attachments:nil
                     callback:^{ }];
Documentation


• Take a look at README.md
• Checkout the sample medication app
• Technical documentation available online:
• http://docs.indivohealth.org/projects/indivo-x-ios-frame
Playing with Medications
Portal-PCHR Hybrid
• SMART Platform Apps
   Have access to EHR data in a vendor agnostic
   fashion (from an Epic system, a Cerner system,
   or an complementary system with data
   warehoused from the EHR)
• So, one can readily create a patient facing portal,
  which is an apps platform
Portal-PCHR Hybrid
              SMART                  SMART
 Clinician                                          Patient
 -Facing        EHR      Connector   Indivo
                           App                      -Facing
  Apps                                               Apps




The best of both worlds:
•A local portal, with lots of data from the EHR
•A personal health platform with patient control,
sharing, and apps
The Challenge:

“Build an Indivo app that provides value to
 patients using data delivered through the
     SMART API and its Indivo-specific
                extensions”
•These should be patient facing web or mobile apps, and run against the
Indivo Developer Sandbox
•They should be of importance to clinical medicine or public health
•Examples include: a medication manager, a health risk detector, a patient-friendly
laboratory visualization tool, or an app that integrates external data sources with
patient records in real time.
Resources
•Indivo:
  •http://indivohealth.org/smart-indivo-app-challenge
  •http://docs.indivohealth.org
  •http://sandbox.indivohealth.org
  •https://github.com/chb/IndivoFramework-ios
  •http://www.youtube.com/watch?v=qNWujzx46bI
•SMART
  •http://smartplatforms.org
Judging Criteria

1. Usefulness to patients
2. Importance to clinical medicine or public health
3. Interface and presentation
4. Use of the Indivo and SMART APIs
5. Creative use of data from the sandbox and
   (optionally) from open health data sources
Timeline


Submission Period Ends
    September 28, 2012

   Winner Notified
     October 18, 2012
For More Information


http://www.health2challenge.org


       Contact Hemali:
   hemali@health2con.com

Mais conteúdo relacionado

Mais procurados

Mobile dev ops demystified
Mobile dev ops demystifiedMobile dev ops demystified
Mobile dev ops demystifiedNicolas Milcoff
 
The Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRs
The Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRsThe Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRs
The Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRsMedullan
 
Employing AI to Diagnose Cancer
Employing AI to Diagnose CancerEmploying AI to Diagnose Cancer
Employing AI to Diagnose CancerEMMAIntl
 
Block-chain & AI based Software Solutions for Healthcare Industry
Block-chain & AI based Software Solutions for Healthcare IndustryBlock-chain & AI based Software Solutions for Healthcare Industry
Block-chain & AI based Software Solutions for Healthcare IndustryPanktiDave3
 

Mais procurados (8)

Mobile dev ops demystified
Mobile dev ops demystifiedMobile dev ops demystified
Mobile dev ops demystified
 
The Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRs
The Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRsThe Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRs
The Innovation Doctor Is In: How SMART on FHIR Will Evolve EHRs
 
CV KH Jul 2016
CV KH Jul 2016CV KH Jul 2016
CV KH Jul 2016
 
Thesis_IR(Aptsource)
Thesis_IR(Aptsource)Thesis_IR(Aptsource)
Thesis_IR(Aptsource)
 
StefanoFiorini
StefanoFioriniStefanoFiorini
StefanoFiorini
 
Employing AI to Diagnose Cancer
Employing AI to Diagnose CancerEmploying AI to Diagnose Cancer
Employing AI to Diagnose Cancer
 
Sukumar-Resume
Sukumar-ResumeSukumar-Resume
Sukumar-Resume
 
Block-chain & AI based Software Solutions for Healthcare Industry
Block-chain & AI based Software Solutions for Healthcare IndustryBlock-chain & AI based Software Solutions for Healthcare Industry
Block-chain & AI based Software Solutions for Healthcare Industry
 

Semelhante a Smart-Indivo App Challenge Webinar

Million Hearts Risk Check Challenge Webinar
Million Hearts Risk Check Challenge WebinarMillion Hearts Risk Check Challenge Webinar
Million Hearts Risk Check Challenge Webinarhealth2dev
 
The Story of HPE Haven OnDemand
The Story of HPE Haven OnDemandThe Story of HPE Haven OnDemand
The Story of HPE Haven OnDemandAlon Mei-raz
 
Introducing the mHealth Platform as a Service
Introducing the mHealth Platform as a ServiceIntroducing the mHealth Platform as a Service
Introducing the mHealth Platform as a Servicekidozen
 
The_Story_of_HavenOndemand_External
The_Story_of_HavenOndemand_ExternalThe_Story_of_HavenOndemand_External
The_Story_of_HavenOndemand_ExternalFernando Lucini
 
Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014
Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014
Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014Ian McNicoll
 
HANDI Arctic Conf 2014
HANDI Arctic Conf 2014HANDI Arctic Conf 2014
HANDI Arctic Conf 2014HANDI HEALTH
 
What is a Healthcare IT Platform?
What is a Healthcare IT Platform?What is a Healthcare IT Platform?
What is a Healthcare IT Platform?Ed Dodds
 
NCI School of Computing Project Showcase 2014
NCI School of Computing Project Showcase 2014NCI School of Computing Project Showcase 2014
NCI School of Computing Project Showcase 2014ckennedynci
 
Vertical APIs as Core Product
Vertical APIs as Core ProductVertical APIs as Core Product
Vertical APIs as Core ProductZak Schwarzman
 
Digitrends Company's Portfolio 2017
Digitrends Company's Portfolio 2017Digitrends Company's Portfolio 2017
Digitrends Company's Portfolio 2017Samad Saleem
 
Gaurav Malik Resume 29 Jan 2016
Gaurav Malik Resume 29 Jan 2016Gaurav Malik Resume 29 Jan 2016
Gaurav Malik Resume 29 Jan 2016Gaurav Malik
 

Semelhante a Smart-Indivo App Challenge Webinar (20)

Intro: Indivo X 2012 Users' Conference
Intro: Indivo X 2012 Users' ConferenceIntro: Indivo X 2012 Users' Conference
Intro: Indivo X 2012 Users' Conference
 
Million Hearts Risk Check Challenge Webinar
Million Hearts Risk Check Challenge WebinarMillion Hearts Risk Check Challenge Webinar
Million Hearts Risk Check Challenge Webinar
 
Final .pptx
Final .pptxFinal .pptx
Final .pptx
 
iOS Developer
iOS DeveloperiOS Developer
iOS Developer
 
Mueen Akhtar
Mueen AkhtarMueen Akhtar
Mueen Akhtar
 
The Story of HPE Haven OnDemand
The Story of HPE Haven OnDemandThe Story of HPE Haven OnDemand
The Story of HPE Haven OnDemand
 
Introducing the mHealth Platform as a Service
Introducing the mHealth Platform as a ServiceIntroducing the mHealth Platform as a Service
Introducing the mHealth Platform as a Service
 
Kondapanaidu ios resume (1)
Kondapanaidu ios resume (1)Kondapanaidu ios resume (1)
Kondapanaidu ios resume (1)
 
Cruise
CruiseCruise
Cruise
 
The_Story_of_HavenOndemand_External
The_Story_of_HavenOndemand_ExternalThe_Story_of_HavenOndemand_External
The_Story_of_HavenOndemand_External
 
The power of Centricity RIS-IC integration
The power of Centricity RIS-IC integrationThe power of Centricity RIS-IC integration
The power of Centricity RIS-IC integration
 
Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014
Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014
Supporting HANDI apps developers Arctic dual-modelling Conf Tromso 2014
 
HANDI Arctic Conf 2014
HANDI Arctic Conf 2014HANDI Arctic Conf 2014
HANDI Arctic Conf 2014
 
file
filefile
file
 
What is a Healthcare IT Platform?
What is a Healthcare IT Platform?What is a Healthcare IT Platform?
What is a Healthcare IT Platform?
 
NCI School of Computing Project Showcase 2014
NCI School of Computing Project Showcase 2014NCI School of Computing Project Showcase 2014
NCI School of Computing Project Showcase 2014
 
Vertical APIs as Core Product
Vertical APIs as Core ProductVertical APIs as Core Product
Vertical APIs as Core Product
 
Digitrends Company's Portfolio 2017
Digitrends Company's Portfolio 2017Digitrends Company's Portfolio 2017
Digitrends Company's Portfolio 2017
 
Gaurav Malik Resume 29 Jan 2016
Gaurav Malik Resume 29 Jan 2016Gaurav Malik Resume 29 Jan 2016
Gaurav Malik Resume 29 Jan 2016
 
Kivi_College
Kivi_CollegeKivi_College
Kivi_College
 

Mais de health2dev

The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...health2dev
 
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...health2dev
 
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...health2dev
 
Health 2.0 EMR API report 2018
Health 2.0 EMR API report 2018 Health 2.0 EMR API report 2018
Health 2.0 EMR API report 2018 health2dev
 
Health 2.0 Quarterly Report (Q4 2016)
Health 2.0 Quarterly Report (Q4 2016) Health 2.0 Quarterly Report (Q4 2016)
Health 2.0 Quarterly Report (Q4 2016) health2dev
 
Health 2.0 Quarterly Report (Q3 2016)
Health 2.0 Quarterly Report (Q3 2016) Health 2.0 Quarterly Report (Q3 2016)
Health 2.0 Quarterly Report (Q3 2016) health2dev
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Canopy Apps
Anatomy of a Pilot at Health 2.0 Provider Symposium - Canopy AppsAnatomy of a Pilot at Health 2.0 Provider Symposium - Canopy Apps
Anatomy of a Pilot at Health 2.0 Provider Symposium - Canopy Appshealth2dev
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Optima
Anatomy of a Pilot at Health 2.0 Provider Symposium - OptimaAnatomy of a Pilot at Health 2.0 Provider Symposium - Optima
Anatomy of a Pilot at Health 2.0 Provider Symposium - Optimahealth2dev
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...health2dev
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...health2dev
 
Aneesh Chopra's Keynote at the Health 2.0's Provider Symposium
Aneesh Chopra's Keynote at the Health 2.0's Provider SymposiumAneesh Chopra's Keynote at the Health 2.0's Provider Symposium
Aneesh Chopra's Keynote at the Health 2.0's Provider Symposiumhealth2dev
 
Health 2.0 EMR API report
Health 2.0 EMR API reportHealth 2.0 EMR API report
Health 2.0 EMR API reporthealth2dev
 
Health 2.0 Quarterly Report (Q2 2016)
Health 2.0 Quarterly Report (Q2 2016) Health 2.0 Quarterly Report (Q2 2016)
Health 2.0 Quarterly Report (Q2 2016) health2dev
 
Tech emerge webinar2 planning
Tech emerge webinar2 planningTech emerge webinar2 planning
Tech emerge webinar2 planninghealth2dev
 
Mu3 dev challenge project plan for health 2.0 launch (1)
Mu3 dev challenge project plan   for health 2.0 launch (1)Mu3 dev challenge project plan   for health 2.0 launch (1)
Mu3 dev challenge project plan for health 2.0 launch (1)health2dev
 
TechEmerge Webinar, Understanding the Basics: HealthTech in India
TechEmerge Webinar, Understanding the Basics: HealthTech in IndiaTechEmerge Webinar, Understanding the Basics: HealthTech in India
TechEmerge Webinar, Understanding the Basics: HealthTech in Indiahealth2dev
 
Health 2.0 Quarterly Report (Q4 2015)
Health 2.0 Quarterly Report (Q4 2015) Health 2.0 Quarterly Report (Q4 2015)
Health 2.0 Quarterly Report (Q4 2015) health2dev
 
FoodCare: Aetna HHS NHIT Challenge
FoodCare: Aetna HHS NHIT ChallengeFoodCare: Aetna HHS NHIT Challenge
FoodCare: Aetna HHS NHIT Challengehealth2dev
 

Mais de health2dev (20)

The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
 
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health 2021 -...
 
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...
The Catalyst @ Health 2.0/Wipfli Survey on the State of Digital Health Result...
 
Health 2.0 EMR API report 2018
Health 2.0 EMR API report 2018 Health 2.0 EMR API report 2018
Health 2.0 EMR API report 2018
 
Health 2.0 Quarterly Report (Q4 2016)
Health 2.0 Quarterly Report (Q4 2016) Health 2.0 Quarterly Report (Q4 2016)
Health 2.0 Quarterly Report (Q4 2016)
 
Health 2.0 Quarterly Report (Q3 2016)
Health 2.0 Quarterly Report (Q3 2016) Health 2.0 Quarterly Report (Q3 2016)
Health 2.0 Quarterly Report (Q3 2016)
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Canopy Apps
Anatomy of a Pilot at Health 2.0 Provider Symposium - Canopy AppsAnatomy of a Pilot at Health 2.0 Provider Symposium - Canopy Apps
Anatomy of a Pilot at Health 2.0 Provider Symposium - Canopy Apps
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Optima
Anatomy of a Pilot at Health 2.0 Provider Symposium - OptimaAnatomy of a Pilot at Health 2.0 Provider Symposium - Optima
Anatomy of a Pilot at Health 2.0 Provider Symposium - Optima
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Clinical Box and Lowell...
 
Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...
Anatomy of a Pilot at Health 2.0 Provider Symposium - Refer Well and Mount Si...
 
Aneesh Chopra's Keynote at the Health 2.0's Provider Symposium
Aneesh Chopra's Keynote at the Health 2.0's Provider SymposiumAneesh Chopra's Keynote at the Health 2.0's Provider Symposium
Aneesh Chopra's Keynote at the Health 2.0's Provider Symposium
 
Health 2.0 EMR API report
Health 2.0 EMR API reportHealth 2.0 EMR API report
Health 2.0 EMR API report
 
Health 2.0 Quarterly Report (Q2 2016)
Health 2.0 Quarterly Report (Q2 2016) Health 2.0 Quarterly Report (Q2 2016)
Health 2.0 Quarterly Report (Q2 2016)
 
Tech emerge webinar2 planning
Tech emerge webinar2 planningTech emerge webinar2 planning
Tech emerge webinar2 planning
 
Mu3 dev challenge project plan for health 2.0 launch (1)
Mu3 dev challenge project plan   for health 2.0 launch (1)Mu3 dev challenge project plan   for health 2.0 launch (1)
Mu3 dev challenge project plan for health 2.0 launch (1)
 
TechEmerge Webinar, Understanding the Basics: HealthTech in India
TechEmerge Webinar, Understanding the Basics: HealthTech in IndiaTechEmerge Webinar, Understanding the Basics: HealthTech in India
TechEmerge Webinar, Understanding the Basics: HealthTech in India
 
Health 2.0 Quarterly Report (Q4 2015)
Health 2.0 Quarterly Report (Q4 2015) Health 2.0 Quarterly Report (Q4 2015)
Health 2.0 Quarterly Report (Q4 2015)
 
Let's Epicure
Let's EpicureLet's Epicure
Let's Epicure
 
Grupo Parada
Grupo ParadaGrupo Parada
Grupo Parada
 
FoodCare: Aetna HHS NHIT Challenge
FoodCare: Aetna HHS NHIT ChallengeFoodCare: Aetna HHS NHIT Challenge
FoodCare: Aetna HHS NHIT Challenge
 

Último

Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 

Último (20)

Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 

Smart-Indivo App Challenge Webinar

  • 1. SMART-Indivo App Challenge Webinar Presentation Tuesday, August 7
  • 2. On today’s call: Hemali Thakkar Kenneth Mandl Nikolai Schwertner Pascal Pfiffner Adam Wong Manager, Developer Director Lead Software Postdoctoral Fellow Management and Engineer Challenge Program Analyst Boston Children’s Hospital Intelligent SMART ONC SMART Health 2.0 Health Lab
  • 3. Agenda for Today’s Meeting ONC and the Investing in Innovation (i2) Program AnIntroduction to the SMART-Indivo Challenge Q&A About the Challenge
  • 5. i2 Goals • Better Health, Better Care, Better Value through Quality Improvement • Further the mission of the Department of Health and Human Services • Highlight programs, activities, and issues of concern • Spur Innovation and Highlight Excellence • Motivate, inspire, and lead • Community building – Development of ecosystem • Stimulate private sector investment
  • 6. Indivo and Personal Health Platforms • Portals: –A static view into the EHR • PCHRs: –Apps platform, and a patient copy of the data
  • 8. The Verbs of PCHR SUBSCRIBE
  • 9.
  • 10.
  • 12. The Verbs of PCHR SHARE
  • 13. VA Survey • 79% of Veterans are willing to share personal health information with those outside their health system –62% with a spouse or partner –23% with a child –15% with another family member –25% with a non-VA health care provider
  • 14. The Verbs of PCHR ADD AN APP
  • 15. “We cannot overstate how important PHRs are to the efficient functioning of a low- cost, high quality health-care system . . . . We think that the INDIVO system, or something like it is a good place to start.” --Clayton Christensen Harvard Business School
  • 16.
  • 17. http://commonhealth.wbur.org/2011/07/killed-google-health • Trust issues • No app developers • No data
  • 18. The App Store for Health ONC Funded Research Project under the “SHARP” program
  • 19. We imagine EMRs as an iPhone-like platform where an innovator can create and widely distribute an app across many disparate EMRs and PHRs
  • 20. A en sign ss D andle ir ed cC sp e M e) In av D lice ns from (cc
  • 21. 1 Design + 1 Developer + 1 Week 1 De v el o per in 1W eek
  • 22. EHR as an “iPhone-like” Platform
  • 23. SMART BP Centiles App Running on Cerner 23
  • 27. Apps need UI Standards-based integration, flexibility Authentication In-browser, server-to-server Data Context, Medical Record Elements
  • 29. Authentication Each container implements a consistent mechanism for delegating access: OAuth. The app only needs to speak OAuth.
  • 30. SMART data 80/20 approach concentrate on common outpatient data Consistent coding systems Medications: RxNorm (SCD, SBD, Packs) Problems: SNOMED CT Labs: LOINC Extensible representations in RDF
  • 31. Architecture Summary SMART Containers supply Apps with UI integration Authenticated API Access Data Containers shoulder significant responsibility! Data models are critical to enable app developers Keeping developer experience in mind Data need to be predictable, (relatively) simple
  • 32. Indivo and SMART What SMART adds to Indivo • Standardized Application Programming Interface that can run across diverse instances of health information technology • SMART app developed for an EHR can run unmodified on Indivo. Or, can be tweaked for a patient-facing experience • The Indivo data model will continue to track the evolution of the SMART standard
  • 33. Indivo and SMART What Indivo adds to SMART • Rich write capability • Consumer-facing features including authentication, carenets/sharing, and auditing • Consumer-facing data-types which are not yet ratified as part of the SMART model • Indivo apps can be either purely SMART- compliant or take advantage of hybrid functionality, with graceful degredation to SMART compliance in non-Indivo containers
  • 35. The iOS Framework Makes your life easy™ • Handles authentication (OAuth) • Provides Indivo objects (automatic XML handling) • Knows where an object comes from (REST paths) • Provides messaging functionality
  • 36. Basic Approach Abstract logic into Cocoa objects selectRecord: Server Record addDocumentOfClass: fetchReportsOfClass: push: Docs replace: archive: ...
  • 37. App Flow Setup server = [IndivoServer serverWithDelegate:self]; #define kIndivoFrameworkServerURL @“http://10.17.20.127:8000” #define kIndivoFrameworkUIServerURL @“http://10.17.20.127:8001” #define kIndivoFrameworkAppId @“medsample@apps.indivo.org” #define kIndivoFrameworkConsumerKey @“nkd8cg02mgo34sntkao9” #define kIndivoFrameworkConsumerSecret @“1acgk9804wkmraoceu02”
  • 38. App Flow Logging in [server selectRecord:^{ }]; server.activeRecord
  • 39. App Flow Adding a medication Medication *med = [record addDocument:Medication]; med.drugName = [INCodedValue new]; med.drugName.title = @“Tylenol”; med.drugName.system ... [med push:^{ }];
  • 40. App Flow Sending a message [med.activeRecord sendMessage:@“New medication added” withBody:@“See medlist app” ofType:INMessageTypePlaintext severity:INMessageSeverityMedium attachments:nil callback:^{ }];
  • 41. Documentation • Take a look at README.md • Checkout the sample medication app • Technical documentation available online: • http://docs.indivohealth.org/projects/indivo-x-ios-frame
  • 43. Portal-PCHR Hybrid • SMART Platform Apps Have access to EHR data in a vendor agnostic fashion (from an Epic system, a Cerner system, or an complementary system with data warehoused from the EHR) • So, one can readily create a patient facing portal, which is an apps platform
  • 44. Portal-PCHR Hybrid SMART SMART Clinician Patient -Facing EHR Connector Indivo App -Facing Apps Apps The best of both worlds: •A local portal, with lots of data from the EHR •A personal health platform with patient control, sharing, and apps
  • 45. The Challenge: “Build an Indivo app that provides value to patients using data delivered through the SMART API and its Indivo-specific extensions” •These should be patient facing web or mobile apps, and run against the Indivo Developer Sandbox •They should be of importance to clinical medicine or public health •Examples include: a medication manager, a health risk detector, a patient-friendly laboratory visualization tool, or an app that integrates external data sources with patient records in real time.
  • 46. Resources •Indivo: •http://indivohealth.org/smart-indivo-app-challenge •http://docs.indivohealth.org •http://sandbox.indivohealth.org •https://github.com/chb/IndivoFramework-ios •http://www.youtube.com/watch?v=qNWujzx46bI •SMART •http://smartplatforms.org
  • 47. Judging Criteria 1. Usefulness to patients 2. Importance to clinical medicine or public health 3. Interface and presentation 4. Use of the Indivo and SMART APIs 5. Creative use of data from the sandbox and (optionally) from open health data sources
  • 48. Timeline Submission Period Ends September 28, 2012 Winner Notified October 18, 2012
  • 49. For More Information http://www.health2challenge.org Contact Hemali: hemali@health2con.com

Notas do Editor

  1. Ask about users of Microsoft’s HealthVault framework
  2. Talk about objects Walk through these three objects
  3. Hint at the callback block
  4. addDocumentOfClass: IndivoMedication
  5. If you tell a medication to replace another one, it has all the information it needs to create the correct REST method (if you tell it which medication to replace)
  6. Providing education and resources to help reduce fat and salt intake, increase exercise, lose weight, stop smoking, or increase medication adherence (e.g., to improve control of high blood pressure) Using GPS technology to recommend nearby walks or places to eat healthier Recommending to the high risk patient to see a primary care doctor if not on aspirin or cholesterol-lowering medication Linking to online communities dedicated to improving heart health