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

Which resource to use as a comment on a FHIR observation?

I'm making a web tool that shows FHIR Observation resources. These are for example measurements taken at home (blood pressure, weight etc) by the patient themselves. Then I want a health worker to look at the graph and be able to comment it. I guess…
Larsie
  • 309
  • 1
  • 9
2
votes
2 answers

How to represent a contained resource in the .NET FHIR DSTU 2 Model

I am trying to construct an Order resource for the purpose of the EvaluateOrder transaction for GAO. According to the spec it is using contained resources as shown below. The problem I am having is that the .NET object model seems to require a…
Tedford
  • 2,842
  • 2
  • 35
  • 45
2
votes
1 answer

HAPI FHIR Json encoder not handling contained resources

I have a FHIR Device resource that contains a FHIR DeviceComponent resource. I use the following HAPI FHIR code to 'insert' one resource into the other: protected static void insertResourceInResouce(BaseResource resource, BaseResource…
Brian Reinhold
  • 2,313
  • 3
  • 27
  • 46
2
votes
1 answer

Send HTTP header from Orbeon XForm submission

I have an API that depends on certain HTTP Headers for specific behavior. Example would be HTTP Header If-Matches on a POST to support updating only if version matches the value of If-Matches. How would I send these HTTP headers from an Orbeon…
2
votes
2 answers

FHIR Query resource missing in Continuous Integration spec

We have detected FHIR Query resource is missing in FHIR Continuous Integration page. Nevertheless,it´s present in Java implementation in zip library for that branch. We are using this resource in certain FHIR messaging services which are already…
jmolmo
  • 542
  • 4
  • 6
2
votes
1 answer

How to avoid duplicates when creating/updating a patient resource from V2 messages

I have been successful in translating HL7 V2 messages to FHIR resources and POSTing them to a server. What has given me headaches however, is the question of how I can avoid creating duplicates during updates or accidential re-POST. Example: I get…
2
votes
1 answer

Can FHIR MedicationPrescription.dosageInstruction.doseQuantity handle a dose range?

If the dose is expressed as a range, such as 1 - 3, can this be handled with the FHIR MedicationPrescription.dosageInstruction.doseQuantity ?
2
votes
1 answer

is there some FHIR test server with continious integration http://hl7-fhir.github.io/ release?

We want to make some proofs with new resource commits on http://hl7-fhir.github.io/. is there some available fhir server for testing? Thanks in advance Regards
jmolmo
  • 542
  • 4
  • 6
2
votes
1 answer

Constrain code to a fixed value or subset ValueSet via FHIR Profile

Would like to constrain a particular code (defined by ValueSet) to a fixed value or subset of original ValueSet via FHIR Profiles. For Clinical Decision Support (CDS) we need to 1) restrict a Condition to a Condition Occurrence such that the status…
CodeMonkey
  • 22,825
  • 4
  • 35
  • 75
2
votes
2 answers

References to Any Resources in Compositions.Sections. how can i know Resource Type for these references?

we are developing a generic browser for clinical documents expressed in Compositions. We are browsing the different sections for a Composition for showing them in our portal and mobile app widgets. Our doubt with the current composition samples in…
jmolmo
  • 542
  • 4
  • 6
2
votes
1 answer

Deleting a FHIR resource

I'm coming to opinion that the Blaze server has not fully supported deleting of a FHIR resource. Could someone help with the following questions: When a resource is deleted, is a new version of the resource created and does this modify that last…
Richard Schneider
  • 34,944
  • 9
  • 57
  • 73
2
votes
2 answers

How to Delete resources using Transaction

I would like to delete multiple resources by using a transaction, but I can't find any example nor information how resources should be marked in the bundle for delete. Thank you.
Ruslanas
  • 61
  • 6
2
votes
0 answers

FHIR Datamodel as JSON

I am new to FHIR. I am trying to expose an REST url in Spring MVC which will expose the JSON data model of FHIR and will work on it. Using the sample requests available on FHIR website, I am not able to map it back to the data objects as I am not…
Ashish
  • 421
  • 9
  • 22
2
votes
2 answers

FHIR build fails with NoSuchMethodError: net.sf.saxon.Configuration.newConfiguration()

Following instructions at http://wiki.hl7.org/index.php?title=FHIR_Build_Process my FHIR build is failing. I modified the publish.bat to ensure it uses the correct JDK. Running it on Windows 7 64-bit machine with JDK 1.6 (also tried JDK 1.7) and…
2
votes
2 answers

retrieving subset of FHIR resource

All, I'm interested in the ability to retrieve a specific element within a FHIR resource using a single URL call. For example, suppose I'm interested in the gender of my patients. I would read the using the URL, without having to walk the XML…
Jeff .
  • 43
  • 5