Questions tagged [hl7-fhir]

Fast Healthcare Interoperability Resources (FHIR) is a standard for health care data exchange, published by HL7®.

FHIR is an interoperability standard intended to facilitate the exchange of healthcare information between organizations. It consists of 2 main parts – a content model in the form of ‘resources’, and a specification for the exchange of these resources in the form of real-time RESTful interfaces as well as messaging and Documents.

It's published by HL7 (Health Level Seven International).

Documentation is available on HL7 website: http://hl7.org/fhir/documentation.html

986 questions
0
votes
1 answer

Get definition JSON for extension from profile-types.json

I'm writing a code generator that parses profiles-types.json and generates resource classes. When I encounter something like "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-regex", "valueString":…
Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567
0
votes
1 answer

How to add a medication's therapeutic class in FHIR?

I wonder if there is a way to add a therapeutic class (see definition with code DC) to a medication? Definition here as well: Description: A categorization of medicinal products by their therapeutic properties and/or main therapeutic use.
0
votes
2 answers

Write data into mogoDB using mirth connect

I am using mirth connect to for fhir data, i am able to separate the data into separate variables but don't know how to store into mongoDB as database writer doesn't have any mongoDB option. Thanks in advance.
Yogesh Jangra
  • 66
  • 1
  • 12
0
votes
1 answer

Maintaining and identifying questions in a FHIR Questionnaire resource

From the documentation: "Questionnaire is a separately identifiable Resource, whereas the individual questions are not.". What is the best strategy to identify individual questions? a. Can I maintain individual questions as single question…
beapen
  • 30
  • 5
0
votes
2 answers

FHIR Search Slots request

I am implementing FHIR server and for some un-avoidable reason I do not have access to doctor's schedule, however, I have access to the slots available for appointment booking. I can get slots from 4 parameters using doctor id organization…
0
votes
1 answer

Scheduling search parameters in FHIR

I see FHIR documentation here mentions search parameters. Are all these parameters mandatory when user client sends the request for searching Schedules ?
0
votes
1 answer

Appointment booking workflow in FHIR

I am trying to understand what is the appointment booking workflow in FHIR ? Will I be first querying Schedule resource and then Slot resource ? Is such workflow mentioned anywhere in FHIR documentation and shall I expect my clients to follow it?
0
votes
1 answer

Multiple physicians -( i.e. primary , secondary , referring ) . Where to keep them in fhir

I am looking for the right place to keep multiple physicians. So far the choices are : DiagnosticOrder.orderer = Physicians Patient.CareProvider = Physicians Encounter.Participant = Physicians Can you please suggest the right place to keep…
Pratap Das
  • 504
  • 2
  • 7
  • 20
0
votes
1 answer

DiagnosticOrder.Item - How should I incorporate other attributes

In our system , DiagnosticOrder.Item has many attributes. Example, 1. Code 2. Name 3. Parent Code 4. Problem with the code 5. Automatically added code ... and many more. Seems to me , it will be more appropriate to create a new resource here. I see …
Pratap Das
  • 504
  • 2
  • 7
  • 20
0
votes
1 answer

Fhir - data entry operator / Audit

I have been trying to find out a resource in fhir to represent data entry operators. What is the closest matched resource to represent a data entry operator in fhir ?
Pratap Das
  • 504
  • 2
  • 7
  • 20
0
votes
2 answers

Fhir server - register custom extension

the way I understand extension is that , it's a structure where you can keep attributes which are not listed in the fhir specification. We are also supposed to explain that extension via 'URL' and 'System' property. We can create pages in our fhir…
Pratap Das
  • 504
  • 2
  • 7
  • 20
0
votes
1 answer

Resource retrieval from fhir object

Fhir object model is a resource driven model which is fine. As a client , let's say I want to get patient information. I called - 'patient/1'. Now , to get related resources like Organization , Care provider - do I have to make 2 other calls? To…
Pratap Das
  • 504
  • 2
  • 7
  • 20
0
votes
1 answer

Where to keep related patient information in fhir

I am trying to convert a patient to fhir compliant patient. One of the attributes in our patient structure is 'related patient'. This attribute lists down all other patients who are related to the given patient. Example , patient p1 is a father of…
Pratap Das
  • 504
  • 2
  • 7
  • 20
0
votes
1 answer

Duplicate 'contained' elements in generated message - HAPI FHIR DSTU2HL7Org

I am using HAPI FHIR DSTU2HL7Org to create MedicationOrders in a remote server. The construction of the object is as follows. MedicationOrder[] medicationOrder = null; MedicationOrderDataWrapper[] medicationOrderWrapper = new…
0
votes
1 answer

FHIR over HIE repository

I need to implement FHIR API over our clinical repository. Since our data is stored from multiple sources, each clinical data/act is represented with a System+ID pair, where system generally represented by OID. e.g. Patient Identifier will be…
tal.f
  • 73
  • 5