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

FHIR STU3 ListResource.ListEntryComponent.getItemTarget() function not recognizing referenced Resource

I'm converting my code to FHIR STU3 and I'm trying to get the Organization Resource referenced by a List.entry[x].item.reference by calling getItemTarget() on the ListEntryComponent, but it always returns NULL although the resource is there (see if…
Ayanami
  • 85
  • 9
0
votes
1 answer

FHIR: Get all encounters, patients, appointments for the practice

I'm trying to use FHIR to pull all patients, encounters and appointments into an intermediate database for further analysis. Most of the FHIR API's appear to be designed to handle one patient ID at a time, or one encounter at a time, etc. What is…
Brett G.
  • 11
  • 1
0
votes
1 answer

WSO2 FHIR Connector: error on handling FHIR server response after create resource

I have send to the server a request for create operation. After the creation of the resource the server response is not returned to the client due to the follows error: Axis2Sender Unexpected error during sending message out The server response is…
Marco S.
  • 512
  • 2
  • 6
  • 22
0
votes
2 answers

Using WSO2 FHIR Connector

I'm trying the FHIR Connector with WSO2 EI 6.1.0 I'm following this documentation The request for the create operation is: { "body": { "base": "https://sqlonfhir-stu3.azurewebsites.net", "type": "Patient", "format": "json" …
Marco S.
  • 512
  • 2
  • 6
  • 22
0
votes
1 answer

How to IsSummary=true using fhir-net-api?

I am using fhir-net-api. I have implemented read operation on CapabilityStatement. Now with the read operation, I want to implement IsSummary=true search operation. I am not figuring out how to have resource elements with IsSummary=true using…
Abubakar Ikram
  • 433
  • 9
  • 23
0
votes
1 answer

How to parse a DiagnosticReport from a JSON and print the same JSON again?

I'm parsing a DiagnosticReport from a JSON file and It works fine, but when I try to print the same JSON file throught IParser encode function, the JSON is different to the original. I need to print the same JSON. Original JSON (String json) { …
Raul
  • 465
  • 5
  • 16
0
votes
1 answer

FHIR - How to delete Vital Data

This link talks about how to write Vital information to FHIR database. Write Vital on Smart on FHIR As we are demonstrating our data collection capabilities we find that we get a large amount of database making our graphs look cluttered. How do we…
SC-SL
  • 377
  • 3
  • 19
0
votes
1 answer

FHIR user identification

I'm looking to implement a document repository (not to the extend of XDS). We could always roll our own service interface but are looking to instead leverage either the DocumentManifest or DocumentReference resource implemented in FHIR REST…
Jeremy
  • 44,950
  • 68
  • 206
  • 332
0
votes
1 answer

What is the difference between __assertedDate and assertedDate in hl7 FHIR json schema?

In most of the JSON schemas of hl7 FHIR resources, i found fields prefixed with _. But they are not listed in the examples. So while creating classes for the resources, shall I go only with fields not prefixed with _. Like _assertedDate and…
sowmiyaksr
  • 169
  • 5
  • 18
0
votes
1 answer

FHIR - Searching ALL resources

Is it possible to search for a parameter in all the resources on a FHIR based server (currently using HAPI)? {{url}}/Basic?_id=1 Returns the correct Basic resource but I want to be able to search through all resource types (Basic, Patient,…
StephenL
  • 122
  • 1
  • 11
0
votes
2 answers

FHIR : Appointment reasons as a resource?

I'm implementing FHIR at the moment and I'm having trouble dealing with appointment reasons. I know I can use the value set available here : https://www.hl7.org/fhir/valueset-encounter-reason.html or implement my own value set for it but it's still…
user2462805
  • 1,049
  • 3
  • 11
  • 26
0
votes
1 answer

Using javascript class in Angular2

I want to use a native javascript library in my Angular2 project. I built it and created a bundled js file. Now, I need only one class named fhir from this file. I tried to create a new javascript class and create an instance of the fhir class in…
Bünyamin Sarıgül
  • 3,031
  • 4
  • 30
  • 55
0
votes
0 answers

Reading hierarchy of a JSON using value

I want to get the hierarchy of a JSON using a value. For example: In below JSON for value "Medical record number" , the desired information is "resource->identifier->type->coding->display" . IS their any inbuilt function to do so. The one way to…
user4738009
0
votes
1 answer

How to GET associated ActivityDefinitions for a specific PlanDefinition FHIR v1.9.0

FHIR stu3 tried this: http://fhirtest.uhn.ca/baseDstu3/PlanDefinition/20630?_revinclude=ActivityDefinition based on the example from : http://build.fhir.org/search.html#include but it returned 400 Bad Request thanks
effi
  • 3
  • 2
0
votes
1 answer

FHIR app: how to make a call against some api endpoint

This is the github repository URL to add codes of calling FHIR apis. https://github.com/cerner/smart-on-fhir-tutorial I have created am app by following steps in this tutorial. And now I need to insert some codes to call this endpoint :…