This wiki has undergone a migration to Confluence found Here
<meta name="googlebot" content="noindex">

Difference between revisions of "Open Source FHIR implementations"

From HL7Wiki
Jump to navigation Jump to search
Line 13: Line 13:
 
** "Tinder" code generator (Maven plugin) creates model objects and clients from Profiles and Conformance statements
 
** "Tinder" code generator (Maven plugin) creates model objects and clients from Profiles and Conformance statements
  
* '''DotNet''': https://github.com/FirelyTeam/spark
+
* '''DotNet FHIR Client''': https://github.com/ewoutkramer/fhir-net-api
** Reference server built in parallel with Grahame's to test the specification
+
** Reference client with branches supporting each version of FHIR
 
** Supports all resource types, searches, all operations, xml + json
 
** Supports all resource types, searches, all operations, xml + json
 +
** Validation, FhirPath, very basic terminology server implementation
 +
** Available via NuGet
 +
** Documentation available here http://docs.simplifier.net/fhirnetapi/index.html
 +
 +
* '''DotNet Server''': https://github.com/FirelyTeam/spark
 +
** Reference server built in parallel with Grahame's to test the specification (actively developed during DSTU2, recent updates to support STU3)
 +
** Supports all resource types, searches, many operations, xml + json
 
** Built in .NET with the .NET reference implementation, WebApi 2.0 library, Mongo DB for storage and search.
 
** Built in .NET with the .NET reference implementation, WebApi 2.0 library, Mongo DB for storage and search.
 
** Note there is also a WebApi façade that can be used to put in front of your own storage
 
** Note there is also a WebApi façade that can be used to put in front of your own storage
 
*** https://github.com/ewoutkramer/fhir-net-api/tree/develop-stu3/src/Hl7.Fhir.WebApi
 
*** https://github.com/ewoutkramer/fhir-net-api/tree/develop-stu3/src/Hl7.Fhir.WebApi
 +
*** Demo usage of the Façade https://github.com/ewoutkramer/fhir-net-api/tree/develop-stu3/src/Hl7.DemoFileSystemFhirServer
  
 
* '''Java - SMART on FHIR''': https://sandbox.smarthealthit.org
 
* '''Java - SMART on FHIR''': https://sandbox.smarthealthit.org

Revision as of 22:55, 8 November 2018

Back to FHIR Home page

Introduction

This page lists known open source implementations of the FHIR specification. For a list of running servers, see Publicly Available FHIR Servers for testing

Reference Libraries

  • JAVA: https://github.com/jamesagnew/hapi-fhir - James Agnew / University Health Network
    • Open-source Java library for quickly creating FHIR Servers and Clients
    • Geared towards adding FHIR capability to existing applications (e.g. it's not a database, it's a library for quickly bolting FHIR on to your own database, or connecting to other FHIR servers as a client)
    • Supports all resource types, most operations, and both xml and json encodings
    • "Tinder" code generator (Maven plugin) creates model objects and clients from Profiles and Conformance statements

Other Open source Implementations


  • FHIRBase - open source relational storage for FHIR with document API based on PostgreSQL. FHIRBase is an attempt to take the best parts of Relational & Document Databases for persistence of FHIR resources. FHIRBase stores resources relationally and gives you the power of SQL for querying & aggregating. At the same time FHIRBase provides a set of SQL procedures & views to persist and retrieve resources as a json documents in one hop.
  • the FHIR build tool itself is open source and includes various definitional and reasoning tools. See [2]. If you aren't signed up to the HL7 GForge, you can access the FHIR repository at [3] anonymously.
  • JSON-to-XML-Converter - JavaScript based open source library to convert FHIR between JSON and XML. It is built from the FHIR XML Schema.
  • [4] - DSTU-2 FHIR entities compatible with .Net Core
   * Value Sets
        * $expand
        * $validate-code
   * Code Systems (SNOMED CT, LOINC)
        * $lookup
        * $subsumes
   * Concept Map
        * $translate
        * $closure
   * Capability Statement ( format can in xml or in json )
        * https://valentiatech.snochillies.com/fhir/metadata (as in XML default)
        * https://valentiatech.snochillies.com ( GUI )
* SNOMED browser: https://snochillies.com/ 
        
  • Synthea - Synthetic patient simulation that generates longitudinal FHIR (STU3 and DSTU2) records suitable for software development, integration, testing, demoing. Over 35 diseases with reasonable comorbidities and treatments. Supports Patient, Condition, Encounter, Observation, DiagnosticReport, Immunization, AllergyIntolerance, MedicationRequest, Procedure, Organization.