0

I need to get the example diagnosis codes for a Condition Resource:

http://hl7.org/fhir/ValueSet/condition-code

I have hit the following with Postman:

http://hl7.org/fhir/ValueSet/condition-code/$expand

and this returns a ValueSet but the ValueSet does not include 'expansion' (where the codes would be listed).

How to I retrieve the actual codes for condition-code from hl7?

Halie
  • 5
  • 1
  • 3
  • I have been able to successfully get the codes using: https://clinicaltables.nlm.nih.gov/valueSetExpand.html but my question still remains because I would like to be able to get other ValueSets (such as body-site for Condition resource without using this api) – Halie Jul 26 '22 at 15:08

1 Answers1

0

You need an actual terminology server for $expand. hl7.org is just a web site, not a terminology server. use tx.fhir.org or run your own terminology server

Grahame Grieve
  • 3,538
  • 3
  • 15
  • 17
  • 1
    thank you! Yes, I can hit https://tx.fhir.org/r4/ValueSet/body-site/$expand?_format=json and receive the codes – Halie Jul 26 '22 at 22:55