Home > Enterprise >  FHIR Value Set Expansion
FHIR Value Set Expansion

Time:07-27

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?

CodePudding user response:

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

  • Related