Stream: v2 to FHIR
Topic: FHIR MessageDefinition
Kevin Mayfield (Feb 24 2019 at 08:42):
Has anyone done any work in this? I want to produce ADT A04 Register Patient FHIR Message Definitions, (to show how v2 can be converted to/from FHIR Messaging) and first attempt looks like this:
"resourceType": "MessageDefinition",
"url": "https://fhir.airelogic.com/MessageDefinition/RegisterPatient-MessageDefinition-1",
"version": "1.0.0",
"name": "Example FHIR MessageDefinition for A04 Register Patient",
"title": "Example FHIR MessageDefinition for A04 Register Patient",
"status": "draft",
"date": "2019-01-11T12:47:46+00:00",
"copyright": "Copyright © 2019 Aire Logic",
"event": {
"system": "fhir.airelogic.com/STU3/CodeSystem/ITK-MessageEvent-2",
"code": "ADTA04",
"display": "Create Patient"
},
"category": "Consequence",
"focus": [
{
"code": "MessageHeader",
"profile": {
"reference": "https://fhir.nhs.uk/STU3/StructureDefinition/ITK-MessageHeader-2"
}
},
{
"code": "Encounter",
"profile": {
"reference": "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Encounter-1"
}
},
{
"code": "Patient",
"profile": {
"reference": "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Patient-1"
}
}
]
}```
Kevin Mayfield (Feb 24 2019 at 08:47):
I've only included a couple of segments (MSH, EVN, PID and PV1) as in FHIR they are referenced from the via the focus resources.
I believe I would show the other segments in a GraphDefinition. (Anyone from the UK ignore the ITK references - they are just illustrative)
Last updated: Apr 12 2022 at 19:14 UTC