Allow other designations

With returning the url it is possible to allow other
designation.use than only the two specified
SNOMED codes.
This commit is contained in:
Gabriel 2022-04-06 16:09:09 +02:00
parent 76411218ac
commit 51cd908f20
1 changed files with 2 additions and 1 deletions

View File

@ -960,7 +960,8 @@ public class ValueSetRenderer extends TerminologyRenderer {
case "http://snomed.info/sct#900000000000013009":
return "Synonym";
default:
return null;
// As specified in http://www.hl7.org/fhir/valueset-definitions.html#ValueSet.compose.include.concept.designation.use and in http://www.hl7.org/fhir/codesystem-definitions.html#CodeSystem.concept.designation.use the terminology binding is extensible.
return url;
}
}