Questions tagged [dstu2-fhir]
98 questions
1
vote
1 answer
What is the practical difference between FHIR snapshot and differential
From here I have this:
If differential constraints are specified in this structure, they are applied to the base in a "differential" fashion. If there is no base, then the differential constraints cannot be provided (snapshot only). Differential…

ErichBSchulz
- 15,047
- 5
- 57
- 61
1
vote
2 answers
How does a date search parameter work with a Period field?
I'm looking at the DSTU2 CarePlan resource which has a date search parameter that searches the CarePlan.period field.
The DSTU2 search page specifies that when the target value is a Period, the target is explicitly a range (though the upper or lower…

Max
- 13
- 3
1
vote
3 answers
Defining a Medication Schedule in FHIR DSTU2
We are looking to define a Medication Schedule using the FHIR Medicatation Prescription resource. Data model aside the schedule is as follows:
Drug / Medication
Start Date
End Date
Administration times
Site / Route
For example
Amoxicillin 50mg -…

MrEyes
- 13,059
- 10
- 48
- 68
0
votes
1 answer
Tomcat won't access hapi-fhir-jpaserver-starter using intellij
I am trying to understand how the fhir works so i read the documentation and in the documentation they recommended me to deploy fhir server from https://github.com/hapifhir/hapi-fhir-jpaserver-starter. So first I imported the project in intellij and…

HIZAM
- 7
- 4
0
votes
1 answer
Can I restore deleted FHIR resource from _history and maintain its ID?
Most FHIR servers won't completely remove a FHIR resource from the database when you do a DELETE.
What I'm wondering is this: if I retreive the latest version of a deleted resource using it _history for example: GET Patient/1/_history/2 and want to…

Henrik Joreteg
- 1,698
- 16
- 18
0
votes
2 answers
Hapi FHIR - iterating over pages of a response / missing display field
I'm itarating over all enteties of a ressource type like so.
while (query.getLink(IBaseBundle.LINK_NEXT) != null) {
query.getLink("next").setUrl(FhirUtils.replaceBaseUrl(query.getLink("next").getUrl, fhirClient.getServerBase))
query…
0
votes
1 answer
"This property must be an Array, not an array" Error from AWS Healthlake
I'm converting Apple records data (in DSTU2 format) to R4 format.
This is the data I'm sending to healthlake server
{
"category": [
{
"text": "Vital Signs",
"coding": [
{
"system":…

Shubham Gupta
- 13
- 3
0
votes
1 answer
Need to know any sample URL to hit and check XCPD patient discovery request
I need to hit the below provided SOAP request to any sample URL which can support patient discovery request (XCPD) protocol and respond to me back with the standard data (sample) against this request. I have attached the XML file which contains the…
0
votes
1 answer
How to extend a fhir class?
I want to append some relevant data to FHIR lets say patient or condition object for further processing. I tried to extend the FHIR patient class in python. Getting the following error. Could somebody give me some helpful pointers here?…

Rakesh
- 104
- 1
- 11
0
votes
1 answer
what is involved it supporting Smart on FHIR
I'm stuck while working on smart on FHR. how I will be able to Authorize through my code, currently I'm testing my Authorization and sandbox using the Launch Button. here is an example
ScreenShot
I just want to know which values should I pass to…

Muhammad Hamza
- 3
- 2
0
votes
1 answer
How do i search Organizations by type in FHIR
How do i search Organizations by Organization types e.g prov,dep,gov on FHIR server.
i want to display only prov Organizations from a list of orgnizations that contains prov,gov,dep.
Tried this "GET [base]/Organization?type=prov" and did not return…

Codee
- 17
- 2
0
votes
3 answers
How to apply PlanDefinition inorder to generate a carePlan
I am newbie to FHIR. Trying to create careplan by applying PlanDefinition/$apply. Are there any examples available so that I can take them as reference and generate careplan out of planDefintion.
I am able to post an planDefinition but I don't have…

code tutorial
- 554
- 1
- 5
- 17
0
votes
1 answer
How to get patient records from EPIC FHIR with just telecom as query string
I am trying to search FHIR data from EPIC system by connecting to FHIR sandbox. I just wanted to pull all patient records with just telecom (phone or email) like GET [base]/Patient?telecom=abc@email.com. But it looks like EPIC retrieves results only…

code tutorial
- 554
- 1
- 5
- 17
0
votes
1 answer
FHIR Observation DSTU2 resource
I need some help getting the value and unit of a result from the FHIR Observation DSTU2 resource. I want to map these values to strings but it looks like Observation.value[x] can have different type of data. Any thoughts on how to do this in C#? I…

Victor
- 3
- 1
0
votes
1 answer
_RevInclude in hl7.fhir
Can someone please explain the functionality of _revInclude in fhir with an example?
This is what i understood,
if we have an encounter resource we can have a location and that location will have a organization resource referenced in partOf…