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

Postgres createuser command not found after installing with homebrew on my Mac

lawn-128-61-59-74:~ postgres$ createuser -R -P -S -D fhir After running "brew install postgresql" and running postgres, when running the above command I am getting the following error: "-bash: createuser: command not found"
luii
  • 319
  • 3
  • 5
  • 16
5
votes
1 answer

Purpose of Smart On FHIR and FHIR-NET-API

Can anyone describe the purpose of the following tools and difference between them? fhir-net-api smart-on-fhir
Abubakar Ikram
  • 433
  • 9
  • 23
5
votes
2 answers

HAPI failing to return Basic resource after successful upload

I'm trying to upload a resource to HAPI. It's based on the resource type basic, and I have created a custom profile(and extensions) for the concept I'm trying to capture. I have uploaded those StructureDefinitions to the server I'm using (hosted…
Andy
  • 3,228
  • 8
  • 40
  • 65
5
votes
1 answer

Can someone explain FHIR extensions?

I've been trying to wrap my head around authoring profiles in FHIR. The trouble I'm having is around the use of using extensions. The documentation talks about extensions as if they are simply just there to extend existing elements of the resource…
Andy
  • 3,228
  • 8
  • 40
  • 65
5
votes
1 answer

How to add profiles via the FHIR REST api (HAPI)

I've looked at the documentation for creating profiles for FHIR, and I've used Forge to create some xml that I believe is valid to describe a profile. I can't find in the documentation where it actually states what request I need to make to the…
Andy
  • 3,228
  • 8
  • 40
  • 65
5
votes
1 answer

FHIR RESTful Adding multiple patients resources in a single call

As the title says really. I've been POSTing patient resources to FHIR via multiple calls and having the patient passed as xml. I have hundreds of thousands of patients to add (as well as tons of other data). I'm just wondering if there is a more…
Andy
  • 3,228
  • 8
  • 40
  • 65
5
votes
1 answer

Embedding questionnaire scoring data into the FHIR Questionnaire/Response?

We have a system where citizens download Questionnaire from a server, fill it in and submit a QuestionnaireResponse back into the server, storing it there. In our case, these are simple questions about how you're feeling and symptoms. A health…
Larsie
  • 309
  • 1
  • 9
5
votes
1 answer

Tricky Go xml.Unmarshal() case

I'm trying to unmarshal XML like this in Go: or this or this
Scott Deerwester
  • 3,503
  • 4
  • 33
  • 56
5
votes
1 answer

HL7 FHIR serialisation to json in asp.net web api

I'm using the HL7.Fhir nuget package 0.9.3 created by Ewout Kramer. I am tying it up with ASP.NET Web API, but unfortunately the built in JSON serialization isn't generating the JSON correctly. It contains lots of…
5
votes
2 answers

Can I convert HL7 v2 message to a FHIR resource directly?

Currently we are doing some POC around converting HL7 v2 message to a FHIR resource. So as a first step we are converting the HL7 v2 message into an XML format using XMLParser from HAPI API, and as a second step we have written an XSLT to convert…
user3057148
  • 51
  • 1
  • 2
5
votes
2 answers

Use of _include in FHIR

In the FHIR query spec it states that the _include parameter can be added to the query URL to request that specified referenced resources are returned in full to prevent further network requests to retrieve these…
BENBUN Coder
  • 4,801
  • 7
  • 52
  • 89
4
votes
3 answers

EPIC FHIR SMART Backend Services: { "error": "invalid_client", "error_description": null }

I'm trying to implement the EPIC FHIR SMART Backend Services (Backend OAuth 2.0) on go programming language. I've created my dev account, uploaded the public key there, and selecting the backend system as the application audience. I'm pretty sure…
novalagung
  • 10,905
  • 4
  • 58
  • 82
4
votes
1 answer

FHIR Observations derived from questionnaire responses

I want to create an Observation derived from a QuestionnaireResponse. What is the convention for pointing to a specific item in a QuestionnaireResponse object from which the Observation was derived? I was thinking you could point at the…
k3thomps
  • 181
  • 3
4
votes
1 answer

SMART on FHIR client-js: Invalid Character Error on IE11

Note: The issue is also reported on GitHub. Please take a look at Git issue as well for current progress/investigation. I'm using fhir-client v0.1.15 to develop a SMART on FHIR web application that would run in EHR launch scenario. For example in…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
4
votes
3 answers

FHIR search by extension

How can I search for extension values in FHIR? Is SearchParameter registration necessary for searching for the extension? Any help with an example would be great. I have been trying with my own FHIR server (https://github.com/Microsoft/fhir-server)…
Vikash Kumar
  • 538
  • 7
  • 16
1
2
3
65 66