bonfhir / terminology-server

FHIR Terminology Server bootstrapping tools built on HAPI FHIR
0 stars 1 forks source link

Support Units Of Measure codes #27

Open lp opened 6 months ago

lp commented 6 months ago

add support for http://unitsofmeasure.org

biximilien commented 6 months ago

@lp UCUM codes are built into HAPI FHIR conformance resources we do not need to ingest these codes - the list is technically infinite and HAPI already knows how to lookup the UCUM codes:

GET http://localhost:8080/fhir/CodeSystem/$lookup?system=http://unitsofmeasure.org&code=ng/L

{
  "resourceType": "Parameters",
  "parameter": [ {
    "name": "display",
    "valueString": "(nanogram) / (liter)"
  }, {
    "name": "abstract",
    "valueBoolean": false
  } ]
}

I believe we can close this issue