Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 260
Muhmmad Abubakar Ikram Avatar asked Dec 06 '16 08:12

Muhmmad Abubakar Ikram


1 Answers

The fhir-net-api is the GitHub repository for the official .NET API for FHIR. You can use this API in your .Net solution. It provides you with the FHIR model, a FhirClient with methods to do CRUD and searches, parsing/serializing methods, etc.

SMART on FHIR is a platform that provides you with FHIR profiles and a way to more easily integrate apps with clinical data, including methods to do authorization. They also provide an app gallery, where you can host your own app.

So you can develop apps/applications with both and lots of work has been done for you already, but you'll still have to do the work to create your own app logic.

like image 110
Mirjam Baltus Avatar answered Sep 27 '22 20:09

Mirjam Baltus