1,068 questions
-1
votes
1
answer
64
views
Is it possible to show a codes from a codesystem from another terminologyservice than the tx in a fhir IG generated via SUSHI?
I wonder if it is possible to show the expanded codes from a terminology service that is not defined as the tx server in the ini file?
What I mean is that under artifacts in the implementation guide ...
1
vote
1
answer
83
views
Merging FHIR patients using Firely .NET
I am trying to merge two FHIR patient resources using the C# Firely SDK.
Unfortunately, this always fails with an error
Invalid request. Query parameter sourcePatientId is missing
although it is ...
0
votes
1
answer
64
views
_elements of a "N" nature, filtering only on certain _element values
So I can query on identifier-SYSTEM's.
And I can "trim the return payload" by specifying values for _elements.
But when an _element is a collection of values (like "identifiers"), ...
2
votes
3
answers
110
views
How can I graphically view HL7 FHIR data?
I noticed that fhir data is a graph node-edge data format. I would like to view the data graphically. How can this be done?
0
votes
1
answer
75
views
How to associate minimum and maximum time to effect to a FHIR resource?
I'm working on a project to migrate a legacy healthcare system to FHIR, and I need help mapping the current SQL-based fields to the appropriate FHIR resources.
The goal is to enable API integrations ...
0
votes
1
answer
30
views
Is it possible to construct a FHIR search query based on the identifiers of a linked object?
we have the [Appointment][1], [Patient][2] and [Organization][3] resources as shown below. I'm trying to construct search queries for the usecase - find all appointments scheduled on a given day ...
0
votes
0
answers
43
views
Error: 403 Client Error when using EPIC FHIR Prod
So I was able to get sandbox data and pull it just fine. Now moving from sandbox to production, I been a patient at Methodist and am using my personal crediential against their API. And I am getting ...
0
votes
0
answers
45
views
How to obtain the ValueSet of a FHIR resource property using the Firely Net SDK
Not sure how the BindingAttribute value can be used to obtain the ValueSet applicable to the property.
This is the code from the Condition class defined in firely-net-sdk (https://github.com/...
0
votes
1
answer
64
views
Errors after having published the implementation guide FHIR for the first time
I made the first publication to FHIR IG Builds from the GitHub repository, using the Auto-Builder and webhook. The first publication went well, but subsequent builds gave me the following error:
...
1
vote
1
answer
77
views
Exporting related data in FHIR
Using the bulk export ($export) functionality of FHIR, I am able to export all resources given a query. What I am unsure about is how to export data related to these resources.
For example, suppose I ...
0
votes
1
answer
63
views
Shall I implement INotifyPropertyChanged on the View or ViewModel
I am new to C# programming, I am coming from a Java background and I have clear understanding on C# and the MVVM model. I am trying to develop a GUI client for FHIR server and am planning to use ...
0
votes
1
answer
53
views
FHIR PlanDefinition $Apply error trying to access Activity Definitions
Using the docker image for hapiproject/hapi:latest and running the image using docker run -e HAPI_FHIR_CR_ENABLED=true -p 8080:8080 to enabled the Clinical Reasoning module, when I try to Apply ...
0
votes
0
answers
50
views
Adding FHIR to wearOS project
I am trying to add FHIR to my wearOS app, using Google's Open Health Stack SDK. I have been following this guide: https://google.github.io/android-fhir/use/FEL/Getting-started/
When I add the ...
0
votes
1
answer
458
views
How to create Encounters using EPIC FHIR API?
I'm working on integrating Epic FHIR APIs into my custom EHR application. One of my requirements is to create new Encounters (e.g., linking them to appointments or other workflows). However, after ...
0
votes
0
answers
105
views
Converting FHIR Json to Google proto generated model
We have the FHIR JSON model which needs to be serialized using protobuf but we are not able to serialize it as the JSON is not getting parsed to the generated google fhir models.
https://github.com/...
0
votes
1
answer
212
views
FHIR Bundle batch validation
I want to validate a FHIR Bundle against a remote FHIR server using a single request. The incoming bundle can contain both valid or invalid resources. The response bundle should contain validation ...
0
votes
1
answer
81
views
Include or RevInclude on Cardinality 0..*
Using this tutorial:
https://github.com/hapifhir/fhir-tutorial/blob/master/Search_References_ChainHasIncludeRevinclude/lesson.md#reverse-include-_revinclude-1
and this image
Include and Reverse ...
0
votes
1
answer
63
views
How can I query FHIR server to return all panel tests and independent tests in one go
I have a patient portal that connects to an FHIR server to get patient's lab tests.
I want to get all the panel/grouped tests and individual tests in one query. Is there a way to do that?
0
votes
1
answer
69
views
How to choose between a FHIR category and a FHIR extension for encoding a custom field value
I have some custom fields that I try to map onto FHIR resources and I am having some doubts on whether some of them should be a FHIR category or an extension.
Some fields seem to be containing ...
0
votes
2
answers
113
views
Writing to FHIR service using B2C identity provider
Is it possible to create an application the uses B2C identity provider and writes to the Azure FHIR service?
All the B2C examples I have encountered only read for the FHIR service (e.g. https://learn....
0
votes
1
answer
62
views
How to capture a Patient's healthcare literacy in FHIR?
Objective
For a specific use case we need to capture a Patient's healthcare proficiency. For that we have three classifications, eg literate, informed, and curious.
Question
What is the FHIR ...
0
votes
1
answer
176
views
FHIR query using _type and common search parameters
I'm using the Azure FHIR service R4 and trying to find all device and service requests that are based on a particular care plan. I ran the following request:
{{fhirurl}}/?_type=DeviceRequest,...
0
votes
0
answers
187
views
Epic fhir appointment request
I try to get appointments from Epic Fhir. I use var baseUrl = "https://fhir.epic.com/interconnect-fhir-oauth/api/FHIR/R4"
But I get status code forbidden.
Details of the Issue:
API Endpoint: ...
0
votes
1
answer
164
views
HAPI FHIR - From CDA to FHIR by using StructureMap
I'm using hapi-fhir version 7.2.1 and I'm trying to convert a CDA document in FHIR resource by using FHIR Mapping language and StructureMap resources
I wrote this unit test
@SpringBootTest(
...
1
vote
2
answers
432
views
I am requesting access token from FHIR sandbox and receive token but error of invalid_grant
I am requesting an access token from FHIR sandbox for a standalone web app (no client secret). On my redirect page I collect code and state from URL, and then fetch access token.
export default ...