Questions tagged [dstu2-fhir]

98 questions
15
votes
1 answer

How to store User Fitness / Fitness Device data in FHIR?

We are currently in the process of evaluating FHIR for use as part of our medical record infrastructure. For the EHR data (Allergies, Visits, Rx, etc..) the HL7 FHIR seems to have an appropriate mapping. However, lots of data that we deal with is…
user2864740
  • 60,010
  • 15
  • 145
  • 220
7
votes
0 answers

Parse FHIR Bundle JSON Apache Spark

What would be the best generalized approach to traverse/extract/parse an HDFS directory of following general file type into a spark dataframe, rdd, or a sparse array? I find it somewhat unwieldy to try to convert this into a format that would be…
Pylander
  • 1,531
  • 1
  • 17
  • 36
6
votes
1 answer

How to search for a fhir resource by Identifier?

I've notice most if not all fhir resource types have a property 'identifier', which is of type identifier. I have set this on my resources to have a system, and a value, I'm wondering how I now search for resources with a given identifier? Ideally I…
Andy
  • 3,228
  • 8
  • 40
  • 65
6
votes
1 answer

Setting the timeout of a HAPI FHIR IGenericClient

I'm trying to run a fhir search using the following code; FhirContext ctx = FhirContext.forDstu2(); ctx.getRestfulClientFactory().setConnectTimeout(2000000); IGenericClient client =…
Andy
  • 3,228
  • 8
  • 40
  • 65
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
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
1 answer

Epic 2018 SMART on FHIR Authorization Request Ask for SignIn

I'm testing my SMART on FHIR application on Epic AppOrchard using hyperspace simulator. OAuth 2.0 authorization flow works fine with Epic 2017 version but when I change it to Epic 2018 or 2019, I'm required to Sign In with Epic Account instead of…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
4
votes
1 answer

FHIR : adding a custom extension

I would like to add to add a custom extension to my Schedule resource. In my app, Schedule have visit motives (reasons). I know there's a list of classified appointments / encounter reasons but I would like to use mine. I have something like this…
user2462805
  • 1,049
  • 3
  • 11
  • 26
4
votes
1 answer

What does it mean to be FHIR compliant?

I am working on a solution for the HRRP hospital readmissions reduction program. I want to make my server FHIR compliant. But what does FHIR compliant mean? My HRRP solution has some data that does not match any of the pre defined resources. For…
Rakesh Adhikesavan
  • 11,966
  • 18
  • 51
  • 76
4
votes
1 answer

How for I search fhir resources based on extension values?

I have a set of fhir resources in the following form:
Andy
  • 3,228
  • 8
  • 40
  • 65
3
votes
2 answers

Epic App Orchard How to Get Practitioner Id or Information

I've an Epic App Orchard account, and trying to build a provider facing app and test it using Hyperspace Simulator using SMART on FHIR (OAuth 2.0). I can launch my SMART on FHIR application within the simulator, and pass patient related information…
Azaz ul Haq
  • 1,635
  • 2
  • 18
  • 46
3
votes
0 answers

HAPI FHIR java @create interaction does not return any response

I have implemented Appointment booking where @Create interaction is used to create an appointment. Now I want to return MethodOutcome for booked appointment as the reponse of @create method. MethodOutcome oMethodOutcome = new…
2
votes
2 answers

Iterating over a paged fhir response

I've ran a query on a hapi fhir database which has returned a paged result back to me. I'm using hapi base in java to actually do the search, as per the documentation here: http://hapifhir.io/doc_rest_client.html Bundle bundle =…
Andy
  • 3,228
  • 8
  • 40
  • 65
1
2 3 4 5 6 7