SlideShare a Scribd company logo
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 1/33
FHIRSTFHIRST
Nikolai Ryzhikov CTO @ Health Samurai
@niquola (tw, gmail, gh)
SF FHIR; Jan 2019
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 2/33
ABOUT ME & SAMURAIABOUT ME & SAMURAI
with FHIR from 2012
fhirbase (OS database)
fhir.js
fhirpath (js, clj, postgres)
storage & analytic track
[a]idbox - FHIR backend since 2015
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 3/33
WHAT IS FHIR?WHAT IS FHIR?
HL7 standard
Community
Eco-system
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 4/33
FHIR AS A STANDARDFHIR AS A STANDARD
Happy New normative release (ANSI)
ONC Open API (stage III)
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 5/33
FHIR AS A COMMUNITY!FHIR AS A COMMUNITY!
- join now
- read more
- this weekend
chat.fhir.org
wiki.hl7.org
Connectathons
FHIR Foundation
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 6/33
FHIR AS A ECO-SYSTEM!FHIR AS A ECO-SYSTEM!
More Tools: Profiling, Analytic, QA
Servers
Libraries
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 7/33
FHIRFHIR
was designed for interop
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 8/33
but can be used for development
FHIR FIRSTFHIR FIRST
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 9/33
1. INFORMATIONAL MODEL1. INFORMATIONAL MODEL
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 10/33
FHIR RESOURCEFHIR RESOURCE
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 11/33
RESOURCE = DDD AGGREGATERESOURCE = DDD AGGREGATE
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 12/33
FHIR RESOURCESFHIR RESOURCES
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 13/33
2. TERMINOLOGY FRAMEWORK2. TERMINOLOGY FRAMEWORK
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 14/33
CODED ELEMENTSCODED ELEMENTS
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 15/33
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 16/33
BINDINGSBINDINGS
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 17/33
TERMINOLOGY SERVICETERMINOLOGY SERVICE
GET [base]/ValueSet/23/$expand?filter=abdo
GET [base]/CodeSystem/loinc/$lookup?code=1963-8
GET [base]/ValueSet/23/$validate-code?system=http://loinc.org&
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 18/33
3. REST API3. REST API
Search
CRUD
History
Transactions
GraphQL
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 19/33
REST APIREST API
GET /Patient/_search?name=john&birthDate=lt1960
POST /Patient/
GET /Patient/pt-id
PUT /Patient/pt-id
PATCH /Patient/pt-id
DELETE /Patient/pt-id
GET /Patient/$history
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 20/33
Well-designed
BACKEND SPECIFICATION!?BACKEND SPECIFICATION!?
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 21/33
4. RE-USE4. RE-USE
libraries
frameworks
servers
save time & resources
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 22/33
SOME PROBLEMS :(SOME PROBLEMS :(
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 23/33
EXTENSIBILITYEXTENSIBILITY
closed-world-assumption
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 24/33
EXTENSIONSEXTENSIONS
resourceType: Patient
extension:
- url: http://hl7.org/fhir/StructureDefinition/patient-clinica
extension:
- url: NCT
valueString: '123456789'
- url: period
valuePeriod:
start: '2009-03-14'
- url: reason
valueCodeableConcept:
coding:
- system: http://acme.org/codes/general
code: tt14j
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 25/33
FIRST CLASS EXTENSIONSFIRST CLASS EXTENSIONS
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 26/33
WANTEDWANTED
Name clash?
RDF & clojure - namespaced keys
resourceType: Patient
clinicalTrial:
period: '2009-03-14'
NTC: '123456789'
reason:
coding:
- system: http://acme.org/codes/general
code: tt14j
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 27/33
UNIFY DEFINITION OF CORE AND EXTENSIONSUNIFY DEFINITION OF CORE AND EXTENSIONS
- resourceType: ElementDefinition
source: fhir
path: [name]
type: { id: HumanName }
resource: { id: Patient }
- resourceType: ElementDefinition
source: us-core
path: [race]
type: { id: Coding }
resource: { id: Patient }
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 28/33
VERSION-LESS FHIRVERSION-LESS FHIR
releases as a package of extensions
feature detection vs versions
backward & forward compatibility
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 29/33
FHIR search is complicated & limited
SQL APISQL API
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 30/33
FHIR & SQL FOR RESCUEFHIR & SQL FOR RESCUE
join storage & analytic track
SELECT DISTINCT(p.id), p.resource#>'{name,0}'
FROM patient p
JOIN observation o ON o.resource#>>'{subject,id}' = p.id
WHERE (o.resource @> '{"code": {"coding": [{"code": "72166-2"}
AND ((o.resource @> '{"value": {"CodeableConcept": { "coding
OR (o.resource @> '{"value": {"CodeableConcept": { "cod
AND (extract(year from age(now(), (p.resource->>'birthDate')
AND (p.resource->>'gender' = 'male'); -- patient gender is m
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 31/33
FHIRSTFHIRST
Number of Digital Health startups
Narus Health
Cleo EHR
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 32/33
DIGITAL HEALTH LEGODIGITAL HEALTH LEGO
1/16/2019 fhir meetup
https://niquola.github.io/sffhir-2019-slides/?print-pdf#/ 33/33
THXTHX

More Related Content

Similar to FHIR-first development of healthcare applications

Better Than BASH: Scripting Kotlin
Better Than BASH: Scripting KotlinBetter Than BASH: Scripting Kotlin
Better Than BASH: Scripting Kotlin
VMware Tanzu
 
Management Zabbix with Terraform
Management Zabbix with TerraformManagement Zabbix with Terraform
Management Zabbix with Terraform
Aécio Pires
 
Automation and Culture Changes for 40M Subscriber Platform Operation
Automation and Culture Changes for 40M Subscriber Platform OperationAutomation and Culture Changes for 40M Subscriber Platform Operation
Automation and Culture Changes for 40M Subscriber Platform Operation
VMware Tanzu
 
Implementing Physical Units Library for C++
Implementing Physical Units Library for C++Implementing Physical Units Library for C++
Implementing Physical Units Library for C++
Mateusz Pusz
 
PGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live forever
PGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live foreverPGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live forever
PGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live forever
PGDay.Amsterdam
 
Python Infographic
Python InfographicPython Infographic
Python Infographic
BairesDev
 
Most popular Python Frameworks & Tools
Most popular Python Frameworks & ToolsMost popular Python Frameworks & Tools
Most popular Python Frameworks & Tools
Paul Azorin
 
ITAM UK 2017 Open source alternatives_John Springall
ITAM UK 2017 Open source alternatives_John Springall ITAM UK 2017 Open source alternatives_John Springall
ITAM UK 2017 Open source alternatives_John Springall
Martin Thompson
 
Patching like a hero - DOAG
Patching like a hero -  DOAGPatching like a hero -  DOAG
Patching like a hero - DOAG
Rodrigo Mufalani
 
Microwind: main features are layout and FinFET
Microwind: main features are layout and FinFETMicrowind: main features are layout and FinFET
Microwind: main features are layout and FinFET
Hoopeer Hoopeer
 
[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...
[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...
[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...
Naoki (Neo) SATO
 
FAIR Cookbook
FAIR Cookbook FAIR Cookbook
FAIR Cookbook
Susanna-Assunta Sansone
 
Towards Knowledge Graph based Representation, Augmentation and Exploration of...
Towards Knowledge Graph based Representation, Augmentation and Exploration of...Towards Knowledge Graph based Representation, Augmentation and Exploration of...
Towards Knowledge Graph based Representation, Augmentation and Exploration of...
Sören Auer
 
OpenHPC Update
OpenHPC UpdateOpenHPC Update
OpenHPC Update
inside-BigData.com
 
Complex Made Simple @ LF Energy Conference in Paris
Complex Made Simple @ LF Energy Conference in ParisComplex Made Simple @ LF Energy Conference in Paris
Complex Made Simple @ LF Energy Conference in Paris
Shane Coughlan
 
Hicss52 20190108 v2
Hicss52 20190108 v2Hicss52 20190108 v2
Hicss52 20190108 v2
ISSIP
 
From Academic Library 2.0 to (Literature) Research 2.0
From Academic Library 2.0  to (Literature) Research 2.0From Academic Library 2.0  to (Literature) Research 2.0
From Academic Library 2.0 to (Literature) Research 2.0
Michael Habib
 
Postgres Vision 2018: Will Postgres Live Forever?
Postgres Vision 2018: Will Postgres Live Forever?Postgres Vision 2018: Will Postgres Live Forever?
Postgres Vision 2018: Will Postgres Live Forever?
EDB
 
Using OpenChain for Practical Open Source Software Supply Chain Management (O...
Using OpenChain for Practical Open Source Software Supply Chain Management (O...Using OpenChain for Practical Open Source Software Supply Chain Management (O...
Using OpenChain for Practical Open Source Software Supply Chain Management (O...
Shane Coughlan
 
DrTAD Blender & Python. Creating 3D primitives with writing codes
DrTAD Blender & Python. Creating 3D primitives with writing codesDrTAD Blender & Python. Creating 3D primitives with writing codes
DrTAD Blender & Python. Creating 3D primitives with writing codes
FIDE Master Tihomir Dovramadjiev PhD
 

Similar to FHIR-first development of healthcare applications (20)

Better Than BASH: Scripting Kotlin
Better Than BASH: Scripting KotlinBetter Than BASH: Scripting Kotlin
Better Than BASH: Scripting Kotlin
 
Management Zabbix with Terraform
Management Zabbix with TerraformManagement Zabbix with Terraform
Management Zabbix with Terraform
 
Automation and Culture Changes for 40M Subscriber Platform Operation
Automation and Culture Changes for 40M Subscriber Platform OperationAutomation and Culture Changes for 40M Subscriber Platform Operation
Automation and Culture Changes for 40M Subscriber Platform Operation
 
Implementing Physical Units Library for C++
Implementing Physical Units Library for C++Implementing Physical Units Library for C++
Implementing Physical Units Library for C++
 
PGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live forever
PGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live foreverPGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live forever
PGDay.Amsterdam 2018 - Bruce Momjian - Will postgres live forever
 
Python Infographic
Python InfographicPython Infographic
Python Infographic
 
Most popular Python Frameworks & Tools
Most popular Python Frameworks & ToolsMost popular Python Frameworks & Tools
Most popular Python Frameworks & Tools
 
ITAM UK 2017 Open source alternatives_John Springall
ITAM UK 2017 Open source alternatives_John Springall ITAM UK 2017 Open source alternatives_John Springall
ITAM UK 2017 Open source alternatives_John Springall
 
Patching like a hero - DOAG
Patching like a hero -  DOAGPatching like a hero -  DOAG
Patching like a hero - DOAG
 
Microwind: main features are layout and FinFET
Microwind: main features are layout and FinFETMicrowind: main features are layout and FinFET
Microwind: main features are layout and FinFET
 
[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...
[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...
[Azure Council Experts (ACE) 第36回定例会] Microsoft Azureアップデート情報 (2019/06/14-201...
 
FAIR Cookbook
FAIR Cookbook FAIR Cookbook
FAIR Cookbook
 
Towards Knowledge Graph based Representation, Augmentation and Exploration of...
Towards Knowledge Graph based Representation, Augmentation and Exploration of...Towards Knowledge Graph based Representation, Augmentation and Exploration of...
Towards Knowledge Graph based Representation, Augmentation and Exploration of...
 
OpenHPC Update
OpenHPC UpdateOpenHPC Update
OpenHPC Update
 
Complex Made Simple @ LF Energy Conference in Paris
Complex Made Simple @ LF Energy Conference in ParisComplex Made Simple @ LF Energy Conference in Paris
Complex Made Simple @ LF Energy Conference in Paris
 
Hicss52 20190108 v2
Hicss52 20190108 v2Hicss52 20190108 v2
Hicss52 20190108 v2
 
From Academic Library 2.0 to (Literature) Research 2.0
From Academic Library 2.0  to (Literature) Research 2.0From Academic Library 2.0  to (Literature) Research 2.0
From Academic Library 2.0 to (Literature) Research 2.0
 
Postgres Vision 2018: Will Postgres Live Forever?
Postgres Vision 2018: Will Postgres Live Forever?Postgres Vision 2018: Will Postgres Live Forever?
Postgres Vision 2018: Will Postgres Live Forever?
 
Using OpenChain for Practical Open Source Software Supply Chain Management (O...
Using OpenChain for Practical Open Source Software Supply Chain Management (O...Using OpenChain for Practical Open Source Software Supply Chain Management (O...
Using OpenChain for Practical Open Source Software Supply Chain Management (O...
 
DrTAD Blender & Python. Creating 3D primitives with writing codes
DrTAD Blender & Python. Creating 3D primitives with writing codesDrTAD Blender & Python. Creating 3D primitives with writing codes
DrTAD Blender & Python. Creating 3D primitives with writing codes
 

More from HealthDev

CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...
CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...
CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...
HealthDev
 
FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin
FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin
FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin
HealthDev
 
Google Cloud healthcare data platform and FHIR APIs by Kalyan Pamarthy
Google Cloud healthcare data platform and FHIR APIs by Kalyan PamarthyGoogle Cloud healthcare data platform and FHIR APIs by Kalyan Pamarthy
Google Cloud healthcare data platform and FHIR APIs by Kalyan Pamarthy
HealthDev
 
Oncology data on FHIR, Kaushal Parekh & Sujata Patil
Oncology data on FHIR, Kaushal Parekh & Sujata PatilOncology data on FHIR, Kaushal Parekh & Sujata Patil
Oncology data on FHIR, Kaushal Parekh & Sujata Patil
HealthDev
 
Virtual FHIR meetup introduction
Virtual FHIR meetup introductionVirtual FHIR meetup introduction
Virtual FHIR meetup introduction
HealthDev
 
Pavel Smirnov, Health Samurai - FHIR business opportunities
Pavel Smirnov, Health Samurai - FHIR business opportunitiesPavel Smirnov, Health Samurai - FHIR business opportunities
Pavel Smirnov, Health Samurai - FHIR business opportunities
HealthDev
 
Tarek Ibrahim - Human API introduction
Tarek Ibrahim - Human API introductionTarek Ibrahim - Human API introduction
Tarek Ibrahim - Human API introduction
HealthDev
 
Omar Shaker - How can FHIR Influence our standard of clinical care?
Omar Shaker - How can FHIR Influence our standard of clinical care?Omar Shaker - How can FHIR Influence our standard of clinical care?
Omar Shaker - How can FHIR Influence our standard of clinical care?
HealthDev
 
Anish Arora - Playing With FHIR - A Practical Approach
Anish Arora - Playing With FHIR - A Practical ApproachAnish Arora - Playing With FHIR - A Practical Approach
Anish Arora - Playing With FHIR - A Practical Approach
HealthDev
 
Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.
Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.
Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.
HealthDev
 
Brendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API World
Brendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API WorldBrendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API World
Brendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API World
HealthDev
 
Pavel Smirnov. FHIR-first application development.
Pavel Smirnov. FHIR-first application development.Pavel Smirnov. FHIR-first application development.
Pavel Smirnov. FHIR-first application development.
HealthDev
 
Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.
Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.
Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.
HealthDev
 
Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.
Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.
Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.
HealthDev
 
SMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLA
SMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLASMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLA
SMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLA
HealthDev
 
STATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLA
STATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLASTATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLA
STATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLA
HealthDev
 
Open mHealth, FHIR and beyond
Open mHealth, FHIR and beyondOpen mHealth, FHIR and beyond
Open mHealth, FHIR and beyond
HealthDev
 

More from HealthDev (17)

CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...
CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...
CMS Interoperability and Patient Access final rule and Health Samurai FHIR pl...
 
FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin
FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin
FHIR® in Action: How UCSF Uses FHIR® to Enable Innovation by Ed Martin
 
Google Cloud healthcare data platform and FHIR APIs by Kalyan Pamarthy
Google Cloud healthcare data platform and FHIR APIs by Kalyan PamarthyGoogle Cloud healthcare data platform and FHIR APIs by Kalyan Pamarthy
Google Cloud healthcare data platform and FHIR APIs by Kalyan Pamarthy
 
Oncology data on FHIR, Kaushal Parekh & Sujata Patil
Oncology data on FHIR, Kaushal Parekh & Sujata PatilOncology data on FHIR, Kaushal Parekh & Sujata Patil
Oncology data on FHIR, Kaushal Parekh & Sujata Patil
 
Virtual FHIR meetup introduction
Virtual FHIR meetup introductionVirtual FHIR meetup introduction
Virtual FHIR meetup introduction
 
Pavel Smirnov, Health Samurai - FHIR business opportunities
Pavel Smirnov, Health Samurai - FHIR business opportunitiesPavel Smirnov, Health Samurai - FHIR business opportunities
Pavel Smirnov, Health Samurai - FHIR business opportunities
 
Tarek Ibrahim - Human API introduction
Tarek Ibrahim - Human API introductionTarek Ibrahim - Human API introduction
Tarek Ibrahim - Human API introduction
 
Omar Shaker - How can FHIR Influence our standard of clinical care?
Omar Shaker - How can FHIR Influence our standard of clinical care?Omar Shaker - How can FHIR Influence our standard of clinical care?
Omar Shaker - How can FHIR Influence our standard of clinical care?
 
Anish Arora - Playing With FHIR - A Practical Approach
Anish Arora - Playing With FHIR - A Practical ApproachAnish Arora - Playing With FHIR - A Practical Approach
Anish Arora - Playing With FHIR - A Practical Approach
 
Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.
Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.
Nick Radov, Payer/Provider - Interoperability & HL7 Da Vinci Project.
 
Brendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API World
Brendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API WorldBrendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API World
Brendan Keeler - Who Trusts FHIR? Paradigms of Exchange in an API World
 
Pavel Smirnov. FHIR-first application development.
Pavel Smirnov. FHIR-first application development.Pavel Smirnov. FHIR-first application development.
Pavel Smirnov. FHIR-first application development.
 
Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.
Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.
Aziz Boxwala, MD, Ph.D. SMART-on-FHIR specification & Sapphire demo.
 
Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.
Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.
Claude Nanjo. Modeling with FHIR. An Introduction to FHIR.
 
SMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLA
SMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLASMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLA
SMART on FHIR apps by Aziz Boxwala, MD, PhD at ScaleLA
 
STATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLA
STATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLASTATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLA
STATE OF MOBILE HEALTH on FHIR by Gora Datta at ScaleLA
 
Open mHealth, FHIR and beyond
Open mHealth, FHIR and beyondOpen mHealth, FHIR and beyond
Open mHealth, FHIR and beyond
 

Recently uploaded

Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
Globus
 
Visitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.appVisitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.app
NaapbooksPrivateLimi
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Natan Silnitsky
 
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, BetterWebinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
XfilesPro
 
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Globus
 
Advanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should KnowAdvanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should Know
Peter Caitens
 
De mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FMEDe mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FME
Jelle | Nordend
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
Paco van Beckhoven
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
kalichargn70th171
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
takuyayamamoto1800
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
Globus
 
Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...
Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...
Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...
Globus
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
vrstrong314
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
Cyanic lab
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
Ortus Solutions, Corp
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Globus
 
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
XfilesPro
 
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Shahin Sheidaei
 
Software Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdfSoftware Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdf
MayankTawar1
 

Recently uploaded (20)

Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
 
Visitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.appVisitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.app
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
 
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, BetterWebinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
 
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...
 
Advanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should KnowAdvanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should Know
 
De mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FMEDe mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FME
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
 
Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...
Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...
Climate Science Flows: Enabling Petabyte-Scale Climate Analysis with the Eart...
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
 
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
 
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
 
Software Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdfSoftware Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdf
 

FHIR-first development of healthcare applications