SlideShare a Scribd company logo
1 of 48
Download to read offline
BlueButton On FHIR
Mark Scrimshire
HHS/CMS 

Entrepreneur-In-Residence
@ekivemark
Direct to the
Consumer-Powered
Health Revolution
A"Baptism"of"FHIRConfirmation
@ekivemark
Disclaimer
The views expressed in this presentation are my
own personal views and should not be construed as
an official position of the US Department of Health
and Human Services or the Centers for Medicare
and Medicaid Services.
2
R LES
HHS
Entrepreneur

-in-Residence
Medyear CTO &

Co-Founder
HealthCa.mp
Chief Instigator
Ski Instructor
Big Data & Cloud

Technologist
Health & Social
Data Ninja
@ekivemark
R LES
HHS
Entrepreneur

-in-Residence
Medyear CTO &

Co-Founder
HealthCa.mp
Chief Instigator
Ski Instructor
Big Data & Cloud

Technologist
Health & Social
Data Ninja
@ekivemark
@ekivemarkhttp://healthca.mp
Blue Button
Unleashes Personal Data
http://healthca.mp
2010
@ekivemark
1.2M
Unique Medicare Members
@ekivemark
There are big opportunities
54,000,000Medicare Beneficiaries (2014 est.)
@ekivemark@ekivemark
An Essential First Step
@ekivemark
…but it left the patient to
do the heavy lifting
@ekivemark
https://leicalady.files.wordpress.com/2010/08/annie@admiring@paintingsmall.jpeg
People don’t want
their data 

for it’s own sake…
@ekivemark
Our Health data 

should be 

a valuable tool

we put to good use
http://commons.wikimedia.org/wiki/File:Toolbox_(6788494881).jpg
@ekivemark
A decision without
Information…
@ekivemark
A Tipping Point

is coming…
Consumer Industry
Retail
PHR
Devices
Genome
EHR
@ekivemark
EIR
PIF
USDS
Fast Health
Interoperability
Resources
@ekivemark
@ekivemark
What"is"
• A"Standards"Developing"Organization"
• Accredited"by"the"American"National"Standards"
Institute"(ANSI)"
• Author"of"consensus@based"standards"
• Representing"a"broad"view"from"healthcare"
system"stakeholders
HL7"compiled"a"collection"of"message"formats"and"
related"clinical"standards"that"loosely"define"an"ideal"
presentation"of"clinical"information
• Adoption"of"version"3.0"since"2005"

drove"a"“reset”"in"the"HL7"Community"
• FHIR"is"the"result"of"that"“reset”"
http://www.corepointhealth.com/
whitepapers/evolution4hl7
@ekivemark
ARGONAUT
What"is"the"Industry"doing"with"FHIR?
athenahealth
Beth Israel Deaconess Medical Center
Cerner
Epic
Intermountain Healthcare
Mayo Clinic
MEDITECH
McKesson
Partners HealthCare System
SMART 

(Boston Children's Hospital 

Informatics Program)
The Advisory Board Company
http://hl7.org/implement/standards/fhir/
2015Jan/argonauts.html
@ekivemark
What"is"FHIR?
Secure"
Transport
Developer"
Friendly
Structured"
Data
@ekivemark
FHIR

Think"of"it"as"an"International"

common"Language"for"Health"
@ekivemark
FHIR"Can"Publish"and"Consume"Data
PROFILE
@ekivemark
What"can"a"FHIR"Server"Do?
• Its"all"in"the"Conformance"Statement
http://fhir.bbonfhir.com:8080/
fhir@p/

baseDstu2/metadata/

$everything

?_format=json"
@ekivemark
" "
{"
"""""resourceType":"Conformance","
"""""publisher":"Not"provided","
"""""date":"2015@09@02T15:19:48@04:00","
"""""software":{"
"""""""""name":"HAPI"FHIR"Server","
"""""""""version":"1.0@SNAPSHOT""
""""},"
"""""implementation":{"
"""""""""description":"UHN"Test"Server"(DSTU2"Resources)""
""""},"
"""""fhirVersion":"0.5.0","
"""""acceptUnknown":false,"
"""""format":["
"""""""""application/xml+fhir","
"""""""""application/json+fhir""
""""],"
Conformance:""What"and"How
• JSON"or"XML"Description"of"the"Data"Profiles"and"
the"Actions"each"profile"supports
interaction":["
""""""""""""""""""""""""{"code":"vread”},"
""""""""""""""""""""""""{"code":"update”},"
""""""""""""""""""""""""{"code":"delete”},"
""""""""""""""""""""""""{"code":"history@instance”},"
""""""""""""""""""""""""{"code":"validate”},"
""""""""""""""""""""""""{"code":"history@type”},"
""""""""""""""""""""""""{"code":"create”},"
""""""""""""""""""""""""{"code":"search@type”"}]
GET"http://localhost:8080/fhir@p/baseDstu2/
Practitioner/32768"
@ekivemark
Building"Blocks

Primitives
@ekivemark
Constructing"
Resources
• Identifier"
• HumanName"
• Address"
• ContactPoint"
• CodeableConcept
@ekivemark
Resources:"Define"what"you"use
P"
A"
T"
I"
@ekivemark
Codes"within"Codes
@ekivemark
Cardinality
0..0 Not$used
0..1 Optional
0..* Optional$multiple
1..1 Required
1..* At$least$one [{"Address}",]
“String”"
Boolean"
Integer
{"CodeableConcept"}
@ekivemark
Building"a"FHIR"Request
https://fhir.bbonfhir.com:8080/"
fhir@p/"
Patient/"
{123456}"
?parameters"
[_id=123456]&"
[date=>2015@02@14&date=<2015@06@30]&"
[name:exact=Eve]&"
[_format=json|xml]
Base@url
resourceType
id
https://www.hl7.org/fhir/
search.html
@ekivemark
FHIR"Interactions
• Read""
– GET"https://example.com/path/{resourceType}/{id}"
• Search""
– GET"https://example.com/path/{resourceType}?search"parameters..."
• History"
– GET"https://example.com/path/{resourceType}/{id}/_history"
• Operation"
– GET"https://example.com/path/{resourceType}/{id}/${opname}"
• Create>"
– POST>https://example.com/path/{resourceType}$
• Update>
– PUT>https://example.com/path/{resourceType}/{id}"
• Delete>"
– DELETE>https://example.com/path/{resourceType}/{id}>
• Transaction>
– POST>https://example.com/path/>>
• (POST>a>transaction>bundle>to>the>system)
@ekivemark
Implementing"FHIR
• Identify"code"sets"
• Publish"codeable"concepts"
• Map"fields"to"Profile/Resource"elements"
• Define"Legacy@FHIR"Integration"
– Real"time"query"
– Batch"ETL"
@ekivemark
Links"to"know…
• http://hl7@fhir.github.io/index.html"
• https://github.com/jamesagnew/hapi@fhir
Explanation of Benefit
HealthCare’s Great
Oxymoron
Proctology Exam for your wallet?
@ekivemark
A New FHIR EOB
Resource
What is it?
@ekivemark
Patient focused
Self-contained
Include reference Identifiers
Include patient profile subset
EOB = Adjudicated claim
One claim = One EOB
EOB has a GUID
The EOB
@ekivemark
1
2
3
4
5
6
7
@ekivemark
DEMO/TOUR
BlueButtonOn
FHIR #BBonFHIR@ekivemark
BlueButtonOn
FHIR #BBonFHIR@ekivemark
BlueButtonMore than
Claims #BBonFHIR@ekivemark
BlueButtonMore than
Claims #BBonFHIR@ekivemark
BlueButtonMore than
Claims #BBonFHIR@ekivemark
BlueButtonMore than
Claims #BBonFHIR@ekivemark
BlueButtonMore than
Claims #BBonFHIR@ekivemark
You Can Help…
@CMSGOV I Support #BlueButton
On #FHIR to @GetMyHealthData 

/cc:@N_Brennan @ekivemark
#NOPressure
@ekivemark #BBonFHIR #NoPressure
Help 

improve 

the codebase 

on 

GitHub
Do you want a
Sneak Peak?@ekivemark
dev.bbonfhir.com@ekivemark
Working on
OAuth2…
Client Facing Application
dev.bbonfhir.com@ekivemark
dev.bbonfhir.com@ekivemark
Follow our progress, join us and contribute
• Structured File Formats:
• ( https://github.com/ekivemark/claims )
• BlueButton Text to JSON Converter:
• ( https://github.com/ekivemark/python-bluebutton )
• BlueButton On FHIR
• ( https://github.com/ekivemark/bbofuser )
• Developer Code of Honor:
• ( http://2.healthca.mp/1GjOUsY )
• HL7 - FHIR
• ( http://www.hl7.org/implement/standards/fhir/http.html )
@ekivemark
@ekivemark
Mark Scrimshire
HHS Entrepreneur-in-Residence
(CMS)
@ekivemark
http://ekivemark.com
mark.scrimshire@cms.hhs.gov
703.623.2789

More Related Content

Similar to B bon fhir_workshop

Entrepreneur attitude or job title?
Entrepreneur attitude or job title?Entrepreneur attitude or job title?
Entrepreneur attitude or job title?Mark Scrimshire
 
BlueButton and MyHealth at Connected Health 2015 in San Diego
BlueButton and MyHealth at Connected Health 2015 in San DiegoBlueButton and MyHealth at Connected Health 2015 in San Diego
BlueButton and MyHealth at Connected Health 2015 in San DiegoMark Scrimshire
 
BlueButtonOnFHIR - Payer Briefing
BlueButtonOnFHIR - Payer BriefingBlueButtonOnFHIR - Payer Briefing
BlueButtonOnFHIR - Payer BriefingMark Scrimshire
 
The Patient at the Center of a New Healthcare System - All About You at #Cind...
The Patient at the Center of a New Healthcare System - All About You at #Cind...The Patient at the Center of a New Healthcare System - All About You at #Cind...
The Patient at the Center of a New Healthcare System - All About You at #Cind...Mark Scrimshire
 
Cleared Job Fair Handbook | October 7
Cleared Job Fair Handbook | October 7Cleared Job Fair Handbook | October 7
Cleared Job Fair Handbook | October 7ClearedJobs.Net
 
Data, databases and what you can do with them
Data, databases and what you can do with themData, databases and what you can do with them
Data, databases and what you can do with themBrowne Jacobson LLP
 
When Big Data Meets Recruiting - HRM Asia March 2015 Presentation
When Big Data Meets Recruiting - HRM Asia March 2015 PresentationWhen Big Data Meets Recruiting - HRM Asia March 2015 Presentation
When Big Data Meets Recruiting - HRM Asia March 2015 PresentationDheeraj Shastri
 
HealthCare Heal Thyself - The Patient as the hub of a new health system
HealthCare Heal Thyself - The Patient as the hub of a new health systemHealthCare Heal Thyself - The Patient as the hub of a new health system
HealthCare Heal Thyself - The Patient as the hub of a new health systemMark Scrimshire
 
Age of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide DiscoveryAge of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide DiscoveryInside Analysis
 
LinkedIn Profile Tips: 5 Easy Steps to Get Found First Dean DeLisle - Socia...
LinkedIn Profile Tips: 5 Easy Steps to Get Found First   Dean DeLisle - Socia...LinkedIn Profile Tips: 5 Easy Steps to Get Found First   Dean DeLisle - Socia...
LinkedIn Profile Tips: 5 Easy Steps to Get Found First Dean DeLisle - Socia...Social Jack
 
Ants - AARRR Growth Hacking and The single biggest reason why startups succeed
Ants - AARRR Growth Hacking and The single biggest reason why startups succeedAnts - AARRR Growth Hacking and The single biggest reason why startups succeed
Ants - AARRR Growth Hacking and The single biggest reason why startups succeedDinh Le Dat (Kevin D.)
 
Social Media is now an essential element in Strategic Information Systems Pla...
Social Media is now an essential element in Strategic Information Systems Pla...Social Media is now an essential element in Strategic Information Systems Pla...
Social Media is now an essential element in Strategic Information Systems Pla...Mark Scrimshire
 
NACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg Hawkes
NACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg HawkesNACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg Hawkes
NACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg HawkesGreg Hawkes
 
Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.
Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.
Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.Andreas Klinger
 
Creating Professional Applications with the LinkedIn API
Creating Professional Applications with the LinkedIn APICreating Professional Applications with the LinkedIn API
Creating Professional Applications with the LinkedIn APIKirsten Hunter
 
OSINT using Twitter & Python
OSINT using Twitter & PythonOSINT using Twitter & Python
OSINT using Twitter & Python37point2
 

Similar to B bon fhir_workshop (20)

Health2 stat 2015-08-20
Health2 stat 2015-08-20Health2 stat 2015-08-20
Health2 stat 2015-08-20
 
Entrepreneur attitude or job title?
Entrepreneur attitude or job title?Entrepreneur attitude or job title?
Entrepreneur attitude or job title?
 
BlueButton and MyHealth at Connected Health 2015 in San Diego
BlueButton and MyHealth at Connected Health 2015 in San DiegoBlueButton and MyHealth at Connected Health 2015 in San Diego
BlueButton and MyHealth at Connected Health 2015 in San Diego
 
BlueButtonOnFHIR - Payer Briefing
BlueButtonOnFHIR - Payer BriefingBlueButtonOnFHIR - Payer Briefing
BlueButtonOnFHIR - Payer Briefing
 
The Patient at the Center of a New Healthcare System - All About You at #Cind...
The Patient at the Center of a New Healthcare System - All About You at #Cind...The Patient at the Center of a New Healthcare System - All About You at #Cind...
The Patient at the Center of a New Healthcare System - All About You at #Cind...
 
Cleared Job Fair Handbook | October 7
Cleared Job Fair Handbook | October 7Cleared Job Fair Handbook | October 7
Cleared Job Fair Handbook | October 7
 
Data, databases and what you can do with them
Data, databases and what you can do with themData, databases and what you can do with them
Data, databases and what you can do with them
 
When Big Data Meets Recruiting - HRM Asia March 2015 Presentation
When Big Data Meets Recruiting - HRM Asia March 2015 PresentationWhen Big Data Meets Recruiting - HRM Asia March 2015 Presentation
When Big Data Meets Recruiting - HRM Asia March 2015 Presentation
 
HealthCare Heal Thyself - The Patient as the hub of a new health system
HealthCare Heal Thyself - The Patient as the hub of a new health systemHealthCare Heal Thyself - The Patient as the hub of a new health system
HealthCare Heal Thyself - The Patient as the hub of a new health system
 
Age of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide DiscoveryAge of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide Discovery
 
LinkedIn Profile Tips: 5 Easy Steps to Get Found First Dean DeLisle - Socia...
LinkedIn Profile Tips: 5 Easy Steps to Get Found First   Dean DeLisle - Socia...LinkedIn Profile Tips: 5 Easy Steps to Get Found First   Dean DeLisle - Socia...
LinkedIn Profile Tips: 5 Easy Steps to Get Found First Dean DeLisle - Socia...
 
Ants - AARRR Growth Hacking and The single biggest reason why startups succeed
Ants - AARRR Growth Hacking and The single biggest reason why startups succeedAnts - AARRR Growth Hacking and The single biggest reason why startups succeed
Ants - AARRR Growth Hacking and The single biggest reason why startups succeed
 
Social Media is now an essential element in Strategic Information Systems Pla...
Social Media is now an essential element in Strategic Information Systems Pla...Social Media is now an essential element in Strategic Information Systems Pla...
Social Media is now an essential element in Strategic Information Systems Pla...
 
NACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg Hawkes
NACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg HawkesNACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg Hawkes
NACHR Conf Presentation Headhunting in Healthcare - Free Tools Greg Hawkes
 
Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.
Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.
Startup Metrics, a love story. All slides of an 6h Lean Analytics workshop.
 
Creating Professional Applications with the LinkedIn API
Creating Professional Applications with the LinkedIn APICreating Professional Applications with the LinkedIn API
Creating Professional Applications with the LinkedIn API
 
Metadata Matters
Metadata MattersMetadata Matters
Metadata Matters
 
OSINT using Twitter & Python
OSINT using Twitter & PythonOSINT using Twitter & Python
OSINT using Twitter & Python
 
Dirk Spencer Linked in for Recruiters DFWTRN preso
Dirk Spencer Linked in for Recruiters DFWTRN presoDirk Spencer Linked in for Recruiters DFWTRN preso
Dirk Spencer Linked in for Recruiters DFWTRN preso
 
Big data. Opportunità e rischi
Big data. Opportunità e rischiBig data. Opportunità e rischi
Big data. Opportunità e rischi
 

More from Mark Scrimshire

Blue Button for Medicaid
Blue Button for Medicaid Blue Button for Medicaid
Blue Button for Medicaid Mark Scrimshire
 
ONC2019 #interopforum Blue Button 2.0 lessons-learned
ONC2019 #interopforum Blue Button 2.0 lessons-learnedONC2019 #interopforum Blue Button 2.0 lessons-learned
ONC2019 #interopforum Blue Button 2.0 lessons-learnedMark Scrimshire
 
Blue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR Workshop
Blue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR WorkshopBlue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR Workshop
Blue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR WorkshopMark Scrimshire
 
Blue Button 2.0 - At ONC Interoperability Forum
Blue Button 2.0 - At ONC Interoperability ForumBlue Button 2.0 - At ONC Interoperability Forum
Blue Button 2.0 - At ONC Interoperability ForumMark Scrimshire
 
CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017
CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017
CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017Mark Scrimshire
 
POET Application Verification for Consumer Health Apps
POET Application Verification for Consumer Health AppsPOET Application Verification for Consumer Health Apps
POET Application Verification for Consumer Health AppsMark Scrimshire
 
The Power of Consumer Directed Health Data
The Power of Consumer Directed Health DataThe Power of Consumer Directed Health Data
The Power of Consumer Directed Health DataMark Scrimshire
 
The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)
The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)
The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)Mark Scrimshire
 
BlueButton on FHIR at HIMSS'17 HL7 API Symposium
BlueButton on FHIR at HIMSS'17 HL7 API SymposiumBlueButton on FHIR at HIMSS'17 HL7 API Symposium
BlueButton on FHIR at HIMSS'17 HL7 API SymposiumMark Scrimshire
 
CMS BlueButton On FHIR - HIMSS17 Update
CMS BlueButton On FHIR - HIMSS17 UpdateCMS BlueButton On FHIR - HIMSS17 Update
CMS BlueButton On FHIR - HIMSS17 UpdateMark Scrimshire
 
CMS BlueButton on FHIR at Cinderblocks3
CMS BlueButton on FHIR at Cinderblocks3 CMS BlueButton on FHIR at Cinderblocks3
CMS BlueButton on FHIR at Cinderblocks3 Mark Scrimshire
 
BlueButton on FHIR - HxRefactored 2016
BlueButton on FHIR - HxRefactored 2016BlueButton on FHIR - HxRefactored 2016
BlueButton on FHIR - HxRefactored 2016Mark Scrimshire
 
Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...
Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...
Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...Mark Scrimshire
 
CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...
CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...
CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...Mark Scrimshire
 
A Baptism of FHIR - The Layman's intro to HL7 FHIR
A Baptism of FHIR - The Layman's intro to HL7 FHIRA Baptism of FHIR - The Layman's intro to HL7 FHIR
A Baptism of FHIR - The Layman's intro to HL7 FHIRMark Scrimshire
 
BlueButton on FHIR @HXRconf
BlueButton on FHIR @HXRconf BlueButton on FHIR @HXRconf
BlueButton on FHIR @HXRconf Mark Scrimshire
 
Mongodb and the Health Care Challenge
Mongodb and the Health Care ChallengeMongodb and the Health Care Challenge
Mongodb and the Health Care ChallengeMark Scrimshire
 
Building for big data in the cloud
Building for big data in the cloudBuilding for big data in the cloud
Building for big data in the cloudMark Scrimshire
 
140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...
140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...
140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...Mark Scrimshire
 
Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...
Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...
Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...Mark Scrimshire
 

More from Mark Scrimshire (20)

Blue Button for Medicaid
Blue Button for Medicaid Blue Button for Medicaid
Blue Button for Medicaid
 
ONC2019 #interopforum Blue Button 2.0 lessons-learned
ONC2019 #interopforum Blue Button 2.0 lessons-learnedONC2019 #interopforum Blue Button 2.0 lessons-learned
ONC2019 #interopforum Blue Button 2.0 lessons-learned
 
Blue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR Workshop
Blue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR WorkshopBlue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR Workshop
Blue Button 2.0 at ONC Annual Meeting - API 101 and ONC FHIR Workshop
 
Blue Button 2.0 - At ONC Interoperability Forum
Blue Button 2.0 - At ONC Interoperability ForumBlue Button 2.0 - At ONC Interoperability Forum
Blue Button 2.0 - At ONC Interoperability Forum
 
CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017
CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017
CMS Blue Button API - Developer Preview from Health 2.0 #h20devday, 2017
 
POET Application Verification for Consumer Health Apps
POET Application Verification for Consumer Health AppsPOET Application Verification for Consumer Health Apps
POET Application Verification for Consumer Health Apps
 
The Power of Consumer Directed Health Data
The Power of Consumer Directed Health DataThe Power of Consumer Directed Health Data
The Power of Consumer Directed Health Data
 
The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)
The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)
The Power of Beneficiary-Directed Data (CMS BlueButton on FHIR API Update)
 
BlueButton on FHIR at HIMSS'17 HL7 API Symposium
BlueButton on FHIR at HIMSS'17 HL7 API SymposiumBlueButton on FHIR at HIMSS'17 HL7 API Symposium
BlueButton on FHIR at HIMSS'17 HL7 API Symposium
 
CMS BlueButton On FHIR - HIMSS17 Update
CMS BlueButton On FHIR - HIMSS17 UpdateCMS BlueButton On FHIR - HIMSS17 Update
CMS BlueButton On FHIR - HIMSS17 Update
 
CMS BlueButton on FHIR at Cinderblocks3
CMS BlueButton on FHIR at Cinderblocks3 CMS BlueButton on FHIR at Cinderblocks3
CMS BlueButton on FHIR at Cinderblocks3
 
BlueButton on FHIR - HxRefactored 2016
BlueButton on FHIR - HxRefactored 2016BlueButton on FHIR - HxRefactored 2016
BlueButton on FHIR - HxRefactored 2016
 
Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...
Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...
Aneesh Chopra - HealthCa.mp/dev Keynote. 2016: the Year to participate in the...
 
CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...
CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...
CMS BlueButton On FHIR for Researchers - Presentation to NIH and PCORI Resear...
 
A Baptism of FHIR - The Layman's intro to HL7 FHIR
A Baptism of FHIR - The Layman's intro to HL7 FHIRA Baptism of FHIR - The Layman's intro to HL7 FHIR
A Baptism of FHIR - The Layman's intro to HL7 FHIR
 
BlueButton on FHIR @HXRconf
BlueButton on FHIR @HXRconf BlueButton on FHIR @HXRconf
BlueButton on FHIR @HXRconf
 
Mongodb and the Health Care Challenge
Mongodb and the Health Care ChallengeMongodb and the Health Care Challenge
Mongodb and the Health Care Challenge
 
Building for big data in the cloud
Building for big data in the cloudBuilding for big data in the cloud
Building for big data in the cloud
 
140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...
140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...
140 Seconds Per Day To Tap Your Passion. Build Your Reputation. Create Opport...
 
Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...
Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...
Data Sharing and Caring In HealthCare - MedYear's experience building Big Dat...
 

B bon fhir_workshop