Questions tagged [dstu2-fhir]

98 questions
0
votes
0 answers

Official structure of FHIR Anesthesia Record?

I'm trying to port our Anesthesia record software to using FHIR. But I'm struggling to find any sort of "official" way to structure the record. The final product should contain everything you'd see on a typical sedation record (which are relatively…
Henrik Joreteg
  • 1,698
  • 16
  • 18
0
votes
1 answer

loadPage().next(bundle).execute() would lead to infinite loop

I am trying to get all the entries in a paginated bundle. The working code is as follow: Bundle bundle = fhirClient.search() .forResource(...) .where(...) .returnBundle(Bundle.class) .execute(); …
EzyHoo
  • 301
  • 2
  • 14
0
votes
1 answer

Recommended workflow for creating an FHIR Document

We've built a system for generating anesthesia records. We're now trying to model them as FHIR documents. I understand that a Document (in FHIR terms) is supposed to end up being kind of a self-contained resource. But, in our case, we have a process…
Henrik Joreteg
  • 1,698
  • 16
  • 18
0
votes
2 answers

Mapping fhir bundle resource to cda in javascript

I have been trying to find a way to map fhir bundle resource to cda documents in javascript. I found some resource like "https://github.com/amida-tech/fhir2ccda" but it has no description. Found $document fhir operation but it has no proper…
0
votes
1 answer

I am looking for Fhir Resource validation against Fhir Structure definition

I am looking for Fhir Resource validation against Fhir Structure definition using .net core I found there is a lib org.hl7.fhir.validator.jar and I couldn't find a better way to do validation through c# code, my requirements are simple Cardinality…
Shanjee
  • 491
  • 5
  • 16
0
votes
0 answers

Epic AppOrchard Tokens in OAuth2 Context Missing Value

I'm testing my SMART application on Epic AppOrchard using Hyperspace simulator. Currently facing issue related to Tokens in OAuth2 context. Following is my Token URL: mrn=%PATID%&user=%SYSLOGIN%&providerId=%USERPROVFHIRID% I used to get providerId…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
0
votes
1 answer

Vonk FHIR Facade - Vonk Server could not load file or assembly System.Runtime

As I implement Vonk FHIR Facade using the link, I've performed all steps successfully uptil this point and placed the resulting dlls in plugins directory. Now when I start the Vonk server, it fails with following error: Startup Failed: Could not…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
0
votes
1 answer

FHIR - What are profiled resources in FHIR Specification

I've read it on some websites about the term profiled resources for example: Vonk FHIR Server supports all resource types and search parameters in the FHIR specification, including profiled resources. But I'm not sure about the term profiled…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
0
votes
1 answer

How do I add Immunization to an FHIR Transaction Bundle?

I have downloaded some DSTU2 patient bundles from https://syntheticmass.mitre.org/download.html. I am trying to upload the data to an FHIR test server. My code (using fhir-net-api) loops through several files and compils them into a single…
0
votes
1 answer

Modelling services provided at location of an organization

Using FHIR resources (dstu2), how can I send in the response, the healthcare services provided at a particular location when search location request is made? Following is the location resource that I use which has no provision to send services in…
0
votes
1 answer

Change default namespace when Serializing to XML fhir-net-api

I'm using the the fhir-net-api library found here to transform FHIR messages from JSON to XML. The resulting XML has a namespace of http://hl7.org/fhir/ which seems to be the default used by the library. Is there a way to control the namespace when…
David
  • 139
  • 1
  • 13
0
votes
1 answer

Method cannot be found but clojure.reflector shows otherwise

I am trying to create a dstu2 client from clojure using hapi fhir. As a template i use https://github.com/jamesagnew/hapi-fhir/blob/master/examples/src/main/java/example/GenericClientExample.java But I am not able to execute…
Heefoo
  • 125
  • 1
  • 8
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

What if I want to define a resource but the data I have does not match all the predefined fields?

I am new to FHIR and I am trying to understand how the resources work. Assume I have patient data and I want to store it as a Patient resource define by FHIR. Patient Resource: http://build.fhir.org/patient.html But say the data I have is limited…
Rakesh Adhikesavan
  • 11,966
  • 18
  • 51
  • 76
0
votes
1 answer

FhirContext reusing best practice returns exception "Timeout waiting for connection from pool"

I am having a jsp which makes 25 hl7 hapi fhir calls asynchronously using dstu2. As suggested in best practices, I am creating the fhir context once using static loading and reusing it in every service call. However, service calls fail…