CDCgov / phinvads-go

A complete rewrite of CDC's vocabulary management service, PHIN VADS, in Go.
https://phinvads.dev
3 stars 0 forks source link

Add endpoint to get a FHIR CodeSystem by OID #35

Open nickclyde opened 3 weeks ago

nickclyde commented 3 weeks ago

Get a specific code system by OID as FHIR, eg this endpoint on the existing FHIR API: https://phinvads.cdc.gov/baseStu3/CodeSystem/2.16.840.1.113883.12.1

To do this, import model from https://github.com/google/fhir/blob/master/go/proto/google/fhir/proto/r5/core/resources/code_system_go_proto/code_system.pb.go and serialize database model to it

nickclyde commented 3 weeks ago

In progress: #30