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

Failed to Call Access Method Exception when Creating a MedicationOrder in FHIR

I am using this http://fhirtest.uhn.ca/baseDstu2 test FHIR server and it worked okay so far. Now I am getting an HTTP-500 - Failed to Call Access Method exception. Anyone has any idea on what has gone wrong?
2
votes
1 answer

Search resources with reference is null

Maybe, I misunderstood something in search mechanism in FHIR. But I have found a way if I have to find some objects which any value in some parameter. For example, I wanted to build organization tree, in this case I have to know objects on a "first…
DAiMor
  • 3,185
  • 16
  • 24
2
votes
2 answers

FHIR medication

I have a data model for medications like this: Drug name Prescription Date Preparation Dose Quantity for example: Bendroflumethiazide (Bendrofluazide), 05/12/2015, TABS 2.5MG,1 Tab,56 I had a look at the medication resource but I am unable to…
brillox
  • 363
  • 3
  • 22
2
votes
1 answer

Mapping continuous dataset (ECG) to FHIR resources

I am working on mobile research platform, which is meant to be FHIR-interoperable. The idea is to map conventional 12-lead ECG data (in fact, any data set comprised of monitoring data) to FHIR resources but after reading official documentation I…
Robert
  • 21
  • 2
2
votes
1 answer

Accessing a resource within a Bundle HL7-FHIR

I was just wondering if there is a way to access a resource within a bundle. I.E FhirContext ctx = FhirContext.forDstu3(); String baseSite= "http://fhirtest.uhn.ca/baseDstu3/"; IGenericClient client =…
Georgrio
  • 91
  • 2
  • 14
2
votes
1 answer

Wildcard searching for MRN numbers in FHIR

Is there a way I can do a wildcard search for MRN numbers in FHIR? ex. I want to search for all MRN numbers starting with 12345. thanks, Suresh
Suresh
  • 31
  • 4
2
votes
1 answer

How should I handle internationalization of display strings for FHIR observations?

I'm working on a multi-tenant application catering to customers in different countries. When displaying measurement results, the display labels measurement values need to be in different languages. Labels for measurement values received in one…
Dag Høidahl
  • 7,873
  • 8
  • 53
  • 66
2
votes
1 answer

HL7-FHIR: Is it better to use RESTful api & json or adapt format to a database?

FHIR's Resource List has a RESTful API implementation of FHIR with json. Though I can query just the same in a database, I haven't used RESTful before. Would it be better to adapt this json structure to a database and not use the kind of RESTful API…
James A
  • 467
  • 4
  • 12
2
votes
2 answers

How would you implement FHIR in PHP?

I am trying to build a webapp in PHP that implements HL7's standards. Then I came across FHIR. I do not have alot of experience with API's, though I do have some with some PHP frameworks. When FHIR's documentation says it is a framework standard,…
James A
  • 467
  • 4
  • 12
2
votes
1 answer

Representing PCP/GP History in FHIR

Background: I have been digging into the FHIR DSTU2 specification to try and determine what is the most appropriate resource(s) to represent a particular patient's historical list of GPs/PCPs. I am struggling to find an ideal resource to house this…
Matthew Cox
  • 13,566
  • 9
  • 54
  • 72
2
votes
0 answers

OAuth2 on Furore Spark

I'm needing to secure the Furore Spark server using OAuth2. Has this been done before? I've not been able to find any code samples or guidance so would appreciate any help or advice you can give.
2
votes
1 answer

How to implement Search operation for an Observation Resource Provider for Hapi Fhir server?

I am trying to understand how the RESTful Server in Hapi Fhir works and I wanted to implement some @Search methods for Observation resources. Currently, I have this @Read operation, which successfully works when trying to access the resource (like…
randombee
  • 699
  • 1
  • 5
  • 26
2
votes
1 answer

Can't access Procedure.reason in FHIR model

I'm using the Fhir-net-api with DSTU2 to parse JSON objects to C# models. Everything works well, except that I can't access the Reason element of the resource type Procedure. As an example, I parse following JSON object to the Procedure model using…
ftramnitzke
  • 151
  • 9
2
votes
2 answers

In FHIR StructureDefinitions (profiles) how do elements aggregate into a snapshot?

How does one "roll up" or aggregate differential elements with "base" elements to create a snapshot?
Chris Grenz
  • 161
  • 9
2
votes
1 answer

Can't figure out how to search LOINC using FHIR for a specific test by name?

Can anyone provide some insight on the required syntax to use to search LOINC using FHIR for a specific string in the labs descriptive text portion of an Observation resource? Is this even possible? The documentation is all over the place and I…
Teksysta
  • 25
  • 3