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
3
votes
2 answers

FHIR JAXB XJC Code generation

I am trying to generate java code from an xsd for FHIR. I downloaded the code generation schema from here and then I ran: xjc patient.xsd But I've got the following exception: parsing a schema... [ERROR] src-resolve: Cannot resolve the name…
Gerard Ribas
  • 717
  • 1
  • 9
  • 17
3
votes
1 answer

Can HL7 2.x only be used for receiving messages or also to pull data?

I am quite new in the HL7 field and not a developer, so sorry if my question might seem to be too obvious. We want to develop an app for a hospital which visualises performance and patient-flow data by aggregating data from other hospital…
3
votes
1 answer

CCDA to FHIR xml

Is it Possible to convert a complete CCDA xml to a FHIR based xml? I would like to convert an complete CCDA xml to a FHIR compatible XML through Mirthconnect interface. I like to have sample messages that shows how a complete CCDA is been…
Vibin Guevara
  • 778
  • 10
  • 27
3
votes
1 answer

Resource specializations

The FHIR schema defines very generic Resources that would sometimes represent several concepts in an implementation and the meaning of the resource is difficult/impossible to determine from the object itself. For example the Condition resource may…
Scott Thibault
  • 329
  • 2
  • 4
  • 12
3
votes
1 answer

FHIR search multiple values for the same parameter

For our patient registration system as a standalone web service, we want to use FHIR. Applications that want to request data from the web service in some cases want to retrieve information about multiple patients. For example a list of last seen…
3
votes
2 answers

Post XML or JSON to FHIR API Server

I am working on a medical application based on HL7 FHIR. I am trying to add new record using XML and JSON both. But all I get is the '500 Internal Server Error'. The XML I am trying to POST is:
3
votes
2 answers

How do we represent the Patient's room number in a FHIR resource?

Looking at the FHIR documentation for Patient resource https://www.hl7.org/fhir/patient.html I can't find a way to specify a Patient's room number as it pertains to an organization (facility) that they may be associated to. I found the Location…
Marco Di Cesare
  • 133
  • 2
  • 7
3
votes
1 answer

Set a default encoding in HAPI-FHIR's RESTful client?

I'm using the HAPI-FHIR library's generic RESTful client to communicate with a FHIR server which is occasionally delivering some unclean XML, but the errors can be avoided if I use JSON. This is easy to override in client.search() by adding…
ewall
  • 27,179
  • 15
  • 70
  • 84
3
votes
2 answers

FHIR Migration and Backward Compatibility

As system implementors, we face a dilemma when we migrate from one version of FHIR to the next. We started off using FHIR 0.0.81 and then moved to SVN revision 2833 on Sept. 10, 2014, to incorporate a bug fix. As suggested, we downloaded the Java…
Rich C.
  • 41
  • 1
3
votes
1 answer

FHIR: Spark.Net: Making MongoDB storage HIPAA compliant

I'm looking for ways to make the Mongo storage used by Spark.Net HIPAA compliant. Does using MongoDB SSL Transport to encrypt data on wire and using Gazzang for data at rest good enough? Are there other options for data at rest while still allowing…
frosty
  • 2,421
  • 6
  • 26
  • 47
3
votes
2 answers

Serialising FHIR Resource to JSON using JAVA API

I am trying to convert an FHIR Resource or ResourceOrFeed Object to the JSON String. I could not find any API methods available in the Java Implementation for this. There are serializers available for .NET api but similar API is not available for…
Ashish
  • 421
  • 9
  • 22
3
votes
1 answer

Serialising FHIR Resource to JSON using .net API

Using the FHIR .net API ( https://github.com/ewoutkramer/fhir-net-api ) I am attempting to parse a XML file and then serialise it in to JSON. Bundle inputBundle =…
BENBUN Coder
  • 4,801
  • 7
  • 52
  • 89
3
votes
1 answer

After creating resource on the FHIR server, how can you read its logical ID?

According to the specification here, if you create a resource the server should return a 201 created along with a Location header which contains the new Logical Id and Version Id of the created resource. I am uploading a patient resource to…
Cormac Q
  • 233
  • 1
  • 3
  • 10
2
votes
1 answer

FHIR Appointment search filtered by location and all its partOf locations

FHIR Location resources can have a .partOf property that points to another Location. Let's say we have locations nested like this. Where each location is partOf the parent Location. hospital building clinic exam room Let's say that an…
Henrik Joreteg
  • 1,698
  • 16
  • 18
2
votes
1 answer

Jolt transformation OMH Mapping to FHIR

Input: { "heart_rate": { "value": 70, "unit": "beats/min" }, "effective_time_frame": { "time_interval": { "start_date_time": "11/01/22 22:14:21" } }, "descriptive-statistics": "minimum" } Jolt Spec: [ { …
mbGraz
  • 23
  • 3