Skip to content

fhirbase/fhir.clj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fhir.clj

Build Status Dependency Status

Clojars Project

FHIR client implementation in clojure.

Roadmap

  • not hardcoded profiles, could be added dynamicly
  • parse & serialize FHIR formats
  • validate resources against profiles
  • datatypes coersing (clj-time, ooid)
  • rest client api
  • support oauth

Usage

(require '[fhir.core :as fhir])

;; create profile index
(def idx
  (fc/index
     "profiles/profiles-resources.json"
     "profiles/profiles-types.json"))

(def pt
  (fhir/parse idx "
   {\"resourceType\": \"Patient\",
    \"name\": [{\"text\":\"Smith\"}],
    \"active\": true}
  "))

(fhir/validate idx pt)
;;=> collection of OperationOutcome.issue

(fhir/generate idx pt :xml)
;;=> <Patient> <name><text value="Smith"/></name><active value="true"></Patient>

(fhir/resource idx {:resourceType "Patient" :name {:text "Smith" :family "Eric"}})
;;=> {:resourceType "Patient" :name [{:text "Smith" :family ["Eric"]}]}

Notes

fhir.clj is not very strict about arity of attributes, so you can assign single value where collection is expected and this will be fixed using metadata from profile.

License

Copyright © 2014 HealthSamurai

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published