Questions tagged [smart-on-fhir]

a standards-based, interoperable apps platform for electronic health records

SMART on FHIR is a set of open specifications to integrate apps with Electronic Health Records, portals, Health Information Exchanges, and other Health IT systems

57 questions
0
votes
2 answers

Infer OAuth2 token endpoint from authorization code

I am building software that uses OAuth2 to access health data from volunteers. I have the software working for a single test server, and am able to successfully obtain an OAuth access token and query the server. In production, there will be many…
Dylan Klomparens
  • 2,853
  • 7
  • 35
  • 52
0
votes
1 answer

SMART on FHIR JavaScript API does not return JSON with out additional call to fetchAll for Observation in Cerner tutorial

I'm working on creating a SMART on FHIR application based on the Cerner tutorial at https://engineering.cerner.com/smart-on-fhir-tutorial/. The following is called in example-smart-app.js var patient = smart.patient; var pt =…
John
  • 3,458
  • 4
  • 33
  • 54
0
votes
1 answer

Issue with join on patient name in Cerner SMART on FHIR tutorial in SmartHealthIt App Launcher

Running the Cerner SMART on FHIR tutorial out of the box I get an unknown method Javascript error for the following lines. fname = patient.name[0].given.join(' '); lname = patient.name[0].family.join(' '); I've currently resolved by…
John
  • 3,458
  • 4
  • 33
  • 54
0
votes
1 answer

Ingesting FHIR resources - Metadata and resource Identifier for Interoperability / data sharing workflows

Are there any best practices or industry standards when ingesting FHIR resources from another system? More specifically - when multiple healthcare entities using FHIR resources begin sharing data (and wanting to store each other's data within their…
dajaffe
  • 855
  • 13
  • 34
0
votes
1 answer

FHIR Filter on Included Resources

Is there any way to 'filter' Resources that are included or reverse included? For instance if I wanted to get all Patient resources and the Flags that reference them: Patient?_revinclude=Flag:subject But what if I want to get all the Patient…
Halie
  • 5
  • 1
  • 3
0
votes
4 answers

Is there any way to fetch the list of resource types available for a patient id from FHIR Server?

I want the fetch the list of resource types available for a patient from the FHIR server. I tried to fetch the List of items from the Patient. But it doesn't contain all the resource types available for that particular patient.
user1700138
  • 35
  • 2
  • 7
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…
0
votes
1 answer

Exception thrown using LHC-Forms (LFORMS) when local resource is used instead of remote resource

I'm working through the example at https://jsfiddle.net/lforms/rxmdh3jq/28/. I can run the code locally as is, but if I try to download the resources and run using the local resources I get a javascript exception in…
John
  • 3,458
  • 4
  • 33
  • 54
0
votes
1 answer

Does the SmartHealthIt or Cerner SMART on FHIR sandbox support write operations?

I'm working on testing SMART on FHIR applications, specifically the asbi screening application here: https://github.com/asbi-cds-tools/asbi-screening-app . I'm able to get the app to run locally and I can test the app using the SmartHealthIt testing…
John
  • 3,458
  • 4
  • 33
  • 54
0
votes
2 answers

Central list of SMART on FHIR endpoints

I am building a SMART on FHIR app for patient mediated EHR analysis. Is there a centralized list of SMART on FHIR endpoints? For example, Epic provides this list of endpoints, and a very nice patient facing website to access Epic MyChart for a…
Dylan Klomparens
  • 2,853
  • 7
  • 35
  • 52
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…
0
votes
1 answer

Epic FHR Integrations: Moving from Sandbox to Prod

I've used SMART on FHIR to successfully pull test patient data from Epic's sandbox for a patient-facing app (it's a standalone launch). I'm trying now to pull real patient data from a health system but I keep getting the error when trying to…
mj23
  • 467
  • 3
  • 12
0
votes
1 answer

How can I fetch all CareTeam and Patient FHIR resources using the Epic on FHIR API?

FHIR, at least version 4 (R4), provides support for the following: Patient.Search Searching patients by at least one identifier, e.g. Name CareTeam.Search Searching Care Teams by either patient or subject (the patient FHIR resource ID) My…
element119
  • 7,475
  • 8
  • 51
  • 74
0
votes
1 answer

HL7 FHIR - How to modify the FHIR Schema and Run in local server

I'm trying to extend and override the FHIR schema and run it on the local server. Could you please suggest me is there any way to customize the FHIR schema and run in local
0
votes
2 answers

Setting up SMART app for FHIR and utilizing existing resources

I am learning about building a SMART app on FHIR for accessing EHR. I was going through the available documentation and reading material but there's one thing which I am not clear about. Is there a way that I can access the existing patient's data…