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

How to store User Fitness / Fitness Device data in FHIR?

We are currently in the process of evaluating FHIR for use as part of our medical record infrastructure. For the EHR data (Allergies, Visits, Rx, etc..) the HL7 FHIR seems to have an appropriate mapping. However, lots of data that we deal with is…
user2864740
  • 60,010
  • 15
  • 145
  • 220
13
votes
3 answers

Is there an easy way to generate sample FHIR resources?

Without using commercial tools, is there an easy way to generate sample FHIR resources? I'm working an a project to store FHIR messages to Elasticsearch, and I need a tool to generate FHIR sample messages in real-time to ship over TCP/IP.
mishkin
  • 5,932
  • 8
  • 45
  • 64
12
votes
1 answer

RESTful API requests using Qt

I'm trying to get example found from this link to work. GET and DELETE methods are working but I have some issue with PUT and POST. I get server replied: Bad Request. With qDebug() I get this…
Lauri
  • 137
  • 1
  • 2
  • 8
11
votes
4 answers

How to convert HL7 v2.x message to FHIR JSON?

I am trying to convert HL7 v2.x message to FHIR JSON using java or python. But I am not able to find any solution. Is there any way to achieve this? I found that FHIR is capable of converting to JSON but I don't know how to do that.
animal
  • 994
  • 3
  • 13
  • 35
7
votes
2 answers

Swagger Resolver error, Could not resolve reference:

I'm setting up a new asp.net core 3.1 project, exposing a RESTful API in FHIR format, which is a format extending JSON. I'd like to make a simple UI available with SwaggerUI. That's where I've got an issue that errors are being shown. When launching…
Philippe
  • 1,949
  • 4
  • 31
  • 57
7
votes
1 answer

CDA FHIR mapping

I am trying to add support for sidecar applications in EHR platforms. I am taking a pure implementer's approach to build an intermediate representation (such as an XML) for mapping CDA<--->FHIR. I am using the smart-on-fhir as the reference…
iceman
  • 4,211
  • 13
  • 65
  • 92
6
votes
2 answers

FHIR Subscription not working in hapi-fhir

I'm using this hapi-fhir v4.2.0 server with jpa and it's working just fine. I have added a few patients and I'm able to GET/POST requests to my hapi-fhir localhost environment. I'm also able to create a subscription using this URL:…
ncesar
  • 1,592
  • 2
  • 15
  • 34
6
votes
1 answer

What's the difference between id and identifier for a FHIR resource?

The Resource entity define an id attribute as "Logical id of this artifact". Meanwhile for resources like MedicationRequest also define an attribute named identifier. The description is "External identifier" or "Business identifier". I'm wondering…
mg0880gm
  • 65
  • 1
  • 5
6
votes
1 answer

How to search for a fhir resource by Identifier?

I've notice most if not all fhir resource types have a property 'identifier', which is of type identifier. I have set this on my resources to have a system, and a value, I'm wondering how I now search for resources with a given identifier? Ideally I…
Andy
  • 3,228
  • 8
  • 40
  • 65
6
votes
1 answer

Setting the timeout of a HAPI FHIR IGenericClient

I'm trying to run a fhir search using the following code; FhirContext ctx = FhirContext.forDstu2(); ctx.getRestfulClientFactory().setConnectTimeout(2000000); IGenericClient client =…
Andy
  • 3,228
  • 8
  • 40
  • 65
6
votes
3 answers

Representation of clinical notes in FHIR

This is basically a modelling questions. Clinicians keeps lot of important information documented inside Clinical Notes for various type of encounters. How does FHIR specification suggests to model these notes ? Looking at the FHIR documentation…
Gaurav Daga
  • 343
  • 2
  • 11
6
votes
2 answers

AngularJS $http.get async execution order

I recently did a lot of coding in AngularJS. After some time it started to feel comfortable with it and also got really productive. But unfortunately there is this one thing I don't understand: Within my project I need to get data through $http.get…
J.S.
  • 63
  • 1
  • 5
6
votes
4 answers

Generating C# classes from FHIR schemas

I am attempting to generate c# classes from schemas provided by the FHIR project: http://hl7.org/implement/standards/fhir/ I have downloaded the schemas: http://hl7.org/documentcenter/public/standards/FHIR/fhir-all-xsd.zip I have "Unblocked" the zip…
jlo-gmail
  • 4,453
  • 3
  • 37
  • 64
5
votes
1 answer

Fhir Epic Sandbox : Using a JWT to Obtain an Access Token for a Backend Service

I'm trying to use the sandbox from https://fhir.epic.com/ for Backend Services. I am following this tutorial : https://fhir.epic.com/Documentation?docId=oauth2§ion=BackendOAuth2Guide : I already register a new app, created a JWT (using SSL…
cuzureau
  • 330
  • 2
  • 17
5
votes
3 answers

How to do Fhir?

I'm trying to learn the basics of fhir and want to implement in node js. I have come across the following code https://github.com/FHIR/fhir.js In that it says that i have to create a instance of FHIR client? I know my question is dumb, so can i get…
Grijan
  • 287
  • 5
  • 22
1
2 3
65 66