SlideShare a Scribd company logo
FHIR® is the registered trademark of HL7 and is used with the permission of HL7. The Flame Design mark is the registered trademark of HL7 and is used with the permission of HL7.
Amsterdam, 15-17 November | @fhir_furore | #fhirdevdays17 | www.fhirdevdays.com
Referrals
Brian Postlethwaite, Telstra Health
Brian Postlethwaite
Senior Solutions Architect
FHIR core team member
FHIR Management Group member
Co-chair HL7 International Patient Administration Workgroup
fhir-net-api contributor
FhirPathTester author
sqlonfhir server
Harley Rider
Agenda
• What is a Referral?
• Workflow of Referrals
• Challenges in Referrals
• FHIR Resources
• Outgoing Referral Creation
• What changed between DSTU2 and STU3?
• What’s coming for R4?
What is a Referral?
Oxford Dictionary: an act of referring someone or
something for consultation, review, or further action.
• the directing of a patient to a medical specialist by a
primary care physician.
• a person whose case has been referred to a specialist
doctor or a professional body.
For me, this is either/or:
• Simple – Just need the “paperwork” to get funded/claim
• Complex – sharing detailed care information
Super simple Referral workflow
• Practitioner needs to refer Patient
• Locate Destination for referral
• Fill out required referral forms
• Attach all required documentation
• Send to destination
Challenges in Referrals
• Who can I send to?
• What format can they receive?
• Do they have some specific content needed?
• What delivery mechanisms do they support?
• How can I be sure delivery is secure/timely?
• This referral is missing data X!
• What is the status of referral X?
• Did the receiver accept the transfer of care?
(who’s responsible for the patient?)
Supporting Referrals – A more complete pipeline
• Outgoing Referral creation
• Discovery
• Directory definitions
• Referral Delivery
• Workflow
• Incoming Referral received
• Referral processing
• Referral response creation
• Reply Delivery (back to sender)
• Workflow
Outgoing Referral
Supporting Information
Structured and
Unstructured
Request content
Questionnaire
Document
Reference
Questionnaire
Response
Binary
Medication
Statement
Observation
Diagnosis Condition
Attachments from
Clinical record
Healthcare
Service
Specialty/service requested
…
Request
context
Encounter
Referral
Request
Activity
Definition?
Task (request)
Referral Template
Supporting Information (selectors, not resources)
Structured and
Unstructured
Request content
Questionnaire
Document
Reference
Medication
Statement
Observation
Diagnosis Condition
Attachments from
Clinical record
Specialty/service requested
…
Healthcare
Service
Plan
Definition?
Activity
Definition?
Incoming Referral
Supporting Information
Referral
Request
Structured and
Unstructured
Request content
Incoming
Referral
Questionnaire
Document
Reference
Questionnaire
Response
Binary
Medication
Statement
Observation
Diagnosis Condition
Attachments from
Clinical record
Healthcare
Service
Specialty/service requested
…
Appointment
Encounter
Task (response)
Referrals - Overlay
Supporting Information
Referral
Request
Request
context
Structured and
Unstructured
Request content
Incoming
Referral
Questionnaire
Document
Reference
Questionnaire
Response
Binary
Encounter
Medication
Statement
Observation
Diagnosis Condition
Attachments from
Clinical record
Healthcare
Service
Specialty/service requested
…
Appointment
Encounter
Task (request /
response)
Plan
Definition?
Activity
Definition?
Status Management
• Task/Referral
• Communicated with a Task
resource
Outgoing referral creation
The process of creating a referral appears like it should be a simple
process, all I need is:
• The patient details
• The details of who I’m sending the referral to
• My details (as the sender)
• Some details of the service that I’m referring the patient for
• Optionally: some additional background information on the patient
<ReferralRequest >
<id value="hcx-qr-example"/>
...
<status value="draft"/>
<date value="2016-10-04"/>
...
<priority >
<coding >
<system value="http://connectingcare.com/fhir/CodeSystem/prioritycodes"/>
<code value="routine"/>
<display value="Routine"/>
</coding>
</priority>
<patient >
<reference value="Patient/45"/>
<display value="Brian Postlethwaite"/>
</patient>
<requester >
<reference value="Practitioner/77272"/>
<display value="Dr David Hay"/>
</requester>
<recipient >
<reference value="#recipient"/>
<display value="Central Psychology - Counselling Services"/>
</recipient>
<dateSent value="2016-10-14"/>
...
</ReferralRequest>
The basics
<ReferralRequest >
<id value="hcx-qr-example"/>
...
<type >
<coding >
<system value="http://connectingcare.com/fhir/CodeSystem/referraltypes"/>
<code value="sctt2012"/>
<display value="SCTT 2012 Referral"/>
</coding>
</type>
<specialty >
<coding >
<system value="http://connectingcare.com/fhir/CodeSystem/specialties"/>
<code value="ent"/>
<display value="ENT"/>
</coding>
</specialty>
...
<reason >
<text value="Brian seeks some counselling support to cope with his
increased workload."/>
</reason>
<description value="In the past 2 years Brian's work/home life
has been stretched very thin and needs to have some mechanisms
for coping with the additional strains."/>
<serviceRequested >
<text value="Councelling"/>
</serviceRequested>
...
</ReferralRequest>
Service Info
<ReferralRequest >
<id value="hcx-qr-example"/>
...
<supportingInformation >
<reference value="#binaryattachment"/> <!-- a contained PDF -->
<display value="attachment name"/>
</supportingInformation>
<supportingInformation >
<reference value="#sctt01"/> <!-- A contained QuestionnaireResponse -->
<display value="SCTT 2012 Summary and Referral Information"/>
</supportingInformation>
<supportingInformation >
<reference value="Condition/2342"/>
</supportingInformation>
<supportingInformation >
<reference value="Observation/7845"/>
<display value="Blood Pressure 12 Sept 2016"/>
</supportingInformation>
</ReferralRequest>
Supporting Info
Then …
What is difficult here is knowing what should be included in the
supporting information, and what the receiver really thinks is
mandatory information. This would be found in a directory during the
discovery stage.
This resource is now ready to be sent, which could be via messaging,
or just saved on a FHIR server and start a workflow in progress.
Is any of this done today?
FHIR Resources – in production at Telstra Health
• ReferralRequest
• Questionnaire / QuestionnaireResponse
(with pre-populate)
• Terminology Resources (Valueset…)
• DocumentReference / Binary
• Observation, Diagnosis, Condition, MedicationStatement, …
• (other clinical resources)
• Encounter
• Organization, Location, HealthcareService
• Future: Task (for workflow tracking)
Endpoint (for addressing details)
Difference between FHIR versions
DSTU2 -> STU3
• Workflow alignment
• Task related properties removed
• (Order and OrderResponse resources
were removed)
STU3 -> R4
• Merged into ProcedureRequest
• Which was then renamed to
ServiceRequest
• Seeking feedback in spec
http://hl7.org/fhir/referralrequest.html (check the R2 Diff tab – not a complete mapping)
Summary • The referral is:
• Only a part of referrals in FHIR
• Simple or complex
• A Header and attachments (many types)
• A workflow process (enabling transfer of care)
• Directories are needed to support referrals
• Task resource supports the workflow
• Know your part in the referrals solution
• Sender, receiver, processing, delivery
• Changing name in R4 - ServiceRequest
Questions?
Thank you
Keep FHIR-ing on all cylinders

More Related Content

What's hot

Furore devdays 2017 - workflow
Furore devdays 2017 - workflowFurore devdays 2017 - workflow
Furore devdays 2017 - workflow
DevDays
 
20171116 rene spronk_profiling_governance
20171116 rene spronk_profiling_governance20171116 rene spronk_profiling_governance
20171116 rene spronk_profiling_governance
DevDays
 
Furore devdays 2017- continua implementing fhir
Furore devdays 2017- continua implementing fhirFurore devdays 2017- continua implementing fhir
Furore devdays 2017- continua implementing fhir
DevDays
 
Cds hooks fhir dev days 2017
Cds hooks   fhir dev days 2017Cds hooks   fhir dev days 2017
Cds hooks fhir dev days 2017
DevDays
 
fhir and loinc
fhir and loincfhir and loinc
fhir and loinc
DevDays
 
FHIR - as a new currency of exchange in New Zealand
FHIR - as a new currency of exchange in New ZealandFHIR - as a new currency of exchange in New Zealand
FHIR - as a new currency of exchange in New Zealand
David Hay
 
Furore devdays 2017- fhir and devices - cooper thc2
Furore devdays 2017- fhir and devices - cooper thc2Furore devdays 2017- fhir and devices - cooper thc2
Furore devdays 2017- fhir and devices - cooper thc2
DevDays
 
Dev days 2017 questionnaires (brian postlethwaite)
Dev days 2017 questionnaires (brian postlethwaite)Dev days 2017 questionnaires (brian postlethwaite)
Dev days 2017 questionnaires (brian postlethwaite)
DevDays
 
FHIR for Architects and Developers - New Zealand Seminar, June 2014
FHIR for Architects and Developers - New Zealand Seminar, June 2014FHIR for Architects and Developers - New Zealand Seminar, June 2014
FHIR for Architects and Developers - New Zealand Seminar, June 2014
David Hay
 
Furore devdays2017 tdd-1-intro
Furore devdays2017 tdd-1-introFurore devdays2017 tdd-1-intro
Furore devdays2017 tdd-1-intro
DevDays
 
Fhir seminar hinz 2015
Fhir seminar hinz 2015Fhir seminar hinz 2015
Fhir seminar hinz 2015
David Hay
 
FHIR for clinicians
FHIR for clinicians FHIR for clinicians
FHIR for clinicians
David Hay
 
Furore devdays 2017- rdf2(solbrig)
Furore devdays 2017- rdf2(solbrig)Furore devdays 2017- rdf2(solbrig)
Furore devdays 2017- rdf2(solbrig)
DevDays
 
Introduction to FHIR - New Zealand Seminar, June 2014
Introduction to FHIR - New Zealand Seminar, June 2014Introduction to FHIR - New Zealand Seminar, June 2014
Introduction to FHIR - New Zealand Seminar, June 2014
David Hay
 
itx presentation: FHIR and the New Zealand EHR - deeper dive
itx presentation: FHIR and the New Zealand EHR - deeper diveitx presentation: FHIR and the New Zealand EHR - deeper dive
itx presentation: FHIR and the New Zealand EHR - deeper dive
David Hay
 
FHIR & Ice
FHIR & IceFHIR & Ice
FHIR & Ice
David Hay
 
FHIR for implementers in New Zealand
FHIR for implementers in New ZealandFHIR for implementers in New Zealand
FHIR for implementers in New Zealand
David Hay
 
Validation in net and java (ewout james)
Validation in net and java (ewout james)Validation in net and java (ewout james)
Validation in net and java (ewout james)
DevDays
 
FHIR for Hackers
FHIR for HackersFHIR for Hackers
FHIR for Hackers
James Agnew
 
An Introduction to HL7 FHIR
An Introduction to HL7 FHIRAn Introduction to HL7 FHIR
An Introduction to HL7 FHIR
Health Informatics New Zealand
 

What's hot (20)

Furore devdays 2017 - workflow
Furore devdays 2017 - workflowFurore devdays 2017 - workflow
Furore devdays 2017 - workflow
 
20171116 rene spronk_profiling_governance
20171116 rene spronk_profiling_governance20171116 rene spronk_profiling_governance
20171116 rene spronk_profiling_governance
 
Furore devdays 2017- continua implementing fhir
Furore devdays 2017- continua implementing fhirFurore devdays 2017- continua implementing fhir
Furore devdays 2017- continua implementing fhir
 
Cds hooks fhir dev days 2017
Cds hooks   fhir dev days 2017Cds hooks   fhir dev days 2017
Cds hooks fhir dev days 2017
 
fhir and loinc
fhir and loincfhir and loinc
fhir and loinc
 
FHIR - as a new currency of exchange in New Zealand
FHIR - as a new currency of exchange in New ZealandFHIR - as a new currency of exchange in New Zealand
FHIR - as a new currency of exchange in New Zealand
 
Furore devdays 2017- fhir and devices - cooper thc2
Furore devdays 2017- fhir and devices - cooper thc2Furore devdays 2017- fhir and devices - cooper thc2
Furore devdays 2017- fhir and devices - cooper thc2
 
Dev days 2017 questionnaires (brian postlethwaite)
Dev days 2017 questionnaires (brian postlethwaite)Dev days 2017 questionnaires (brian postlethwaite)
Dev days 2017 questionnaires (brian postlethwaite)
 
FHIR for Architects and Developers - New Zealand Seminar, June 2014
FHIR for Architects and Developers - New Zealand Seminar, June 2014FHIR for Architects and Developers - New Zealand Seminar, June 2014
FHIR for Architects and Developers - New Zealand Seminar, June 2014
 
Furore devdays2017 tdd-1-intro
Furore devdays2017 tdd-1-introFurore devdays2017 tdd-1-intro
Furore devdays2017 tdd-1-intro
 
Fhir seminar hinz 2015
Fhir seminar hinz 2015Fhir seminar hinz 2015
Fhir seminar hinz 2015
 
FHIR for clinicians
FHIR for clinicians FHIR for clinicians
FHIR for clinicians
 
Furore devdays 2017- rdf2(solbrig)
Furore devdays 2017- rdf2(solbrig)Furore devdays 2017- rdf2(solbrig)
Furore devdays 2017- rdf2(solbrig)
 
Introduction to FHIR - New Zealand Seminar, June 2014
Introduction to FHIR - New Zealand Seminar, June 2014Introduction to FHIR - New Zealand Seminar, June 2014
Introduction to FHIR - New Zealand Seminar, June 2014
 
itx presentation: FHIR and the New Zealand EHR - deeper dive
itx presentation: FHIR and the New Zealand EHR - deeper diveitx presentation: FHIR and the New Zealand EHR - deeper dive
itx presentation: FHIR and the New Zealand EHR - deeper dive
 
FHIR & Ice
FHIR & IceFHIR & Ice
FHIR & Ice
 
FHIR for implementers in New Zealand
FHIR for implementers in New ZealandFHIR for implementers in New Zealand
FHIR for implementers in New Zealand
 
Validation in net and java (ewout james)
Validation in net and java (ewout james)Validation in net and java (ewout james)
Validation in net and java (ewout james)
 
FHIR for Hackers
FHIR for HackersFHIR for Hackers
FHIR for Hackers
 
An Introduction to HL7 FHIR
An Introduction to HL7 FHIRAn Introduction to HL7 FHIR
An Introduction to HL7 FHIR
 

Similar to Dev days 2017 referrals (brian postlethwaite)

Introduction-and-RDF-Representation-of-FHIR-for-Clinical-Data
Introduction-and-RDF-Representation-of-FHIR-for-Clinical-DataIntroduction-and-RDF-Representation-of-FHIR-for-Clinical-Data
Introduction-and-RDF-Representation-of-FHIR-for-Clinical-Data
DATAVERSITY
 
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
Ewout Kramer
 
FHIR.pptx
FHIR.pptxFHIR.pptx
FHIR.pptx
VITNetflix
 
fhir-documents
fhir-documentsfhir-documents
fhir-documents
DevDays
 
Fire and Ice - FHIR in New Zealand - David Hay
Fire and Ice - FHIR in New Zealand - David HayFire and Ice - FHIR in New Zealand - David Hay
Fire and Ice - FHIR in New Zealand - David Hay
HL7 New Zealand
 
APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)
APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)
APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)
apidays
 
Webinar On Lean In Non Manufacturing Environments
Webinar On Lean In Non Manufacturing EnvironmentsWebinar On Lean In Non Manufacturing Environments
Webinar On Lean In Non Manufacturing Environments
fertuckda
 
Knowing how good our searches are
Knowing how good our searches areKnowing how good our searches are
Knowing how good our searches are
Flinders Filters, Flinders University
 
'Knowing how good our searches are: an approach derived from search filter de...
'Knowing how good our searches are: an approach derived from search filter de...'Knowing how good our searches are: an approach derived from search filter de...
'Knowing how good our searches are: an approach derived from search filter de...
CareSearch palliative care knowledge network
 
Information Exchange Workgroup Provider Directory Task Force 1-18-11
Information Exchange Workgroup Provider Directory Task Force 1-18-11Information Exchange Workgroup Provider Directory Task Force 1-18-11
Information Exchange Workgroup Provider Directory Task Force 1-18-11
Brian Ahier
 
Easy, fast and good PCA 2013
Easy, fast and good PCA 2013Easy, fast and good PCA 2013
Easy, fast and good PCA 2013
Flinders Filters, Flinders University
 
3.0 FHIR Deep Dive AMIA SA 2022.pdf
3.0 FHIR Deep Dive AMIA SA 2022.pdf3.0 FHIR Deep Dive AMIA SA 2022.pdf
3.0 FHIR Deep Dive AMIA SA 2022.pdf
VaishnaviYadav151699
 
Christchurch presentation
Christchurch presentationChristchurch presentation
Christchurch presentation
David Hay
 
Health Information Exchange Workgroup 110310
Health Information Exchange Workgroup 110310Health Information Exchange Workgroup 110310
Health Information Exchange Workgroup 110310
Brian Ahier
 
BizTalk on FHIR
BizTalk on FHIRBizTalk on FHIR
BizTalk on FHIR
BizTalk360
 
You will conduct system selection, which requires completion of .docx
You will conduct system selection, which requires completion of .docxYou will conduct system selection, which requires completion of .docx
You will conduct system selection, which requires completion of .docx
jeffevans62972
 
2 CRN - Setting up research in the NHS: practical and ethical considerations
2 CRN - Setting up research in the NHS: practical and ethical considerations2 CRN - Setting up research in the NHS: practical and ethical considerations
2 CRN - Setting up research in the NHS: practical and ethical considerations
NIHR CLAHRC West Midlands
 
Benefits and Lessons Learned - An e-Referrals Pilot in the Waikato
Benefits and Lessons Learned - An e-Referrals Pilot in the WaikatoBenefits and Lessons Learned - An e-Referrals Pilot in the Waikato
Benefits and Lessons Learned - An e-Referrals Pilot in the Waikato
Health Informatics New Zealand
 
F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...
F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...
F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...
CASRAI
 
TL1 NRSA F award application workshop and How to Prepare Complete Application
TL1 NRSA F award application workshop and How to Prepare Complete ApplicationTL1 NRSA F award application workshop and How to Prepare Complete Application
TL1 NRSA F award application workshop and How to Prepare Complete Application
PJ Simpson-Haidaris
 

Similar to Dev days 2017 referrals (brian postlethwaite) (20)

Introduction-and-RDF-Representation-of-FHIR-for-Clinical-Data
Introduction-and-RDF-Representation-of-FHIR-for-Clinical-DataIntroduction-and-RDF-Representation-of-FHIR-for-Clinical-Data
Introduction-and-RDF-Representation-of-FHIR-for-Clinical-Data
 
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.pptx
FHIR.pptxFHIR.pptx
FHIR.pptx
 
fhir-documents
fhir-documentsfhir-documents
fhir-documents
 
Fire and Ice - FHIR in New Zealand - David Hay
Fire and Ice - FHIR in New Zealand - David HayFire and Ice - FHIR in New Zealand - David Hay
Fire and Ice - FHIR in New Zealand - David Hay
 
APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)
APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)
APIsecure 2023 - FHIR API Security, Grahame Grieve (Health Intersections)
 
Webinar On Lean In Non Manufacturing Environments
Webinar On Lean In Non Manufacturing EnvironmentsWebinar On Lean In Non Manufacturing Environments
Webinar On Lean In Non Manufacturing Environments
 
Knowing how good our searches are
Knowing how good our searches areKnowing how good our searches are
Knowing how good our searches are
 
'Knowing how good our searches are: an approach derived from search filter de...
'Knowing how good our searches are: an approach derived from search filter de...'Knowing how good our searches are: an approach derived from search filter de...
'Knowing how good our searches are: an approach derived from search filter de...
 
Information Exchange Workgroup Provider Directory Task Force 1-18-11
Information Exchange Workgroup Provider Directory Task Force 1-18-11Information Exchange Workgroup Provider Directory Task Force 1-18-11
Information Exchange Workgroup Provider Directory Task Force 1-18-11
 
Easy, fast and good PCA 2013
Easy, fast and good PCA 2013Easy, fast and good PCA 2013
Easy, fast and good PCA 2013
 
3.0 FHIR Deep Dive AMIA SA 2022.pdf
3.0 FHIR Deep Dive AMIA SA 2022.pdf3.0 FHIR Deep Dive AMIA SA 2022.pdf
3.0 FHIR Deep Dive AMIA SA 2022.pdf
 
Christchurch presentation
Christchurch presentationChristchurch presentation
Christchurch presentation
 
Health Information Exchange Workgroup 110310
Health Information Exchange Workgroup 110310Health Information Exchange Workgroup 110310
Health Information Exchange Workgroup 110310
 
BizTalk on FHIR
BizTalk on FHIRBizTalk on FHIR
BizTalk on FHIR
 
You will conduct system selection, which requires completion of .docx
You will conduct system selection, which requires completion of .docxYou will conduct system selection, which requires completion of .docx
You will conduct system selection, which requires completion of .docx
 
2 CRN - Setting up research in the NHS: practical and ethical considerations
2 CRN - Setting up research in the NHS: practical and ethical considerations2 CRN - Setting up research in the NHS: practical and ethical considerations
2 CRN - Setting up research in the NHS: practical and ethical considerations
 
Benefits and Lessons Learned - An e-Referrals Pilot in the Waikato
Benefits and Lessons Learned - An e-Referrals Pilot in the WaikatoBenefits and Lessons Learned - An e-Referrals Pilot in the Waikato
Benefits and Lessons Learned - An e-Referrals Pilot in the Waikato
 
F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...
F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...
F&I: Robert Dirstein and José Sigouin - You Can Use It When Your Sister Is Do...
 
TL1 NRSA F award application workshop and How to Prepare Complete Application
TL1 NRSA F award application workshop and How to Prepare Complete ApplicationTL1 NRSA F award application workshop and How to Prepare Complete Application
TL1 NRSA F award application workshop and How to Prepare Complete Application
 

More from DevDays

Consent dev days
Consent dev daysConsent dev days
Consent dev days
DevDays
 
Mohannad hussain dicom and imaging tools
Mohannad hussain   dicom and imaging toolsMohannad hussain   dicom and imaging tools
Mohannad hussain dicom and imaging tools
DevDays
 
Mohannad hussain community track - siim dataset & dico mweb proxy
Mohannad hussain   community track - siim dataset & dico mweb proxyMohannad hussain   community track - siim dataset & dico mweb proxy
Mohannad hussain community track - siim dataset & dico mweb proxy
DevDays
 
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
DevDays
 
final Keynote (grahame)
final Keynote (grahame)final Keynote (grahame)
final Keynote (grahame)
DevDays
 
Transforming other content (grahame)
Transforming other content (grahame)Transforming other content (grahame)
Transforming other content (grahame)
DevDays
 
Structure definition 101 (ewout)
Structure definition 101 (ewout)Structure definition 101 (ewout)
Structure definition 101 (ewout)
DevDays
 
Quality improvement dev days-2017
Quality improvement dev days-2017Quality improvement dev days-2017
Quality improvement dev days-2017
DevDays
 
Furore devdays 2017-sdc (lloyd)
Furore devdays 2017-sdc (lloyd)Furore devdays 2017-sdc (lloyd)
Furore devdays 2017-sdc (lloyd)
DevDays
 
Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)
DevDays
 
Furore devdays 2017- oai
Furore devdays 2017- oaiFurore devdays 2017- oai
Furore devdays 2017- oai
DevDays
 
Furore devdays 2017 - implementation guides (lloyd)
Furore devdays 2017 - implementation guides (lloyd)Furore devdays 2017 - implementation guides (lloyd)
Furore devdays 2017 - implementation guides (lloyd)
DevDays
 
Devdays 2017 implementation guide authoring - ardon toonstra
Devdays 2017  implementation guide authoring - ardon toonstraDevdays 2017  implementation guide authoring - ardon toonstra
Devdays 2017 implementation guide authoring - ardon toonstra
DevDays
 
Connectathon opening 2017
Connectathon opening 2017Connectathon opening 2017
Connectathon opening 2017
DevDays
 
Building bridges devdays 2017- powerpoint template
Building bridges devdays 2017- powerpoint templateBuilding bridges devdays 2017- powerpoint template
Building bridges devdays 2017- powerpoint template
DevDays
 
20171127 rene spronk_messaging_the_unloved_paradigm
20171127 rene spronk_messaging_the_unloved_paradigm20171127 rene spronk_messaging_the_unloved_paradigm
20171127 rene spronk_messaging_the_unloved_paradigm
DevDays
 
Vonk fhir facade (christiaan)
Vonk fhir facade (christiaan)Vonk fhir facade (christiaan)
Vonk fhir facade (christiaan)
DevDays
 
Security overview (grahame)
Security overview (grahame)Security overview (grahame)
Security overview (grahame)
DevDays
 
Profiling with clin fhir
Profiling with clin fhirProfiling with clin fhir
Profiling with clin fhir
DevDays
 
Opening student track
Opening student trackOpening student track
Opening student track
DevDays
 

More from DevDays (20)

Consent dev days
Consent dev daysConsent dev days
Consent dev days
 
Mohannad hussain dicom and imaging tools
Mohannad hussain   dicom and imaging toolsMohannad hussain   dicom and imaging tools
Mohannad hussain dicom and imaging tools
 
Mohannad hussain community track - siim dataset & dico mweb proxy
Mohannad hussain   community track - siim dataset & dico mweb proxyMohannad hussain   community track - siim dataset & dico mweb proxy
Mohannad hussain community track - siim dataset & dico mweb proxy
 
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
 
final Keynote (grahame)
final Keynote (grahame)final Keynote (grahame)
final Keynote (grahame)
 
Transforming other content (grahame)
Transforming other content (grahame)Transforming other content (grahame)
Transforming other content (grahame)
 
Structure definition 101 (ewout)
Structure definition 101 (ewout)Structure definition 101 (ewout)
Structure definition 101 (ewout)
 
Quality improvement dev days-2017
Quality improvement dev days-2017Quality improvement dev days-2017
Quality improvement dev days-2017
 
Furore devdays 2017-sdc (lloyd)
Furore devdays 2017-sdc (lloyd)Furore devdays 2017-sdc (lloyd)
Furore devdays 2017-sdc (lloyd)
 
Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)
 
Furore devdays 2017- oai
Furore devdays 2017- oaiFurore devdays 2017- oai
Furore devdays 2017- oai
 
Furore devdays 2017 - implementation guides (lloyd)
Furore devdays 2017 - implementation guides (lloyd)Furore devdays 2017 - implementation guides (lloyd)
Furore devdays 2017 - implementation guides (lloyd)
 
Devdays 2017 implementation guide authoring - ardon toonstra
Devdays 2017  implementation guide authoring - ardon toonstraDevdays 2017  implementation guide authoring - ardon toonstra
Devdays 2017 implementation guide authoring - ardon toonstra
 
Connectathon opening 2017
Connectathon opening 2017Connectathon opening 2017
Connectathon opening 2017
 
Building bridges devdays 2017- powerpoint template
Building bridges devdays 2017- powerpoint templateBuilding bridges devdays 2017- powerpoint template
Building bridges devdays 2017- powerpoint template
 
20171127 rene spronk_messaging_the_unloved_paradigm
20171127 rene spronk_messaging_the_unloved_paradigm20171127 rene spronk_messaging_the_unloved_paradigm
20171127 rene spronk_messaging_the_unloved_paradigm
 
Vonk fhir facade (christiaan)
Vonk fhir facade (christiaan)Vonk fhir facade (christiaan)
Vonk fhir facade (christiaan)
 
Security overview (grahame)
Security overview (grahame)Security overview (grahame)
Security overview (grahame)
 
Profiling with clin fhir
Profiling with clin fhirProfiling with clin fhir
Profiling with clin fhir
 
Opening student track
Opening student trackOpening student track
Opening student track
 

Recently uploaded

PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Diana Rendina
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
paigestewart1632
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 

Recently uploaded (20)

PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 

Dev days 2017 referrals (brian postlethwaite)

  • 1. FHIR® is the registered trademark of HL7 and is used with the permission of HL7. The Flame Design mark is the registered trademark of HL7 and is used with the permission of HL7. Amsterdam, 15-17 November | @fhir_furore | #fhirdevdays17 | www.fhirdevdays.com Referrals Brian Postlethwaite, Telstra Health
  • 2. Brian Postlethwaite Senior Solutions Architect FHIR core team member FHIR Management Group member Co-chair HL7 International Patient Administration Workgroup fhir-net-api contributor FhirPathTester author sqlonfhir server Harley Rider
  • 3. Agenda • What is a Referral? • Workflow of Referrals • Challenges in Referrals • FHIR Resources • Outgoing Referral Creation • What changed between DSTU2 and STU3? • What’s coming for R4?
  • 4. What is a Referral? Oxford Dictionary: an act of referring someone or something for consultation, review, or further action. • the directing of a patient to a medical specialist by a primary care physician. • a person whose case has been referred to a specialist doctor or a professional body. For me, this is either/or: • Simple – Just need the “paperwork” to get funded/claim • Complex – sharing detailed care information
  • 5. Super simple Referral workflow • Practitioner needs to refer Patient • Locate Destination for referral • Fill out required referral forms • Attach all required documentation • Send to destination
  • 6. Challenges in Referrals • Who can I send to? • What format can they receive? • Do they have some specific content needed? • What delivery mechanisms do they support? • How can I be sure delivery is secure/timely? • This referral is missing data X! • What is the status of referral X? • Did the receiver accept the transfer of care? (who’s responsible for the patient?)
  • 7. Supporting Referrals – A more complete pipeline • Outgoing Referral creation • Discovery • Directory definitions • Referral Delivery • Workflow • Incoming Referral received • Referral processing • Referral response creation • Reply Delivery (back to sender) • Workflow
  • 8. Outgoing Referral Supporting Information Structured and Unstructured Request content Questionnaire Document Reference Questionnaire Response Binary Medication Statement Observation Diagnosis Condition Attachments from Clinical record Healthcare Service Specialty/service requested … Request context Encounter Referral Request Activity Definition? Task (request)
  • 9. Referral Template Supporting Information (selectors, not resources) Structured and Unstructured Request content Questionnaire Document Reference Medication Statement Observation Diagnosis Condition Attachments from Clinical record Specialty/service requested … Healthcare Service Plan Definition? Activity Definition?
  • 10. Incoming Referral Supporting Information Referral Request Structured and Unstructured Request content Incoming Referral Questionnaire Document Reference Questionnaire Response Binary Medication Statement Observation Diagnosis Condition Attachments from Clinical record Healthcare Service Specialty/service requested … Appointment Encounter Task (response)
  • 11. Referrals - Overlay Supporting Information Referral Request Request context Structured and Unstructured Request content Incoming Referral Questionnaire Document Reference Questionnaire Response Binary Encounter Medication Statement Observation Diagnosis Condition Attachments from Clinical record Healthcare Service Specialty/service requested … Appointment Encounter Task (request / response) Plan Definition? Activity Definition?
  • 12. Status Management • Task/Referral • Communicated with a Task resource
  • 13. Outgoing referral creation The process of creating a referral appears like it should be a simple process, all I need is: • The patient details • The details of who I’m sending the referral to • My details (as the sender) • Some details of the service that I’m referring the patient for • Optionally: some additional background information on the patient
  • 14. <ReferralRequest > <id value="hcx-qr-example"/> ... <status value="draft"/> <date value="2016-10-04"/> ... <priority > <coding > <system value="http://connectingcare.com/fhir/CodeSystem/prioritycodes"/> <code value="routine"/> <display value="Routine"/> </coding> </priority> <patient > <reference value="Patient/45"/> <display value="Brian Postlethwaite"/> </patient> <requester > <reference value="Practitioner/77272"/> <display value="Dr David Hay"/> </requester> <recipient > <reference value="#recipient"/> <display value="Central Psychology - Counselling Services"/> </recipient> <dateSent value="2016-10-14"/> ... </ReferralRequest> The basics
  • 15. <ReferralRequest > <id value="hcx-qr-example"/> ... <type > <coding > <system value="http://connectingcare.com/fhir/CodeSystem/referraltypes"/> <code value="sctt2012"/> <display value="SCTT 2012 Referral"/> </coding> </type> <specialty > <coding > <system value="http://connectingcare.com/fhir/CodeSystem/specialties"/> <code value="ent"/> <display value="ENT"/> </coding> </specialty> ... <reason > <text value="Brian seeks some counselling support to cope with his increased workload."/> </reason> <description value="In the past 2 years Brian's work/home life has been stretched very thin and needs to have some mechanisms for coping with the additional strains."/> <serviceRequested > <text value="Councelling"/> </serviceRequested> ... </ReferralRequest> Service Info
  • 16. <ReferralRequest > <id value="hcx-qr-example"/> ... <supportingInformation > <reference value="#binaryattachment"/> <!-- a contained PDF --> <display value="attachment name"/> </supportingInformation> <supportingInformation > <reference value="#sctt01"/> <!-- A contained QuestionnaireResponse --> <display value="SCTT 2012 Summary and Referral Information"/> </supportingInformation> <supportingInformation > <reference value="Condition/2342"/> </supportingInformation> <supportingInformation > <reference value="Observation/7845"/> <display value="Blood Pressure 12 Sept 2016"/> </supportingInformation> </ReferralRequest> Supporting Info
  • 17. Then … What is difficult here is knowing what should be included in the supporting information, and what the receiver really thinks is mandatory information. This would be found in a directory during the discovery stage. This resource is now ready to be sent, which could be via messaging, or just saved on a FHIR server and start a workflow in progress.
  • 18. Is any of this done today?
  • 19. FHIR Resources – in production at Telstra Health • ReferralRequest • Questionnaire / QuestionnaireResponse (with pre-populate) • Terminology Resources (Valueset…) • DocumentReference / Binary • Observation, Diagnosis, Condition, MedicationStatement, … • (other clinical resources) • Encounter • Organization, Location, HealthcareService • Future: Task (for workflow tracking) Endpoint (for addressing details)
  • 20.
  • 21.
  • 22.
  • 23. Difference between FHIR versions DSTU2 -> STU3 • Workflow alignment • Task related properties removed • (Order and OrderResponse resources were removed) STU3 -> R4 • Merged into ProcedureRequest • Which was then renamed to ServiceRequest • Seeking feedback in spec http://hl7.org/fhir/referralrequest.html (check the R2 Diff tab – not a complete mapping)
  • 24. Summary • The referral is: • Only a part of referrals in FHIR • Simple or complex • A Header and attachments (many types) • A workflow process (enabling transfer of care) • Directories are needed to support referrals • Task resource supports the workflow • Know your part in the referrals solution • Sender, receiver, processing, delivery • Changing name in R4 - ServiceRequest
  • 26. Thank you Keep FHIR-ing on all cylinders

Editor's Notes

  1. Note that this can also be a transfer of care
  2. Destination, the processes and returns Task(s) indicating the result of the referral
  3. Also mention Structured Data Capture initiative that has been driving this in the USA.
  4. There is nothing tricky in this, just a heap of references to other content. This could be either contained or referenced as I’ve included in this example.
  5. Paper and manually duplicated mostly
  6. Not just the details of the practitioners, its all the content that is needed for many uses, cut into the way that the users of the content want to see it.
  7. Mention Maturity stuff, and looking for feedback