I am getting the below error while working with FHIR API and SNOMED CT showing error 'The latest version of the requested Code System (http://snomed.info/sct) was not found.')

{ "resource Type": "Operation Outcome", "issue": [ { "severity": "error", "code": "not-found", "diagnostics": "The requested Code System (http://snomed.info/sct/83821000000107/version/20221123) was not found." } ] }

enter image description here

1

There are 1 answers

0
Kai Kewley On

If a CodeSystem is missing from your Snowstorm FHIR Terminology Server it can be added by following the documentation: Loading & updating SNOMED CT with local Extensions or Editions.

The CodeSystems that have been loaded can be listed in the standard way using the /fhir/CodeSystem endpoint.

The SNOMED URI standard is used to refer to SNOMED CodeSystems. The latest version of a CodeSystem can be selected by omitting the /version/xxx part of the URI, for example http://snomed.info/sct/83821000000107.

Please note that each version of a SNOMED CT edition or extension are listed as separate items in the FHIR API whereas in the Snowstorm native API codesystems and versions are listed separately.