Merge pull request #783 from gabriel0316/allowOtherDesignations

Allow other designations
This commit is contained in:
Grahame Grieve 2022-04-12 09:08:52 +10:00 committed by GitHub
commit 9385557e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1022,7 +1022,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;
}
}