Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 1.53 KB

README.md

File metadata and controls

64 lines (40 loc) · 1.53 KB

fhirlib

A FHIR serialization library.

Getting Started

import com.lifeomic.fhirlib.v3.Deserializer
import com.lifeomic.fhirlib.v3.resources.Patient

val json = ...
val patient: Patient = Deserializer.loadFhirResource(json).asInstanceOf[Patient]

The ScalaDoc is available on here

Installing

<dependency>
    <groupId>com.lifeomic</groupId>
    <artifactId>fhirlib</artifactId>
    <version>${LATEST}</version>
</dependency>

Find the latest version here.

Running the tests

mvn test

Deployment

mvn deploy

Built With

  • Scala - The Scala Programming Language
  • Json4s - One AST to rule them all

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Thank you to the HL7 community for working to improve health care data interoperability.