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
2
votes
1 answer

How to validate a large value set within HAPI-FHIR framework

I have a custom implementation of org.hl7.fhir.dstu3.hapi.validation.IValidationSupport module for validating all my profiles and value sets/code systems. I am trying to figure out a way to use the same validation API to support validation of very…
2
votes
1 answer

Is there a standard methodology and tool for mapping data to FHIR objects?

We have data stored in a standard flat file format (and even possibly in a relational database) that need to be mapped to FHIR resources. I'm wondering if there is a standard methodology and/or tool for doing data mapping to FHIR with the ability…
GregH
  • 12,278
  • 23
  • 73
  • 109
2
votes
1 answer

FHIR: return a list of patient resource based on last

Need some advice and help from you! Two questions. how can I retrieve a list of patient resources with 30 _counts and sorted by last modified date? I don't have any searching parameters such as identifier, family and given; since my application in…
Autorun
  • 319
  • 2
  • 8
  • 20
2
votes
0 answers

Searching across multiple FHIR resources with a single request

I found a similar question (link below) but it didn't quite address my question. I'm hoping to understand if there is a convention in FHIR for searching across multiple resources with a single request. For instance, I want to find all patients…
Bill Harty
  • 21
  • 1
2
votes
1 answer

How to pull all search results quickly from a FHIR server

I am using the fetchAll function on an instance of an FHIR Client (specifically, I'm using the HAPI FHIR server). I am trying to collect all observations with a certain LOINC code. From my understanding, a request is sent to the server telling it…
2
votes
1 answer

FHIR Page number support

Foe search interactions, while there is support for specifying the number of items expected in the response using the _count parameter, we are not able to find any reference to a parameter to specify the page number. The _query parameter can be…
RahulB
  • 197
  • 1
  • 8
2
votes
2 answers

FHIR - Patient - How to upload and retrieve patient photo

FHIR Patient Resource has a photo variable: photo 0..* Attachment Image of the patient Questions: Are there examples for each: How do upload a patient photo (what format are supported etc). How to retrieve a patient photo? This post How to…
SC-SL
  • 377
  • 3
  • 19
2
votes
1 answer

Conditional References in HAPI FHIR

HL7 FHIR Release 3 (STU) introduced the concept of Conditional References in transaction bundles: When constructing the bundle, the client may not know the logical id of a resource, but it may know identifying information - e.g. an identifier. This…
dedek
  • 7,981
  • 3
  • 38
  • 68
2
votes
2 answers

Iterating over a paged fhir response

I've ran a query on a hapi fhir database which has returned a paged result back to me. I'm using hapi base in java to actually do the search, as per the documentation here: http://hapifhir.io/doc_rest_client.html Bundle bundle =…
Andy
  • 3,228
  • 8
  • 40
  • 65
2
votes
1 answer

Is there a way to represent a measurement with multiple values as a observation?

I got a problem that I have some measurement data ( like Echo measurements), that can potentially have multiple values associated with it. In other words, you have a single measurement, but multiple values associated. Is there a standard way to…
Hui Liu
  • 359
  • 4
  • 11
2
votes
2 answers

FHIR Medication Administration - Current Dose

I need a way of saying where we are currently within a dose of medication. Like 5 execution out of 7 or Dose Administration number 5 Does anyone know how to express this in the event objects or elsewhere?
devjme
  • 684
  • 6
  • 12
2
votes
3 answers

Mongodb for HL7-FHIR

Learning FHIR and trying to implement with MEAN stack which uses MongoDb as database, I would like to seek your help on my question. When I get the POST request for a new resource docment, I will insert it into MongoDB. Since the MongoDB will add…
Autorun
  • 319
  • 2
  • 8
  • 20
2
votes
1 answer

Why isn't my fhir resource validating against a profile?

I'm trying to validate an instance of the resource type 'Basic' against the following profile which I've created: https://simplifier.net/Crew/questionResponse I have uploaded the profile to my local HAPI server, I then try to upload a resource and…
Andy
  • 3,228
  • 8
  • 40
  • 65
2
votes
0 answers

How to generate an event after a HAPI Rest API Call execution?

We are analyzing the implementation of HAPI as a method of FHIR-enabling a legacy information system. We need to execute some other tasks after a REST API call is consumed in HAPI, for example notify a third party or execute a SQL SP. Have you had…
nechavarria
  • 65
  • 1
  • 7
2
votes
2 answers

Order in STU 3 version of FHIR? Advanced Directives?

In DSTU2 there is an Order object which I was going to use for documenting advanced directives. http://hl7.org/fhir/order.html I don't see this in the next version. Any advice on how to model advanced directives or if Order will actually make it…
devjme
  • 684
  • 6
  • 12