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
1
vote
1 answer

How to get an element in FHIR API?

I tried to get the element like Identifier, Location, Period, ... But not working. How can I get it? My code follow: static void Main(string[] args) { //The fhir server end point address string ServiceRootUrl =…
quaaan
  • 17
  • 4
1
vote
2 answers

Add extension to R4 Patient

How do I add the below to an R4 Patient? "search": { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/match-grade", "valueCode": "certain" } …
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
1
vote
1 answer

Having trouble Deserializing json to FHIR Appointment Instance

I am obtaining the following json: { "fullUrl": "https://my.fhir-server.com:8181/multi-m2integrationtest/firm/xyz123/ema/fhir/v2/Appointment/7240", "resource": { "resourceType": "Appointment", "id": "7240", "meta": { …
Yossi G.
  • 939
  • 1
  • 8
  • 22
1
vote
2 answers

How do I use the "or" operator between different elements?

Help me please! [GET] http://fhir.hl7fundamentals.org/r4/ServiceRequest?encounter:Encounter.participant.identifier=teste-brasil-v1|123abc456 The result is 1 [GET]…
1
vote
1 answer

Get 401 Unauthorized request error with valid token

I am querying a FHIR API server using Postman with OAuth2 token but I am getting the 401 Unauthorized request error. Could someone help me troubleshoot as I am not sure what I am doing wrong here? I can send the token if needed to reproduce the…
1
vote
1 answer

how to identify a patient in FHIR IPS?

In International Patient Summary (IPS), how is it expected to uniquely identify a cross-border Patient? To elaborate, IATA has a way to track all passengers across the globe. How can the healthcare systems do that? I'm unable to figure this from hl7…
pMan
  • 8,808
  • 11
  • 32
  • 35
1
vote
0 answers

Use FHIR to model the provider / insurance model

I'm looking to understand the finance interactions a bit. If I have a doctor who takes 2 or 3 insurance plans, what are the FHIR objects I need to use to model that? My current guess is that one needs An Organization to represent an insurance…
Brian Dolan
  • 3,086
  • 2
  • 24
  • 35
1
vote
0 answers

How to return newly created resource after PUT in Asymmetrik 4.0.0 node-fhir-server-mongo sample?

In Asymmetrik node-fhir-server-mongo sample I want to return newly created Organization resource after PUT. Here is sample code: I also tried to use returnNewDocument as option. Can some please guide? collection.findOneAndUpdate({ id: id }, { $set:…
1
vote
0 answers

Use Fire.Ly open source libraries in a FHIR server

I am developing a FHIR Based ASP.NET Web API. I would like to know how to plug in Fire.Ly's JSON Parsor in the WEB API Pipeline so as to directly parse the FHIR Resource using [FromBody] attribute in the POST Request. Any example / documentation…
Shubha Lakshmi
  • 127
  • 2
  • 2
  • 15
1
vote
1 answer

Returning Hapi FHIR element in restful server

I have a basic springboot application set up that'll return string values on get calls, but when I try to return a mock Patient object I get a weird error My code: @RequestMapping("/test2") Patient test2(){ Patient patient = new Patient(); …
Travis Frazier
  • 441
  • 3
  • 13
1
vote
1 answer

hapi-fhir-cli upload examples command giving an error

I'm trying to upload test data to the local JPA fhir server using hapi-fhir-cli. But while uploading the resources, I'm getting the following error. 2020-09-03 17:33:26.486 [main] INFO c.u.f.c.ExampleDataUploader 1 good references 2020-09-03…
Kamlesh
  • 11
  • 4
1
vote
1 answer

What are the dependencies that will allow Cerner Bunsen to load FHIR R4 (ukcore)?

Does anyone know if the Cerner Bunsen library (https://github.com/cerner/bunsen) will load FHIR R4 bundles and persist the data to spark sql databases? If anyone can offer any guidance or point me to any, that would be great. At the moment I'm just…
user481a
  • 123
  • 6
1
vote
0 answers

Map clinical Document names to LOINC names

I am using LOINC to match clinical document names. I am able to match Document types directly to LOINC longnames but some documents names am not able to match document type for example"operative report" in the image below.Is there any approach that…
code_bug
  • 355
  • 1
  • 12
1
vote
1 answer

fhir sorting and searchParameter

I'm using hapi-fhir and want to sort a list of procedures by their patients lastname. As far as I understand, a suitable serchParameter is required in order to do this. The documentation says chaining is also supported for searchParameter, if it is…
Christian
  • 21
  • 2
1
vote
0 answers

Unable to find matching profile against choices error on hapi version 5.x for custom profiles

I am using custom profiles for validating bundle resource of type document. While using reference to other resources within bundle , I am getting the below error : "Bundle.entry[0].resource.ofType(Composition).subject Unable to find matching profile…
Amol Datar
  • 11
  • 3