You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to retrieve all descendants of a concept using its ID as follows: 'baseUrl/edition/version/concepts/id_of_parent_concept/descendants.
However, the result does not include the synonyms of descendants.
Therefore, looping for each descendant, I will find the descriptions (including its synonyms) using: baseUrl/browser/edition/version/concepts/id_of_descendant.
However, this implementation is slow and leads to time-out blocking (maybe because I retrieved a lot descendants).
Please suggest me the better way to do this.
Thank you.
The text was updated successfully, but these errors were encountered:
The FHIR API allows listing descendants with descriptions in one request: /fhir/ValueSet/$expand?includeDesignations=true&url=http://snomed.info/sct?fhir_vs=isa/195967001&_format=json
That url http://snomed.info/sct uses the latest loaded release of the default SNOMED CT edition on the server. On the International demo server that is the International Edition.
This works with Snowstorm and Snowstorm Lite.
If your IP address has been blocked from the demo Snowstorm server it should be lifted automatically after 24 hours.
It's quick to get a local Snowstorm Lite server running in docker; if you have a login to the MLDS service then the syndication option can be used, otherwise a SNOMED CT release package can be loaded from disk. Republic of Korea is a member country so you should be able to get access.
Hi,
I am trying to retrieve all descendants of a concept using its ID as follows:
'baseUrl/edition/version/concepts/id_of_parent_concept/descendants
.However, the result does not include the synonyms of descendants.
Therefore, looping for each descendant, I will find the descriptions (including its synonyms) using:
baseUrl/browser/edition/version/concepts/id_of_descendant
.However, this implementation is slow and leads to
time-out
blocking (maybe because I retrieved a lot descendants).Please suggest me the better way to do this.
Thank you.
The text was updated successfully, but these errors were encountered: