SlideShare a Scribd company logo
1 of 28
Download to read offline
Pavel Smirnov, CEO, Health Samurai pavel@health-samurai.io
FHIR-first application development.
Inaugural FHIR meetup at the UC San Diego
Organizations struggle to innovate
https://www.mobihealthnews.com/content/mobile-health-app-development-costs-425000-average-likely-continuing-rise
FHIR
2012 2013 20152005
Cloud EHR
is a FHIR company
2019
Fhirbase Aidbox
FHIR-first
applications
• FHIR Model
• FHIR API
• FHIR Community
• FHIR tooling
Built with FHIR inside
5
FHIR data
model
FHIR RESOURCES
6
What is
different?
MAPPING YOUR DATA TO FHIR
7
FHIR API
FHIR API - demo with Postman
8
FHIR
community
FHIR COMMUNITY
CHAT.FHIR.ORG
9
FHIR tooling
FHIR TOOLING - SERVERS
Health Samurai’s Aidbox
Azure API for FHIR
Google Healthcare API
Firely Vonk
SmileCDR
HAPI FHIR
Publicly available FHIR servers from HL7
1
0
FHIR:
Lessons
learned
WHAT IS GREAT ABOUT FHIR
• Quality data models for common medical and financial data
• The FHIR community is incredible – chat.fhir.org
• API and tools that are easy to learn and use for web and mobile
apps
• FHIR facilitates interoperability with legacy standards
• The FHIR specification describes an easy way to use terminology
services
1
1
FHIR:
Lessons
learned
WHAT IS NOT SO GOOD
• Migration between FHIR versions can be painful
• FHIR Extensions and profiles can be complicated to use
1
2
FHIR:
Lessons
learned
WHAT FHIR IS NOT
• FHIR does not address technological concerns such as your
system architecture
• FHIR API is limited might be not enough for your real app
• FHIR is not a security protocol
• FHIR doesn’t address infrastructure
is a development platform
for FHIR-first applications
FHIR Storage
REST API & SQL
Terminology Server
Security & Access Control
Custom Resources
Ecosystem of Add-ons
Cloud Infrastructure
Aidbox
Platform
for FHIR-first Apps
1
5
FHIR data
model
extensibility
What if there is no FHIR resource for your use case?
{
resourceType: “User”,
email: “niquola@health-samurai.io",
relationships: [
{
type: “Patient”,
reference: “Patient/pt-1”
},
{
type: “Patient”,
reference: “Patient/pt-1”
},
]
…
}
1
6
FIRST-class
extensions
FIRST-CLASS EXTENSIONS
Patient.race
vs
Patient.extension.where(system=“http://…
/race”).value
Developer-friendly
Database-friendly
1
7
API extensibility
Aidbox API is extensible to support business logic of your
applications
● Custom Operations
● Plugins/Modules
● Subscriptions
For your tech developed with
Node.js
Python
Java
.NET
Golang
etc
1
8
SQL API
Postgres
SQL
ACID
SQL is Aidbox second API
with e as (
SELECT resource#>>'{period,start}' as visit_date,
resource#>>'{subject,id}' as patient
FROM encounter ),
p as ( SELECT id, resource->'name' as
name, age(DATE(resource->>'birthDate'))::text as
age, DATE(resource->>'birthDate') as birthdate
FROM patient )
SELECT p.id as patient, p.name as name,
e.visit_date as visit_date, p.age as age
FROM e JOIN p on p.id = e.patient
WHERE DATE(e.visit_date) >= (NOW()-(interval '2
years')) AND p.birthdate <= DATE('1976-01-01');
1
9
Demo
Demo
Nursing Care Workflow
Personalized Care Plans
Patient Medical Records
Secure Messaging
Mobile Apps for Patients
Data Analytics and Reporting
Case Study
Care Coordination
Platform
Front-desk Workflow
SMS Notifications
Billing workflow
Eligibility Checks
Claims Submission
Online Payments
BI reporting
Case Study
Dermatology EHR
Tableau
Power BI
Jupyter
Integration
Data Analytics plugins
Case Study
Workflow and Form Builder
Data First Approach
Reusable Components
Runtime Flexibility
Self-Service Analytics
Self-Service Digital forms
Extensible Architecture
Collaboration
platform
Case Study
RK 360 - Mobile App
Personal Medical Record
Apple HealthKit integration
Data sharing with providers
Data import from providers
Integration with NPI
2
6
Apple
HealthKit
example
Example of the FHIR-first mobile app integrated with
Apple HealthKit
https://github.com/aidbox/example
Let’s implement
your ideas on FHIR
Contacts
Pavel Smirnov, CEO, Health Samurai
Phone: (818) 731-1279
Email: pavel@health-samurai.io
Website: https://health-samurai.io
3415 S Sepulveda Blvd Ste 1000
Los Angeles, CA 90034 USA

More Related Content

What's hot

Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...
Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...
Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...FHIR Developer Days
 
Fhir basics session4_conformance_and_terminology
Fhir basics session4_conformance_and_terminologyFhir basics session4_conformance_and_terminology
Fhir basics session4_conformance_and_terminologyKumar Satyam
 
FHIR API for Java programmers by James Agnew
FHIR API for Java programmers by James AgnewFHIR API for Java programmers by James Agnew
FHIR API for Java programmers by James AgnewFHIR Developer Days
 
MDM Institute: Why is Reference data mission critical now?
MDM Institute: Why is Reference data mission critical now?MDM Institute: Why is Reference data mission critical now?
MDM Institute: Why is Reference data mission critical now?Orchestra Networks
 
Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...
Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...
Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...TIBCO Jaspersoft
 
Apache Atlas: Tracking dataset lineage across Hadoop components
Apache Atlas: Tracking dataset lineage across Hadoop componentsApache Atlas: Tracking dataset lineage across Hadoop components
Apache Atlas: Tracking dataset lineage across Hadoop componentsDataWorks Summit/Hadoop Summit
 
Session 2 - NGSI-LD primer & Smart Data Models | Train the Trainers Program
Session 2 - NGSI-LD primer & Smart Data Models | Train the Trainers ProgramSession 2 - NGSI-LD primer & Smart Data Models | Train the Trainers Program
Session 2 - NGSI-LD primer & Smart Data Models | Train the Trainers ProgramFIWARE
 
Fhir dev days 2017 fhir profiling - overview and introduction v07
Fhir dev days 2017   fhir profiling - overview and introduction v07Fhir dev days 2017   fhir profiling - overview and introduction v07
Fhir dev days 2017 fhir profiling - overview and introduction v07DevDays
 
2020-11-13 Anatomy of a FHIR Implementation Guide
2020-11-13 Anatomy of a FHIR Implementation Guide2020-11-13 Anatomy of a FHIR Implementation Guide
2020-11-13 Anatomy of a FHIR Implementation GuideRyan M Harrison
 
Data Modeling and Relational to NoSQL
 Data Modeling and Relational to NoSQL  Data Modeling and Relational to NoSQL
Data Modeling and Relational to NoSQL DATAVERSITY
 
Patient matching in FHIR
Patient matching in FHIRPatient matching in FHIR
Patient matching in FHIRGrahame Grieve
 
FHIR for clinicians
FHIR for clinicians FHIR for clinicians
FHIR for clinicians David Hay
 
HL7 Fhir for Developers
HL7 Fhir for DevelopersHL7 Fhir for Developers
HL7 Fhir for DevelopersEwout Kramer
 
Deep Dive into the OPC UA / DDS Gateway Specification
Deep Dive into the OPC UA / DDS Gateway SpecificationDeep Dive into the OPC UA / DDS Gateway Specification
Deep Dive into the OPC UA / DDS Gateway SpecificationGerardo Pardo-Castellote
 
FIWARE Training: API Umbrella
FIWARE Training: API UmbrellaFIWARE Training: API Umbrella
FIWARE Training: API UmbrellaFIWARE
 
Apache Druid®: A Dance of Distributed Processes
 Apache Druid®: A Dance of Distributed Processes Apache Druid®: A Dance of Distributed Processes
Apache Druid®: A Dance of Distributed ProcessesImply
 
Modern Requirements and Solutions for Privileged Access Management (PAM)
Modern Requirements and Solutions for Privileged Access Management (PAM)Modern Requirements and Solutions for Privileged Access Management (PAM)
Modern Requirements and Solutions for Privileged Access Management (PAM)Enterprise Management Associates
 
Designing An Enterprise Data Fabric
Designing An Enterprise Data FabricDesigning An Enterprise Data Fabric
Designing An Enterprise Data FabricAlan McSweeney
 

What's hot (20)

Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...
Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...
Rolling out FHIR - architecture and implementation considerations by Lloyd Mc...
 
Fhir basics session4_conformance_and_terminology
Fhir basics session4_conformance_and_terminologyFhir basics session4_conformance_and_terminology
Fhir basics session4_conformance_and_terminology
 
FHIR API for Java programmers by James Agnew
FHIR API for Java programmers by James AgnewFHIR API for Java programmers by James Agnew
FHIR API for Java programmers by James Agnew
 
Introduction to HL7 FHIR
Introduction to HL7 FHIRIntroduction to HL7 FHIR
Introduction to HL7 FHIR
 
MDM Institute: Why is Reference data mission critical now?
MDM Institute: Why is Reference data mission critical now?MDM Institute: Why is Reference data mission critical now?
MDM Institute: Why is Reference data mission critical now?
 
Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...
Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...
Fundamentals of Ad Hoc Reporting: Create a beautiful report-building oasis fo...
 
Apache Atlas: Tracking dataset lineage across Hadoop components
Apache Atlas: Tracking dataset lineage across Hadoop componentsApache Atlas: Tracking dataset lineage across Hadoop components
Apache Atlas: Tracking dataset lineage across Hadoop components
 
Session 2 - NGSI-LD primer & Smart Data Models | Train the Trainers Program
Session 2 - NGSI-LD primer & Smart Data Models | Train the Trainers ProgramSession 2 - NGSI-LD primer & Smart Data Models | Train the Trainers Program
Session 2 - NGSI-LD primer & Smart Data Models | Train the Trainers Program
 
Fhir dev days 2017 fhir profiling - overview and introduction v07
Fhir dev days 2017   fhir profiling - overview and introduction v07Fhir dev days 2017   fhir profiling - overview and introduction v07
Fhir dev days 2017 fhir profiling - overview and introduction v07
 
2020-11-13 Anatomy of a FHIR Implementation Guide
2020-11-13 Anatomy of a FHIR Implementation Guide2020-11-13 Anatomy of a FHIR Implementation Guide
2020-11-13 Anatomy of a FHIR Implementation Guide
 
Data Modeling and Relational to NoSQL
 Data Modeling and Relational to NoSQL  Data Modeling and Relational to NoSQL
Data Modeling and Relational to NoSQL
 
Patient matching in FHIR
Patient matching in FHIRPatient matching in FHIR
Patient matching in FHIR
 
FHIR for clinicians
FHIR for clinicians FHIR for clinicians
FHIR for clinicians
 
HL7 Fhir for Developers
HL7 Fhir for DevelopersHL7 Fhir for Developers
HL7 Fhir for Developers
 
Deep Dive into the OPC UA / DDS Gateway Specification
Deep Dive into the OPC UA / DDS Gateway SpecificationDeep Dive into the OPC UA / DDS Gateway Specification
Deep Dive into the OPC UA / DDS Gateway Specification
 
FIWARE Training: API Umbrella
FIWARE Training: API UmbrellaFIWARE Training: API Umbrella
FIWARE Training: API Umbrella
 
Apache Druid®: A Dance of Distributed Processes
 Apache Druid®: A Dance of Distributed Processes Apache Druid®: A Dance of Distributed Processes
Apache Druid®: A Dance of Distributed Processes
 
信頼の構造と トラストフレームワーク ( 満塩尚史)
信頼の構造と トラストフレームワーク    ( 満塩尚史)信頼の構造と トラストフレームワーク    ( 満塩尚史)
信頼の構造と トラストフレームワーク ( 満塩尚史)
 
Modern Requirements and Solutions for Privileged Access Management (PAM)
Modern Requirements and Solutions for Privileged Access Management (PAM)Modern Requirements and Solutions for Privileged Access Management (PAM)
Modern Requirements and Solutions for Privileged Access Management (PAM)
 
Designing An Enterprise Data Fabric
Designing An Enterprise Data FabricDesigning An Enterprise Data Fabric
Designing An Enterprise Data Fabric
 

Similar to Pavel Smirnov. FHIR-first application development.

Create FHIR-Enabled Experiences: API-First Approach for Healthcare Apps
Create FHIR-Enabled Experiences: API-First Approach for Healthcare AppsCreate FHIR-Enabled Experiences: API-First Approach for Healthcare Apps
Create FHIR-Enabled Experiences: API-First Approach for Healthcare AppsApigee | Google Cloud
 
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 ApproachHealthDev
 
FHIR for Hackers
FHIR for HackersFHIR for Hackers
FHIR for HackersJames Agnew
 
Building an Integrated Healthcare Platform with FHIR®
Building an Integrated Healthcare Platform with FHIR®Building an Integrated Healthcare Platform with FHIR®
Building an Integrated Healthcare Platform with FHIR®WSO2
 
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 PamarthyHealthDev
 
Using FHIR for Interoperability
Using FHIR for InteroperabilityUsing FHIR for Interoperability
Using FHIR for InteroperabilityIatric Systems
 
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 opportunitiesHealthDev
 
HL7 Releases FHIR 4 - Highlights, Impact and More
HL7 Releases FHIR 4 - Highlights, Impact and MoreHL7 Releases FHIR 4 - Highlights, Impact and More
HL7 Releases FHIR 4 - Highlights, Impact and MoreCitiusTech
 
Open ap is-infrastructure4innovation_internetofhealth2018_v3
Open ap is-infrastructure4innovation_internetofhealth2018_v3Open ap is-infrastructure4innovation_internetofhealth2018_v3
Open ap is-infrastructure4innovation_internetofhealth2018_v3AnnaSeebergHansen
 
FHIR intro and background at HL7 Germany 2014
FHIR intro and background at HL7 Germany 2014FHIR intro and background at HL7 Germany 2014
FHIR intro and background at HL7 Germany 2014Ewout Kramer
 
FHIR overview at EHiN 2014, Oslo
FHIR overview at EHiN 2014, OsloFHIR overview at EHiN 2014, Oslo
FHIR overview at EHiN 2014, OsloEwout Kramer
 
5A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 2014
5A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 20145A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 2014
5A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 2014IKT-Norge
 
APIs, data formats and the growing might of FHIR
APIs, data formats and the growing might of FHIRAPIs, data formats and the growing might of FHIR
APIs, data formats and the growing might of FHIRVlad Stirbu
 
Integrating Healthcare Applications with EMR Systems and Databases and Transf...
Integrating Healthcare Applications with EMR Systems and Databases and Transf...Integrating Healthcare Applications with EMR Systems and Databases and Transf...
Integrating Healthcare Applications with EMR Systems and Databases and Transf...WSO2
 
SMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der BurgSMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der BurgFurore_com
 
SMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der BurgSMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der BurgFHIR Developer Days
 
IHE on FHIR and DICOMweb 2017
IHE on FHIR and DICOMweb 2017IHE on FHIR and DICOMweb 2017
IHE on FHIR and DICOMweb 2017Brad Genereaux
 
Personium - Open Source PDS envisioning the Web of MyData
Personium - Open Source PDS envisioning the Web of MyDataPersonium - Open Source PDS envisioning the Web of MyData
Personium - Open Source PDS envisioning the Web of MyData暁生 下野
 
Edifecs- warming up to fhir
Edifecs- warming up to fhirEdifecs- warming up to fhir
Edifecs- warming up to fhirEdifecs Inc
 
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
 

Similar to Pavel Smirnov. FHIR-first application development. (20)

Create FHIR-Enabled Experiences: API-First Approach for Healthcare Apps
Create FHIR-Enabled Experiences: API-First Approach for Healthcare AppsCreate FHIR-Enabled Experiences: API-First Approach for Healthcare Apps
Create FHIR-Enabled Experiences: API-First Approach for Healthcare Apps
 
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
 
FHIR for Hackers
FHIR for HackersFHIR for Hackers
FHIR for Hackers
 
Building an Integrated Healthcare Platform with FHIR®
Building an Integrated Healthcare Platform with FHIR®Building an Integrated Healthcare Platform with FHIR®
Building an Integrated Healthcare Platform with FHIR®
 
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
 
Using FHIR for Interoperability
Using FHIR for InteroperabilityUsing FHIR for Interoperability
Using FHIR for Interoperability
 
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
 
HL7 Releases FHIR 4 - Highlights, Impact and More
HL7 Releases FHIR 4 - Highlights, Impact and MoreHL7 Releases FHIR 4 - Highlights, Impact and More
HL7 Releases FHIR 4 - Highlights, Impact and More
 
Open ap is-infrastructure4innovation_internetofhealth2018_v3
Open ap is-infrastructure4innovation_internetofhealth2018_v3Open ap is-infrastructure4innovation_internetofhealth2018_v3
Open ap is-infrastructure4innovation_internetofhealth2018_v3
 
FHIR intro and background at HL7 Germany 2014
FHIR intro and background at HL7 Germany 2014FHIR intro and background at HL7 Germany 2014
FHIR intro and background at HL7 Germany 2014
 
FHIR overview at EHiN 2014, Oslo
FHIR overview at EHiN 2014, OsloFHIR overview at EHiN 2014, Oslo
FHIR overview at EHiN 2014, Oslo
 
5A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 2014
5A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 20145A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 2014
5A Kramer FHIR Out-of-the-box eHealth interoperability EHiN 2014
 
APIs, data formats and the growing might of FHIR
APIs, data formats and the growing might of FHIRAPIs, data formats and the growing might of FHIR
APIs, data formats and the growing might of FHIR
 
Integrating Healthcare Applications with EMR Systems and Databases and Transf...
Integrating Healthcare Applications with EMR Systems and Databases and Transf...Integrating Healthcare Applications with EMR Systems and Databases and Transf...
Integrating Healthcare Applications with EMR Systems and Databases and Transf...
 
SMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der BurgSMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der Burg
 
SMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der BurgSMART on FHIR by Scot Post van der Burg
SMART on FHIR by Scot Post van der Burg
 
IHE on FHIR and DICOMweb 2017
IHE on FHIR and DICOMweb 2017IHE on FHIR and DICOMweb 2017
IHE on FHIR and DICOMweb 2017
 
Personium - Open Source PDS envisioning the Web of MyData
Personium - Open Source PDS envisioning the Web of MyDataPersonium - Open Source PDS envisioning the Web of MyData
Personium - Open Source PDS envisioning the Web of MyData
 
Edifecs- warming up to fhir
Edifecs- warming up to fhirEdifecs- warming up to fhir
Edifecs- warming up to fhir
 
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
 

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
 
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 PatilHealthDev
 
Virtual FHIR meetup introduction
Virtual FHIR meetup introductionVirtual FHIR meetup introduction
Virtual FHIR meetup introductionHealthDev
 
Tarek Ibrahim - Human API introduction
Tarek Ibrahim - Human API introductionTarek Ibrahim - Human API introduction
Tarek Ibrahim - Human API introductionHealthDev
 
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
 
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 WorldHealthDev
 
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
 
FHIR databases by Nikolai Ryzhikov, PhD at ScaleLA
FHIR databases by Nikolai Ryzhikov, PhD at ScaleLAFHIR databases by Nikolai Ryzhikov, PhD at ScaleLA
FHIR databases by Nikolai Ryzhikov, PhD at ScaleLAHealthDev
 
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 ScaleLAHealthDev
 
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 ScaleLAHealthDev
 
FHIR-first development of healthcare applications
FHIR-first development of healthcare applicationsFHIR-first development of healthcare applications
FHIR-first development of healthcare applicationsHealthDev
 
Open mHealth, FHIR and beyond
Open mHealth, FHIR and beyondOpen mHealth, FHIR and beyond
Open mHealth, FHIR and beyondHealthDev
 

More from HealthDev (15)

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
 
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
 
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?
 
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
 
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.
 
FHIR databases by Nikolai Ryzhikov, PhD at ScaleLA
FHIR databases by Nikolai Ryzhikov, PhD at ScaleLAFHIR databases by Nikolai Ryzhikov, PhD at ScaleLA
FHIR databases by Nikolai Ryzhikov, PhD at ScaleLA
 
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
 
FHIR-first development of healthcare applications
FHIR-first development of healthcare applicationsFHIR-first development of healthcare applications
FHIR-first development of healthcare applications
 
Open mHealth, FHIR and beyond
Open mHealth, FHIR and beyondOpen mHealth, FHIR and beyond
Open mHealth, FHIR and beyond
 

Recently uploaded

Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....kzayra69
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odishasmiwainfosol
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noidabntitsolutionsrishis
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 

Recently uploaded (20)

Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 

Pavel Smirnov. FHIR-first application development.