diff --git a/i18n-coverage-table.png b/i18n-coverage-table.png index e3f25dc2d..7bfd3230c 100644 Binary files a/i18n-coverage-table.png and b/i18n-coverage-table.png differ diff --git a/i18n-coverage.csv b/i18n-coverage.csv index bf44bb436..c6da69090 100644 --- a/i18n-coverage.csv +++ b/i18n-coverage.csv @@ -2,4 +2,4 @@ Locale,Coverage #,Coverage % de,831,40% es,714,35% ja,902,44% -nl,1989,98% +nl,1988,97% diff --git a/org.hl7.fhir.convertors/pom.xml b/org.hl7.fhir.convertors/pom.xml index 954879875..1c359937b 100644 --- a/org.hl7.fhir.convertors/pom.xml +++ b/org.hl7.fhir.convertors/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/datatypes40_50/special40_50/ElementDefinition40_50.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/datatypes40_50/special40_50/ElementDefinition40_50.java index f51e9f55f..8eb57d554 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/datatypes40_50/special40_50/ElementDefinition40_50.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/datatypes40_50/special40_50/ElementDefinition40_50.java @@ -25,8 +25,10 @@ import org.hl7.fhir.r4.model.StringType; import org.hl7.fhir.r5.model.CodeType; import org.hl7.fhir.r5.model.ElementDefinition.ElementDefinitionBindingAdditionalComponent; import org.hl7.fhir.r5.model.UsageContext; +import org.hl7.fhir.r5.utils.ToolingExtensions; public class ElementDefinition40_50 { + public static org.hl7.fhir.r5.model.ElementDefinition convertElementDefinition(org.hl7.fhir.r4.model.ElementDefinition src) throws FHIRException { if (src == null) return null; org.hl7.fhir.r5.model.ElementDefinition tgt = new org.hl7.fhir.r5.model.ElementDefinition(); @@ -616,7 +618,7 @@ public class ElementDefinition40_50 { if (src == null) return null; org.hl7.fhir.r5.model.ElementDefinition.ElementDefinitionBindingComponent tgt = new org.hl7.fhir.r5.model.ElementDefinition.ElementDefinitionBindingComponent(); ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt, - "http://hl7.org/fhir/5.0/StructureDefinition/extension-ElementDefinition.binding.additional"); + "http://hl7.org/fhir/5.0/StructureDefinition/extension-ElementDefinition.binding.additional", ToolingExtensions.EXT_BINDING_ADDITIONAL); if (src.hasStrength()) tgt.setStrengthElement(Enumerations40_50.convertBindingStrength(src.getStrengthElement())); if (src.hasDescription()) tgt.setDescriptionElement(String40_50.convertStringToMarkdown(src.getDescriptionElement())); if (src.hasValueSet()) tgt.setValueSetElement(Canonical40_50.convertCanonical(src.getValueSetElement())); @@ -624,6 +626,9 @@ public class ElementDefinition40_50 { for (org.hl7.fhir.r4.model.Extension ext : src.getExtensionsByUrl("http://hl7.org/fhir/5.0/StructureDefinition/extension-ElementDefinition.binding.additional")) { tgt.addAdditional(convertAdditional(ext)); } + for (org.hl7.fhir.r4.model.Extension ext : src.getExtensionsByUrl(ToolingExtensions.EXT_BINDING_ADDITIONAL)) { + tgt.addAdditional(convertAdditional(ext)); + } return tgt; } @@ -652,12 +657,12 @@ public class ElementDefinition40_50 { return tgt; } - private static Extension convertAdditional(ElementDefinitionBindingAdditionalComponent src) { + private static org.hl7.fhir.r4.model.Extension convertAdditional(ElementDefinitionBindingAdditionalComponent src) { if (src == null) return null; - Extension tgt = new Extension(); + org.hl7.fhir.r4.model.Extension tgt = new Extension(ToolingExtensions.EXT_BINDING_ADDITIONAL); ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt); if (src.hasPurpose()) { - tgt.addExtension(new Extension("purpose", new CodeType(src.getPurposeElement().primitiveValue()))); + tgt.addExtension(new Extension("purpose", new org.hl7.fhir.r4.model.CodeType(src.getPurposeElement().primitiveValue()))); } if (src.hasValueSet()) { tgt.addExtension(new Extension("valueSet", Canonical40_50.convertCanonical(src.getValueSetElement()))); diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/Enumerations40_50.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/Enumerations40_50.java index af0a66a27..84a211e98 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/Enumerations40_50.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/Enumerations40_50.java @@ -230,12 +230,6 @@ public class Enumerations40_50 { case _4_3_0: tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._4_3_0); break; - case _4_3_0_CIBUILD: - tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._4_3_0CIBUILD); - break; - case _4_3_0_SNAPSHOT1: - tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._4_3_0SNAPSHOT1); - break; case _5_0_0: tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._5_0_0); break; @@ -254,6 +248,15 @@ public class Enumerations40_50 { case _5_0_0DRAFTFINAL: tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._5_0_0DRAFTFINAL); break; + case _6_0_0: + tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._6_0_0); + break; + case _6_0_0_BALLOT1: + tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._6_0_0_BALLOT1); + break; + case _6_0_0_BALLOT2: + tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion._6_0_0_BALLOT2); + break; default: tgt.setValue(org.hl7.fhir.r5.model.Enumerations.FHIRVersion.NULL); break; @@ -342,12 +345,6 @@ public class Enumerations40_50 { case _4_3_0: tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._4_3_0); break; - case _4_3_0CIBUILD: - tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._4_3_0_CIBUILD); - break; - case _4_3_0SNAPSHOT1: - tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._4_3_0_SNAPSHOT1); - break; case _5_0_0: tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._5_0_0); break; @@ -366,6 +363,15 @@ public class Enumerations40_50 { case _5_0_0DRAFTFINAL: tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._5_0_0DRAFTFINAL); break; + case _6_0_0: + tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._6_0_0); + break; + case _6_0_0_BALLOT1: + tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._6_0_0_BALLOT1); + break; + case _6_0_0_BALLOT2: + tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion._6_0_0_BALLOT2); + break; default: tgt.setValue(org.hl7.fhir.r4.model.Enumerations.FHIRVersion.NULL); diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/NpmPackageVersionConverter.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/NpmPackageVersionConverter.java index 99b84dea0..3a1c3db25 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/NpmPackageVersionConverter.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/NpmPackageVersionConverter.java @@ -33,9 +33,11 @@ import org.hl7.fhir.convertors.factory.VersionConvertorFactory_30_40; import org.hl7.fhir.convertors.factory.VersionConvertorFactory_30_50; import org.hl7.fhir.convertors.factory.VersionConvertorFactory_40_50; import org.hl7.fhir.r5.model.Enumeration; +import org.hl7.fhir.r5.model.Enumerations.FHIRVersion; import org.hl7.fhir.r5.model.Enumerations.FHIRVersionEnumFactory; import org.hl7.fhir.r5.model.ImplementationGuide; import org.hl7.fhir.r5.model.Resource; +import org.hl7.fhir.r5.model.StructureDefinition; import org.hl7.fhir.utilities.TextFile; import org.hl7.fhir.utilities.Utilities; import org.hl7.fhir.utilities.VersionUtilities; @@ -237,7 +239,7 @@ public class NpmPackageVersionConverter { return new org.hl7.fhir.dstu2016may.formats.JsonParser().composeBytes(VersionConvertorFactory_14_30.convertResource(VersionConvertorFactory_10_30.convertResource(res))); } else if (VersionUtilities.isR3Ver(version)) { return new org.hl7.fhir.dstu3.formats.JsonParser().composeBytes(VersionConvertorFactory_10_30.convertResource(res)); - } else if (VersionUtilities.isR4Ver(version)) { + } else if (VersionUtilities.isR4Ver(version) || VersionUtilities.isR4BVer(version)) { return new org.hl7.fhir.r4.formats.JsonParser().composeBytes(VersionConvertorFactory_10_40.convertResource(res)); } else if (VersionUtilities.isR5Plus(version)) { return new org.hl7.fhir.r5.formats.JsonParser().composeBytes(VersionConvertorFactory_10_50.convertResource(res)); @@ -251,7 +253,7 @@ public class NpmPackageVersionConverter { return new org.hl7.fhir.dstu2016may.formats.JsonParser().composeBytes(res); } else if (VersionUtilities.isR3Ver(version)) { return new org.hl7.fhir.dstu3.formats.JsonParser().composeBytes(VersionConvertorFactory_14_30.convertResource(res)); - } else if (VersionUtilities.isR4Ver(version)) { + } else if (VersionUtilities.isR4Ver(version) || VersionUtilities.isR4BVer(version)) { return new org.hl7.fhir.r4.formats.JsonParser().composeBytes(VersionConvertorFactory_14_40.convertResource(res)); } else if (VersionUtilities.isR5Plus(version)) { return new org.hl7.fhir.r5.formats.JsonParser().composeBytes(VersionConvertorFactory_14_50.convertResource(res)); @@ -265,7 +267,7 @@ public class NpmPackageVersionConverter { return new org.hl7.fhir.dstu2016may.formats.JsonParser().composeBytes(VersionConvertorFactory_14_30.convertResource(res)); } else if (VersionUtilities.isR3Ver(version)) { return new org.hl7.fhir.dstu3.formats.JsonParser().composeBytes(res); - } else if (VersionUtilities.isR4Ver(version)) { + } else if (VersionUtilities.isR4Ver(version) || VersionUtilities.isR4BVer(version)) { return new org.hl7.fhir.r4.formats.JsonParser().composeBytes(VersionConvertorFactory_30_40.convertResource(res)); } else if (VersionUtilities.isR5Plus(version)) { return new org.hl7.fhir.r5.formats.JsonParser().composeBytes(VersionConvertorFactory_30_50.convertResource(res)); @@ -279,7 +281,21 @@ public class NpmPackageVersionConverter { return new org.hl7.fhir.dstu2016may.formats.JsonParser().composeBytes(VersionConvertorFactory_14_40.convertResource(res)); } else if (VersionUtilities.isR3Ver(version)) { return new org.hl7.fhir.dstu3.formats.JsonParser().composeBytes(VersionConvertorFactory_30_40.convertResource(res, new BaseAdvisor_30_40(false))); - } else if (VersionUtilities.isR4Ver(version)) { + } else if (VersionUtilities.isR4Ver(version) || VersionUtilities.isR4BVer(version)) { + return new org.hl7.fhir.r4.formats.JsonParser().composeBytes(res); + } else if (VersionUtilities.isR5Plus(version)) { + return new org.hl7.fhir.r5.formats.JsonParser().composeBytes(VersionConvertorFactory_40_50.convertResource(res)); + } + } else if (VersionUtilities.isR4BVer(currentVersion)) { + org.hl7.fhir.r4.model.Resource res = new org.hl7.fhir.r4.formats.JsonParser().parse(cnt); + convertResourceR4B(res); + if (VersionUtilities.isR2Ver(version)) { + return new org.hl7.fhir.dstu2.formats.JsonParser().composeBytes(VersionConvertorFactory_10_40.convertResource(res, new PR2Handler())); + } else if (VersionUtilities.isR2BVer(version)) { + return new org.hl7.fhir.dstu2016may.formats.JsonParser().composeBytes(VersionConvertorFactory_14_40.convertResource(res)); + } else if (VersionUtilities.isR3Ver(version)) { + return new org.hl7.fhir.dstu3.formats.JsonParser().composeBytes(VersionConvertorFactory_30_40.convertResource(res, new BaseAdvisor_30_40(false))); + } else if (VersionUtilities.isR4Ver(version) || VersionUtilities.isR4BVer(version)) { return new org.hl7.fhir.r4.formats.JsonParser().composeBytes(res); } else if (VersionUtilities.isR5Plus(version)) { return new org.hl7.fhir.r5.formats.JsonParser().composeBytes(VersionConvertorFactory_40_50.convertResource(res)); @@ -293,7 +309,7 @@ public class NpmPackageVersionConverter { return new org.hl7.fhir.dstu2016may.formats.JsonParser().composeBytes(VersionConvertorFactory_14_50.convertResource(res)); } else if (VersionUtilities.isR3Ver(version)) { return new org.hl7.fhir.dstu3.formats.JsonParser().composeBytes(VersionConvertorFactory_30_50.convertResource(res, new BaseAdvisor_30_50(false))); - } else if (VersionUtilities.isR4Ver(version)) { + } else if (VersionUtilities.isR4Ver(version) || VersionUtilities.isR4BVer(version)) { return new org.hl7.fhir.r4.formats.JsonParser().composeBytes(VersionConvertorFactory_40_50.convertResource(res)); } else if (VersionUtilities.isR5Plus(version)) { return new org.hl7.fhir.r5.formats.JsonParser().composeBytes(res); @@ -311,6 +327,10 @@ public class NpmPackageVersionConverter { org.hl7.fhir.dstu2.model.ImplementationGuide ig = (org.hl7.fhir.dstu2.model.ImplementationGuide) res; ig.setFhirVersion(version); } + if (res instanceof org.hl7.fhir.dstu2.model.StructureDefinition) { + org.hl7.fhir.dstu2.model.StructureDefinition sd = (org.hl7.fhir.dstu2.model.StructureDefinition) res; + sd.setFhirVersion(version); + } } private void convertResourceR2B(org.hl7.fhir.dstu2016may.model.Resource res) { @@ -318,6 +338,10 @@ public class NpmPackageVersionConverter { org.hl7.fhir.dstu2016may.model.ImplementationGuide ig = (org.hl7.fhir.dstu2016may.model.ImplementationGuide) res; ig.setFhirVersion(version); } + if (res instanceof org.hl7.fhir.dstu2016may.model.StructureDefinition) { + org.hl7.fhir.dstu2016may.model.StructureDefinition sd = (org.hl7.fhir.dstu2016may.model.StructureDefinition) res; + sd.setFhirVersion(version); + } } private void convertResourceR3(org.hl7.fhir.dstu3.model.Resource res) { @@ -325,6 +349,10 @@ public class NpmPackageVersionConverter { org.hl7.fhir.dstu3.model.ImplementationGuide ig = (org.hl7.fhir.dstu3.model.ImplementationGuide) res; ig.setFhirVersion(version); } + if (res instanceof org.hl7.fhir.dstu3.model.StructureDefinition) { + org.hl7.fhir.dstu3.model.StructureDefinition sd = (org.hl7.fhir.dstu3.model.StructureDefinition) res; + sd.setFhirVersion(version); + } } private void convertResourceR4(org.hl7.fhir.r4.model.Resource res) { @@ -334,6 +362,23 @@ public class NpmPackageVersionConverter { ig.getFhirVersion().add(new org.hl7.fhir.r4.model.Enumeration<>(new org.hl7.fhir.r4.model.Enumerations.FHIRVersionEnumFactory(), version)); ig.setPackageId(packageId); } + if (res instanceof org.hl7.fhir.r4.model.StructureDefinition) { + org.hl7.fhir.r4.model.StructureDefinition sd = (org.hl7.fhir.r4.model.StructureDefinition) res; + sd.setFhirVersion(org.hl7.fhir.r4.model.Enumerations.FHIRVersion.fromCode(version)); + } + } + + private void convertResourceR4B(org.hl7.fhir.r4.model.Resource res) { + if (res instanceof org.hl7.fhir.r4.model.ImplementationGuide) { + org.hl7.fhir.r4.model.ImplementationGuide ig = (org.hl7.fhir.r4.model.ImplementationGuide) res; + ig.getFhirVersion().clear(); + ig.getFhirVersion().add(new org.hl7.fhir.r4.model.Enumeration<>(new org.hl7.fhir.r4.model.Enumerations.FHIRVersionEnumFactory(), version)); + ig.setPackageId(packageId); + } + if (res instanceof org.hl7.fhir.r4.model.StructureDefinition) { + org.hl7.fhir.r4.model.StructureDefinition sd = (org.hl7.fhir.r4.model.StructureDefinition) res; + sd.setFhirVersion(org.hl7.fhir.r4.model.Enumerations.FHIRVersion.fromCode(version)); + } } @@ -344,6 +389,10 @@ public class NpmPackageVersionConverter { ig.getFhirVersion().add(new Enumeration<>(new FHIRVersionEnumFactory(), version)); ig.setPackageId(packageId); } + if (res instanceof StructureDefinition) { + StructureDefinition sd = (StructureDefinition) res; + sd.setFhirVersion(FHIRVersion.fromCode(version)); + } } } \ No newline at end of file diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/VSACImporter.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/VSACImporter.java index 61e4fb04c..cfe79e773 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/VSACImporter.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/misc/VSACImporter.java @@ -45,10 +45,10 @@ public class VSACImporter extends OIDBasedValueSetImporter { public static void main(String[] args) throws FHIRException, IOException, ParseException, URISyntaxException { VSACImporter self = new VSACImporter(); - self.process(args[0], args[1], args[2], "true".equals(args[3])); + self.process(args[0], args[1], args[2], "true".equals(args[3]), "true".equals(args[4])); } - private void process(String source, String dest, String apiKey, boolean onlyNew) throws FHIRException, IOException, URISyntaxException { + private void process(String source, String dest, String apiKey, boolean onlyNew, boolean onlyActive) throws FHIRException, IOException, URISyntaxException { CSVReader csv = new CSVReader(ManagedFileAccess.inStream(source)); csv.readHeaders(); Map errs = new HashMap<>(); @@ -75,13 +75,20 @@ public class VSACImporter extends OIDBasedValueSetImporter { System.out.println("Loading"); List oids = new ArrayList<>(); + List allOids = new ArrayList<>(); while (csv.line()) { - String oid = csv.cell("OID"); - if (!onlyNew || !(ManagedFileAccess.file(Utilities.path(dest, "ValueSet-" + oid + ".json")).exists())) { - oids.add(oid); + String status = csv.cell("Expansion Status"); + if (!onlyActive || "Active".equals(status)) { + String oid = csv.cell("OID"); + allOids.add(oid); + if (!onlyNew || !(ManagedFileAccess.file(Utilities.path(dest, "ValueSet-" + oid + ".json")).exists())) { + oids.add(oid); + } } } Collections.sort(oids); + System.out.println("Cleaning"); + cleanValueSets(allOids, dest); System.out.println("Go: "+oids.size()+" oids"); int i = 0; int j = 0; @@ -108,6 +115,7 @@ public class VSACImporter extends OIDBasedValueSetImporter { errs.put(oid, e.getMessage()); } } + OperationOutcome oo = new OperationOutcome(); for (String oid : errs.keySet()) { oo.addIssue().setSeverity(IssueSeverity.ERROR).setCode(IssueType.EXCEPTION).setDiagnostics(errs.get(oid)).addLocation(oid); @@ -116,6 +124,22 @@ public class VSACImporter extends OIDBasedValueSetImporter { System.out.println("Done. " + i + " ValueSets in "+Utilities.describeDuration(System.currentTimeMillis() - tt)); } + private void cleanValueSets(List allOids, String dest) throws IOException { + cleanValueSets(allOids, new File(Utilities.path(dest))); + } + + private void cleanValueSets(List allOids, File file) { + for (File f : file.listFiles()) { + if (f.getName().startsWith("ValueSet-")) { + String oid = f.getName().substring(9).replace(".json", ""); + if (!allOids.contains(oid)) { + f.delete(); + } + } + } + + } + private long estimate(int i, int size, long tt) { long elapsed = System.currentTimeMillis() - tt; long average = elapsed / i; @@ -201,7 +225,7 @@ public class VSACImporter extends OIDBasedValueSetImporter { } vs.setName(makeValidName(vs.getName())); JurisdictionUtilities.setJurisdictionCountry(vs.getJurisdiction(), "US"); - new JsonParser().setOutputStyle(OutputStyle.PRETTY).compose(ManagedFileAccess.outStream(Utilities.path(dest, "ValueSet-" + oid + ".json")), vs); + new JsonParser().setOutputStyle(OutputStyle.NORMAL).compose(ManagedFileAccess.outStream(Utilities.path(dest, "ValueSet-" + oid + ".json")), vs); return true; } } diff --git a/org.hl7.fhir.dstu2/pom.xml b/org.hl7.fhir.dstu2/pom.xml index 0f35fa8bd..577ce48a6 100644 --- a/org.hl7.fhir.dstu2/pom.xml +++ b/org.hl7.fhir.dstu2/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java b/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java index c5cc2ba3c..e4261fd9c 100644 --- a/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java +++ b/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java @@ -683,7 +683,7 @@ public class ClientUtils { for (Header h : response.getAllHeaders()) { headers.add(h.toString()); } - logger.logResponse(response.getStatusLine().toString(), headers, cnt); + logger.logResponse(response.getStatusLine().toString(), headers, cnt, 0); } return cnt; } diff --git a/org.hl7.fhir.dstu2016may/pom.xml b/org.hl7.fhir.dstu2016may/pom.xml index 73f375a3b..1e7c95128 100644 --- a/org.hl7.fhir.dstu2016may/pom.xml +++ b/org.hl7.fhir.dstu2016may/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.dstu2016may/src/main/java/org/hl7/fhir/dstu2016may/utils/client/ClientUtils.java b/org.hl7.fhir.dstu2016may/src/main/java/org/hl7/fhir/dstu2016may/utils/client/ClientUtils.java index 8ad3be73b..441f96db5 100644 --- a/org.hl7.fhir.dstu2016may/src/main/java/org/hl7/fhir/dstu2016may/utils/client/ClientUtils.java +++ b/org.hl7.fhir.dstu2016may/src/main/java/org/hl7/fhir/dstu2016may/utils/client/ClientUtils.java @@ -625,7 +625,7 @@ public class ClientUtils { for (Header h : response.getAllHeaders()) { headers.add(h.toString()); } - logger.logResponse(response.getStatusLine().toString(), headers, cnt); + logger.logResponse(response.getStatusLine().toString(), headers, cnt, 0); } return cnt; } diff --git a/org.hl7.fhir.dstu3/pom.xml b/org.hl7.fhir.dstu3/pom.xml index cf607fb20..d89f9ce2d 100644 --- a/org.hl7.fhir.dstu3/pom.xml +++ b/org.hl7.fhir.dstu3/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java b/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java index 006cf6bd8..ad15ae999 100644 --- a/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java +++ b/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java @@ -371,7 +371,7 @@ public class FhirRequestBuilder { try { if (logger != null) { - logger.logResponse(Integer.toString(responseCode), headerList, responseBody); + logger.logResponse(Integer.toString(responseCode), headerList, responseBody, 0); } } catch (Exception e) { System.out.println("Error parsing response body passed in to logger ->\n" + e.getLocalizedMessage()); diff --git a/org.hl7.fhir.dstu3/src/test/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilderTests.java b/org.hl7.fhir.dstu3/src/test/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilderTests.java index 13a901ce7..7cd2b5edd 100644 --- a/org.hl7.fhir.dstu3/src/test/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilderTests.java +++ b/org.hl7.fhir.dstu3/src/test/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilderTests.java @@ -95,13 +95,13 @@ public class FhirRequestBuilderTests { Mockito.doReturn(parser).when(fhirRequestBuilder).getParser(ArgumentMatchers.eq("json")); fhirRequestBuilder.unmarshalReference(response, "json"); - Mockito.verify(logger).logResponse(ArgumentMatchers.eq("200"), ArgumentMatchers.anyList(), AdditionalMatchers.aryEq(RESPONSE_BODY_STRING.getBytes())); + Mockito.verify(logger).logResponse(ArgumentMatchers.eq("200"), ArgumentMatchers.anyList(), AdditionalMatchers.aryEq(RESPONSE_BODY_STRING.getBytes()), ArgumentMatchers.anyLong()); } @Test public void testUnmarshallFeedLogging() { fhirRequestBuilder.unmarshalFeed(response, "application/json"); - Mockito.verify(logger).logResponse(ArgumentMatchers.eq("200"), ArgumentMatchers.anyList(), AdditionalMatchers.aryEq(RESPONSE_BODY_STRING.getBytes())); + Mockito.verify(logger).logResponse(ArgumentMatchers.eq("200"), ArgumentMatchers.anyList(), AdditionalMatchers.aryEq(RESPONSE_BODY_STRING.getBytes()), ArgumentMatchers.anyLong()); } } diff --git a/org.hl7.fhir.r4/pom.xml b/org.hl7.fhir.r4/pom.xml index 5dcc8666b..13ed8ea66 100644 --- a/org.hl7.fhir.r4/pom.xml +++ b/org.hl7.fhir.r4/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/HTMLClientLogger.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/HTMLClientLogger.java index 23c2e93eb..80d24f319 100644 --- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/HTMLClientLogger.java +++ b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/HTMLClientLogger.java @@ -77,7 +77,7 @@ public class HTMLClientLogger implements ToolingClientLogger { } @Override - public void logResponse(String outcome, List headers, byte[] body) { + public void logResponse(String outcome, List headers, byte[] body, long start) { if (file == null) return; file.println("
");
diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/model/Enumerations.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/model/Enumerations.java
index d2ce3d418..8da4196d8 100644
--- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/model/Enumerations.java
+++ b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/model/Enumerations.java
@@ -1,6 +1,7 @@
 package org.hl7.fhir.r4.model;
 
 import org.hl7.fhir.exceptions.FHIRException;
+import org.hl7.fhir.utilities.Utilities;
 
 public class Enumerations {
 
@@ -13173,1196 +13174,928 @@ public class Enumerations {
     }
   }
 
-  public enum FHIRVersion {
-    /**
-     * Oldest archived version of FHIR.
-     */
-    _0_01,
-    /**
-     * 1st Draft for Comment (Sept 2012 Ballot).
-     */
-    _0_05,
-    /**
-     * 2nd Draft for Comment (January 2013 Ballot).
-     */
-    _0_06,
-    /**
-     * DSTU 1 Ballot version.
-     */
-    _0_11,
-    /**
-     * DSTU 1 version.
-     */
-    _0_0,
-    /**
-     * DSTU 1 Official version.
-     */
-    _0_0_80,
-    /**
-     * DSTU 1 Official version Technical Errata #1.
-     */
-    _0_0_81,
-    /**
-     * DSTU 1 Official version Technical Errata #2.
-     */
-    _0_0_82,
-    /**
-     * January 2015 Ballot.
-     */
-    _0_4,
-    /**
-     * Draft For Comment (January 2015 Ballot).
-     */
-    _0_4_0,
-    /**
-     * May 2015 Ballot.
-     */
-    _0_5,
-    /**
-     * DSTU 2 Ballot version (May 2015 Ballot).
-     */
-    _0_5_0,
-    /**
-     * DSTU 2 version.
-     */
-    _1_0,
-    /**
-     * DSTU 2 QA Preview + CQIF Ballot (Sep 2015).
-     */
-    _1_0_0,
-    /**
-     * DSTU 2 (Official version).
-     */
-    _1_0_1,
-    /**
-     * DSTU 2 (Official version) with 1 technical errata.
-     */
-    _1_0_2,
-    /**
-     * GAO Ballot version.
-     */
-    _1_1,
-    /**
-     * GAO Ballot + draft changes to main FHIR standard.
-     */
-    _1_1_0,
-    /**
-     * Connectathon 12 (Montreal) version.
-     */
-    _1_4,
-    /**
-     * CQF on FHIR Ballot + Connectathon 12 (Montreal).
-     */
-    _1_4_0,
-    /**
-     * Connectathon 13 (Baltimore) version.
-     */
-    _1_6,
-    /**
-     * FHIR STU3 Ballot + Connectathon 13 (Baltimore).
-     */
-    _1_6_0,
-    /**
-     * Connectathon 14 (San Antonio) version.
-     */
-    _1_8,
-    /**
-     * FHIR STU3 Candidate + Connectathon 14 (San Antonio).
-     */
-    _1_8_0,
-    /**
-     * STU3 version.
-     */
-    _3_0,
-    /**
-     * FHIR Release 3 (STU).
-     */
-    _3_0_0,
-    /**
-     * FHIR Release 3 (STU) with 1 technical errata.
-     */
-    _3_0_1,
-    /**
-     * FHIR Release 3 (STU) with 2 technical errata.
-     */
-    _3_0_2,
-    /**
-     * R4 Ballot #1 version.
-     */
-    _3_3,
-    /**
-     * R4 Ballot #1 + Connectaton 18 (Cologne).
-     */
-    _3_3_0,
-    /**
-     * R4 Ballot #2 version.
-     */
-    _3_5,
-    /**
-     * R4 Ballot #2 + Connectathon 19 (Baltimore).
-     */
-    _3_5_0,
-    /**
-     * R4 version.
-     */
-    _4_0,
-    /**
-     * FHIR Release 4 (Normative + STU).
-     */
-    _4_0_0,
-    /**
-     * FHIR Release 4 (Normative + STU) with 1 technical errata.
-     */
-    _4_0_1,
-    /**
-     * R4B Ballot #1 version.
-     */
-    _4_1,
-    /**
-     * R4B Ballot #1 + Connectathon 27 (Virtual).
-     */
-    _4_1_0, _4_3_0_SNAPSHOT1, _4_3_0_CIBUILD,
-    /**
-     * R5 Preview #1 version.
-     */
-    _4_2,
-    /**
-     * R5 Preview #1 + Connectathon 23 (Sydney).
-     */
-    _4_2_0,
-    /**
-     * R4B version.
-     */
-    _4_3,
-    /**
-     * FHIR Release 4B (Normative + STU).
-     */
-    _4_3_0,
-    /**
-     * R5 Preview #2 version.
-     */
-    _4_4,
-    /**
-     * R5 Preview #2 + Connectathon 24 (Virtual).
-     */
-    _4_4_0,
-    /**
-     * R5 Preview #3 version.
-     */
-    _4_5,
-    /**
-     * R5 Preview #3 + Connectathon 25 (Virtual).
-     */
-    _4_5_0,
-    /**
-     * R5 Draft Ballot version.
-     */
-    _4_6,
-    /**
-     * R5 Draft Ballot + Connectathon 27 (Virtual).
-     */
-    _4_6_0,
-    /**
-     * R5 Versions.
-     */
-    _5_0,
-    /**
-     * R5 Final Version.
-     */
-    _5_0_0,
-    /**
-     * R5 Rolling ci-build.
-     */
-    _5_0_0CIBUILD,
-    /**
-     * R5 Preview #2.
-     */
-    _5_0_0SNAPSHOT1,
-    /**
-     * R5 Interim tooling stage.
-     */
-    _5_0_0SNAPSHOT2,
-    /**
-     * R5 Ballot.
-     */
-    _5_0_0BALLOT,
-    /**
-     * R5Connectathon 32 release.
-     */
-    _5_0_0SNAPSHOT3, _5_0_0DRAFTFINAL,
-    /**
-     * added to help the parsers
-     */
-    NULL;
-
-    public static FHIRVersion fromCode(String codeString) throws FHIRException {
-      if (codeString == null || "".equals(codeString))
-        return null;
-      if ("0.01".equals(codeString))
-        return _0_01;
-      if ("0.05".equals(codeString))
-        return _0_05;
-      if ("0.06".equals(codeString))
-        return _0_06;
-      if ("0.11".equals(codeString))
-        return _0_11;
-      if ("0.0".equals(codeString))
-        return _0_0;
-      if ("0.0.80".equals(codeString))
-        return _0_0_80;
-      if ("0.0.81".equals(codeString))
-        return _0_0_81;
-      if ("0.0.82".equals(codeString))
-        return _0_0_82;
-      if ("0.4".equals(codeString))
-        return _0_4;
-      if ("0.4.0".equals(codeString))
-        return _0_4_0;
-      if ("0.5".equals(codeString))
-        return _0_5;
-      if ("0.5.0".equals(codeString))
-        return _0_5_0;
-      if ("1.0".equals(codeString))
-        return _1_0;
-      if ("1.0.0".equals(codeString))
-        return _1_0_0;
-      if ("1.0.1".equals(codeString))
-        return _1_0_1;
-      if ("1.0.2".equals(codeString))
-        return _1_0_2;
-      if ("1.1".equals(codeString))
-        return _1_1;
-      if ("1.1.0".equals(codeString))
-        return _1_1_0;
-      if ("1.4".equals(codeString))
-        return _1_4;
-      if ("1.4.0".equals(codeString))
-        return _1_4_0;
-      if ("1.6".equals(codeString))
-        return _1_6;
-      if ("1.6.0".equals(codeString))
-        return _1_6_0;
-      if ("1.8".equals(codeString))
-        return _1_8;
-      if ("1.8.0".equals(codeString))
-        return _1_8_0;
-      if ("3.0".equals(codeString))
-        return _3_0;
-      if ("3.0.0".equals(codeString))
-        return _3_0_0;
-      if ("3.0.1".equals(codeString))
-        return _3_0_1;
-      if ("3.0.2".equals(codeString))
-        return _3_0_2;
-      if ("3.3".equals(codeString))
-        return _3_3;
-      if ("3.3.0".equals(codeString))
-        return _3_3_0;
-      if ("3.5".equals(codeString))
-        return _3_5;
-      if ("3.5.0".equals(codeString))
-        return _3_5_0;
-      if ("4.0".equals(codeString))
-        return _4_0;
-      if ("4.0.0".equals(codeString))
-        return _4_0_0;
-      if ("4.0.1".equals(codeString))
-        return _4_0_1;
-      if ("4.1".equals(codeString))
-        return _4_1;
-      if ("4.1.0".equals(codeString))
-        return _4_1_0;
-      if ("4.3.0-snapshot1".equals(codeString))
-        return _4_3_0_SNAPSHOT1;
-      if ("4.3.0-cibuild".equals(codeString))
-        return _4_3_0_CIBUILD;
-      if ("4.2".equals(codeString))
-        return _4_2;
-      if ("4.2.0".equals(codeString))
-        return _4_2_0;
-      if ("4.3".equals(codeString))
-        return _4_3;
-      if ("4.3.0".equals(codeString))
-        return _4_3_0;
-      if ("4.4".equals(codeString))
-        return _4_4;
-      if ("4.4.0".equals(codeString))
-        return _4_4_0;
-      if ("4.5".equals(codeString))
-        return _4_5;
-      if ("4.5.0".equals(codeString))
-        return _4_5_0;
-      if ("4.6".equals(codeString))
-        return _4_6;
-      if ("4.6.0".equals(codeString))
-        return _4_6_0;
-      if ("5.0".equals(codeString))
-        return _5_0;
-      if ("5.0.0".equals(codeString))
-        return _5_0_0;
-      if ("5.0.0-cibuild".equals(codeString))
-        return _5_0_0CIBUILD;
-      if ("5.0.0-snapshot1".equals(codeString))
-        return _5_0_0SNAPSHOT1;
-      if ("5.0.0-snapshot2".equals(codeString))
-        return _5_0_0SNAPSHOT2;
-      if ("5.0.0-ballot".equals(codeString))
-        return _5_0_0BALLOT;
-      if ("5.0.0-snapshot3".equals(codeString))
-        return _5_0_0SNAPSHOT3;
-      if ("5.0.0-draft-final".equals(codeString))
-        return _5_0_0DRAFTFINAL;
-      throw new FHIRException("Unknown FHIRVersion code '" + codeString + "'");
+    public enum FHIRVersion {
+        /**
+         * Oldest archived version of FHIR.
+         */
+        _0_01, 
+        /**
+         * 1st Draft for Comment (Sept 2012 Ballot).
+         */
+        _0_05, 
+        /**
+         * 2nd Draft for Comment (January 2013 Ballot).
+         */
+        _0_06, 
+        /**
+         * DSTU 1 Ballot version.
+         */
+        _0_11, 
+        /**
+         * DSTU 1 version.
+         */
+        _0_0, 
+        /**
+         * DSTU 1 Official version.
+         */
+        _0_0_80, 
+        /**
+         * DSTU 1 Official version Technical Errata #1.
+         */
+        _0_0_81, 
+        /**
+         * DSTU 1 Official version Technical Errata #2.
+         */
+        _0_0_82, 
+        /**
+         * January 2015 Ballot.
+         */
+        _0_4, 
+        /**
+         * Draft For Comment (January 2015 Ballot).
+         */
+        _0_4_0, 
+        /**
+         * May 2015 Ballot.
+         */
+        _0_5, 
+        /**
+         * DSTU 2 Ballot version (May 2015 Ballot).
+         */
+        _0_5_0, 
+        /**
+         * DSTU 2 version.
+         */
+        _1_0, 
+        /**
+         * DSTU 2 QA Preview + CQIF Ballot (Sep 2015).
+         */
+        _1_0_0, 
+        /**
+         * DSTU 2 (Official version).
+         */
+        _1_0_1, 
+        /**
+         * DSTU 2 (Official version) with 1 technical errata.
+         */
+        _1_0_2, 
+        /**
+         * GAO Ballot version.
+         */
+        _1_1, 
+        /**
+         * GAO Ballot + draft changes to main FHIR standard.
+         */
+        _1_1_0, 
+        /**
+         * Connectathon 12 (Montreal) version.
+         */
+        _1_4, 
+        /**
+         * CQF on FHIR Ballot + Connectathon 12 (Montreal).
+         */
+        _1_4_0, 
+        /**
+         * Connectathon 13 (Baltimore) version.
+         */
+        _1_6, 
+        /**
+         * FHIR STU3 Ballot + Connectathon 13 (Baltimore).
+         */
+        _1_6_0, 
+        /**
+         * Connectathon 14 (San Antonio) version.
+         */
+        _1_8, 
+        /**
+         * FHIR STU3 Candidate + Connectathon 14 (San Antonio).
+         */
+        _1_8_0, 
+        /**
+         * STU3 version.
+         */
+        _3_0, 
+        /**
+         * FHIR Release 3 (STU).
+         */
+        _3_0_0, 
+        /**
+         * FHIR Release 3 (STU) with 1 technical errata.
+         */
+        _3_0_1, 
+        /**
+         * FHIR Release 3 (STU) with 2 technical errata.
+         */
+        _3_0_2, 
+        /**
+         * R4 Ballot #1 version.
+         */
+        _3_3, 
+        /**
+         * R4 Ballot #1 + Connectaton 18 (Cologne).
+         */
+        _3_3_0, 
+        /**
+         * R4 Ballot #2 version.
+         */
+        _3_5, 
+        /**
+         * R4 Ballot #2 + Connectathon 19 (Baltimore).
+         */
+        _3_5_0, 
+        /**
+         * R4 version.
+         */
+        _4_0, 
+        /**
+         * FHIR Release 4 (Normative + STU).
+         */
+        _4_0_0, 
+        /**
+         * FHIR Release 4 (Normative + STU) with 1 technical errata.
+         */
+        _4_0_1, 
+        /**
+         * R4B Ballot #1 version.
+         */
+        _4_1, 
+        /**
+         * R4B Ballot #1 + Connectathon 27 (Virtual).
+         */
+        _4_1_0, 
+        /**
+         * R5 Preview #1 version.
+         */
+        _4_2, 
+        /**
+         * R5 Preview #1 + Connectathon 23 (Sydney).
+         */
+        _4_2_0, 
+        /**
+         * R4B version.
+         */
+        _4_3, 
+        /**
+         * FHIR Release 4B (Normative + STU).
+         */
+        _4_3_0, 
+        /**
+         * FHIR Release 4B CI-Builld.
+         */
+        _4_3_0CIBUILD, 
+        /**
+         * FHIR Release 4B Snapshot #1.
+         */
+        _4_3_0SNAPSHOT1, 
+        /**
+         * R5 Preview #2 version.
+         */
+        _4_4, 
+        /**
+         * R5 Preview #2 + Connectathon 24 (Virtual).
+         */
+        _4_4_0, 
+        /**
+         * R5 Preview #3 version.
+         */
+        _4_5, 
+        /**
+         * R5 Preview #3 + Connectathon 25 (Virtual).
+         */
+        _4_5_0, 
+        /**
+         * R5 Draft Ballot version.
+         */
+        _4_6, 
+        /**
+         * R5 Draft Ballot + Connectathon 27 (Virtual).
+         */
+        _4_6_0, 
+        /**
+         * R5 Versions.
+         */
+        _5_0, 
+        /**
+         * R5 Final Version.
+         */
+        _5_0_0, 
+        /**
+         * R5 Rolling ci-build.
+         */
+        _5_0_0CIBUILD, 
+        /**
+         * R5 Preview #2.
+         */
+        _5_0_0SNAPSHOT1, 
+        /**
+         * R5 Interim tooling stage.
+         */
+        _5_0_0SNAPSHOT2, 
+        /**
+         * R5 Ballot.
+         */
+        _5_0_0BALLOT, 
+        /**
+         * R5 January 2023 Staging Release + Connectathon 32.
+         */
+        _5_0_0SNAPSHOT3, 
+        /**
+         * R5 Final QA.
+         */
+        _5_0_0DRAFTFINAL, 
+        /**
+         * R6 Rolling ci-build.
+         */
+        _6_0_0CIBUILD, 
+        /**
+         * R6 Formal version (does not exist yet)
+         */
+        _6_0_0, 
+        _6_0_0_BALLOT1, 
+        _6_0_0_BALLOT2, 
+        /**
+         * added to help the parsers
+         */
+        NULL;
+        public static FHIRVersion fromCode(String codeString) throws FHIRException {
+            if (codeString == null || "".equals(codeString))
+                return null;
+        if ("0.01".equals(codeString))
+          return _0_01;
+        if ("0.05".equals(codeString))
+          return _0_05;
+        if ("0.06".equals(codeString))
+          return _0_06;
+        if ("0.11".equals(codeString))
+          return _0_11;
+        if ("0.0".equals(codeString))
+          return _0_0;
+        if ("0.0.80".equals(codeString))
+          return _0_0_80;
+        if ("0.0.81".equals(codeString))
+          return _0_0_81;
+        if ("0.0.82".equals(codeString))
+          return _0_0_82;
+        if ("0.4".equals(codeString))
+          return _0_4;
+        if ("0.4.0".equals(codeString))
+          return _0_4_0;
+        if ("0.5".equals(codeString))
+          return _0_5;
+        if ("0.5.0".equals(codeString))
+          return _0_5_0;
+        if ("1.0".equals(codeString))
+          return _1_0;
+        if ("1.0.0".equals(codeString))
+          return _1_0_0;
+        if ("1.0.1".equals(codeString))
+          return _1_0_1;
+        if ("1.0.2".equals(codeString))
+          return _1_0_2;
+        if ("1.1".equals(codeString))
+          return _1_1;
+        if ("1.1.0".equals(codeString))
+          return _1_1_0;
+        if ("1.4".equals(codeString))
+          return _1_4;
+        if ("1.4.0".equals(codeString))
+          return _1_4_0;
+        if ("1.6".equals(codeString))
+          return _1_6;
+        if ("1.6.0".equals(codeString))
+          return _1_6_0;
+        if ("1.8".equals(codeString))
+          return _1_8;
+        if ("1.8.0".equals(codeString))
+          return _1_8_0;
+        if ("3.0".equals(codeString))
+          return _3_0;
+        if ("3.0.0".equals(codeString))
+          return _3_0_0;
+        if ("3.0.1".equals(codeString))
+          return _3_0_1;
+        if ("3.0.2".equals(codeString))
+          return _3_0_2;
+        if ("3.3".equals(codeString))
+          return _3_3;
+        if ("3.3.0".equals(codeString))
+          return _3_3_0;
+        if ("3.5".equals(codeString))
+          return _3_5;
+        if ("3.5.0".equals(codeString))
+          return _3_5_0;
+        if ("4.0".equals(codeString))
+          return _4_0;
+        if ("4.0.0".equals(codeString))
+          return _4_0_0;
+        if ("4.0.1".equals(codeString))
+          return _4_0_1;
+        if ("4.1".equals(codeString))
+          return _4_1;
+        if ("4.1.0".equals(codeString))
+          return _4_1_0;
+        if ("4.2".equals(codeString))
+          return _4_2;
+        if ("4.2.0".equals(codeString))
+          return _4_2_0;
+        if ("4.3".equals(codeString))
+          return _4_3;
+        if ("4.3.0".equals(codeString))
+          return _4_3_0;
+        if ("4.3.0-cibuild".equals(codeString))
+          return _4_3_0CIBUILD;
+        if ("4.3.0-snapshot1".equals(codeString))
+          return _4_3_0SNAPSHOT1;
+        if ("4.4".equals(codeString))
+          return _4_4;
+        if ("4.4.0".equals(codeString))
+          return _4_4_0;
+        if ("4.5".equals(codeString))
+          return _4_5;
+        if ("4.5.0".equals(codeString))
+          return _4_5_0;
+        if ("4.6".equals(codeString))
+          return _4_6;
+        if ("4.6.0".equals(codeString))
+          return _4_6_0;
+        if ("5.0".equals(codeString))
+          return _5_0;
+        if ("5.0.0".equals(codeString))
+          return _5_0_0;
+        if ("5.0.0-cibuild".equals(codeString))
+          return _5_0_0CIBUILD;
+        if ("5.0.0-snapshot1".equals(codeString))
+          return _5_0_0SNAPSHOT1;
+        if ("5.0.0-snapshot2".equals(codeString))
+          return _5_0_0SNAPSHOT2;
+        if ("5.0.0-ballot".equals(codeString))
+          return _5_0_0BALLOT;
+        if ("5.0.0-snapshot3".equals(codeString))
+          return _5_0_0SNAPSHOT3;
+        if ("5.0.0-draft-final".equals(codeString))
+          return _5_0_0DRAFTFINAL;
+        if ("6.0.0-cibuild".equals(codeString))
+          return _6_0_0CIBUILD;
+        if ("6.0.0".equals(codeString))
+          return _6_0_0;
+        if ("6.0.0-ballot1".equals(codeString))
+          return _6_0_0_BALLOT1;
+        if ("6.0.0-ballot2".equals(codeString))
+          return _6_0_0_BALLOT2;
+        throw new FHIRException("Unknown FHIRVersion code '"+codeString+"'");
+        }
+        public static boolean isValidCode(String codeString) {
+            if (codeString == null || "".equals(codeString))
+                return false;
+          return Utilities.existsInList(codeString, "0.01", "0.05", "0.06", "0.11", "0.0", "0.0.80", "0.0.81", "0.0.82", "0.4", "0.4.0", "0.5", "0.5.0", "1.0", "1.0.0", "1.0.1", "1.0.2", "1.1", "1.1.0", "1.4", "1.4.0", "1.6", "1.6.0", "1.8", "1.8.0", "3.0", "3.0.0", "3.0.1", "3.0.2", "3.3", "3.3.0", "3.5", "3.5.0", "4.0", "4.0.0", "4.0.1", "4.1", "4.1.0", "4.2", "4.2.0", "4.3", "4.3.0", "4.3.0-cibuild", "4.3.0-snapshot1", "4.4", "4.4.0", "4.5", "4.5.0", "4.6", "4.6.0", "5.0", "5.0.0", "5.0.0-cibuild", "5.0.0-snapshot1", "5.0.0-snapshot2", "5.0.0-ballot", "5.0.0-snapshot3", "5.0.0-draft-final");
+        }
+        public String toCode() {
+          switch (this) {
+            case _0_01: return "0.01";
+            case _0_05: return "0.05";
+            case _0_06: return "0.06";
+            case _0_11: return "0.11";
+            case _0_0: return "0.0";
+            case _0_0_80: return "0.0.80";
+            case _0_0_81: return "0.0.81";
+            case _0_0_82: return "0.0.82";
+            case _0_4: return "0.4";
+            case _0_4_0: return "0.4.0";
+            case _0_5: return "0.5";
+            case _0_5_0: return "0.5.0";
+            case _1_0: return "1.0";
+            case _1_0_0: return "1.0.0";
+            case _1_0_1: return "1.0.1";
+            case _1_0_2: return "1.0.2";
+            case _1_1: return "1.1";
+            case _1_1_0: return "1.1.0";
+            case _1_4: return "1.4";
+            case _1_4_0: return "1.4.0";
+            case _1_6: return "1.6";
+            case _1_6_0: return "1.6.0";
+            case _1_8: return "1.8";
+            case _1_8_0: return "1.8.0";
+            case _3_0: return "3.0";
+            case _3_0_0: return "3.0.0";
+            case _3_0_1: return "3.0.1";
+            case _3_0_2: return "3.0.2";
+            case _3_3: return "3.3";
+            case _3_3_0: return "3.3.0";
+            case _3_5: return "3.5";
+            case _3_5_0: return "3.5.0";
+            case _4_0: return "4.0";
+            case _4_0_0: return "4.0.0";
+            case _4_0_1: return "4.0.1";
+            case _4_1: return "4.1";
+            case _4_1_0: return "4.1.0";
+            case _4_2: return "4.2";
+            case _4_2_0: return "4.2.0";
+            case _4_3: return "4.3";
+            case _4_3_0: return "4.3.0";
+            case _4_3_0CIBUILD: return "4.3.0-cibuild";
+            case _4_3_0SNAPSHOT1: return "4.3.0-snapshot1";
+            case _4_4: return "4.4";
+            case _4_4_0: return "4.4.0";
+            case _4_5: return "4.5";
+            case _4_5_0: return "4.5.0";
+            case _4_6: return "4.6";
+            case _4_6_0: return "4.6.0";
+            case _5_0: return "5.0";
+            case _5_0_0: return "5.0.0";
+            case _5_0_0CIBUILD: return "5.0.0-cibuild";
+            case _5_0_0SNAPSHOT1: return "5.0.0-snapshot1";
+            case _5_0_0SNAPSHOT2: return "5.0.0-snapshot2";
+            case _5_0_0BALLOT: return "5.0.0-ballot";
+            case _5_0_0SNAPSHOT3: return "5.0.0-snapshot3";
+            case _5_0_0DRAFTFINAL: return "5.0.0-draft-final";
+            case _6_0_0CIBUILD: return "6.0.0-cibuild";
+            case _6_0_0: return "6.0.0";
+            case _6_0_0_BALLOT1: return "6.0.0-ballot1";
+            case _6_0_0_BALLOT2: return "6.0.0-ballot2";
+            case NULL: return null;
+            default: return "?";
+          }
+        }
+        public String getSystem() {
+          switch (this) {
+            case _0_01: return "http://hl7.org/fhir/FHIR-version";
+            case _0_05: return "http://hl7.org/fhir/FHIR-version";
+            case _0_06: return "http://hl7.org/fhir/FHIR-version";
+            case _0_11: return "http://hl7.org/fhir/FHIR-version";
+            case _0_0: return "http://hl7.org/fhir/FHIR-version";
+            case _0_0_80: return "http://hl7.org/fhir/FHIR-version";
+            case _0_0_81: return "http://hl7.org/fhir/FHIR-version";
+            case _0_0_82: return "http://hl7.org/fhir/FHIR-version";
+            case _0_4: return "http://hl7.org/fhir/FHIR-version";
+            case _0_4_0: return "http://hl7.org/fhir/FHIR-version";
+            case _0_5: return "http://hl7.org/fhir/FHIR-version";
+            case _0_5_0: return "http://hl7.org/fhir/FHIR-version";
+            case _1_0: return "http://hl7.org/fhir/FHIR-version";
+            case _1_0_0: return "http://hl7.org/fhir/FHIR-version";
+            case _1_0_1: return "http://hl7.org/fhir/FHIR-version";
+            case _1_0_2: return "http://hl7.org/fhir/FHIR-version";
+            case _1_1: return "http://hl7.org/fhir/FHIR-version";
+            case _1_1_0: return "http://hl7.org/fhir/FHIR-version";
+            case _1_4: return "http://hl7.org/fhir/FHIR-version";
+            case _1_4_0: return "http://hl7.org/fhir/FHIR-version";
+            case _1_6: return "http://hl7.org/fhir/FHIR-version";
+            case _1_6_0: return "http://hl7.org/fhir/FHIR-version";
+            case _1_8: return "http://hl7.org/fhir/FHIR-version";
+            case _1_8_0: return "http://hl7.org/fhir/FHIR-version";
+            case _3_0: return "http://hl7.org/fhir/FHIR-version";
+            case _3_0_0: return "http://hl7.org/fhir/FHIR-version";
+            case _3_0_1: return "http://hl7.org/fhir/FHIR-version";
+            case _3_0_2: return "http://hl7.org/fhir/FHIR-version";
+            case _3_3: return "http://hl7.org/fhir/FHIR-version";
+            case _3_3_0: return "http://hl7.org/fhir/FHIR-version";
+            case _3_5: return "http://hl7.org/fhir/FHIR-version";
+            case _3_5_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_0_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_0_1: return "http://hl7.org/fhir/FHIR-version";
+            case _4_1: return "http://hl7.org/fhir/FHIR-version";
+            case _4_1_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_2: return "http://hl7.org/fhir/FHIR-version";
+            case _4_2_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_3: return "http://hl7.org/fhir/FHIR-version";
+            case _4_3_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_3_0CIBUILD: return "http://hl7.org/fhir/FHIR-version";
+            case _4_3_0SNAPSHOT1: return "http://hl7.org/fhir/FHIR-version";
+            case _4_4: return "http://hl7.org/fhir/FHIR-version";
+            case _4_4_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_5: return "http://hl7.org/fhir/FHIR-version";
+            case _4_5_0: return "http://hl7.org/fhir/FHIR-version";
+            case _4_6: return "http://hl7.org/fhir/FHIR-version";
+            case _4_6_0: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0CIBUILD: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0SNAPSHOT1: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0SNAPSHOT2: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0BALLOT: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0SNAPSHOT3: return "http://hl7.org/fhir/FHIR-version";
+            case _5_0_0DRAFTFINAL: return "http://hl7.org/fhir/FHIR-version";
+            case _6_0_0CIBUILD: return "http://hl7.org/fhir/FHIR-version";
+            case _6_0_0: return "http://hl7.org/fhir/FHIR-version";
+            case _6_0_0_BALLOT1: return "http://hl7.org/fhir/FHIR-version";
+            case NULL: return null;
+            default: return "?";
+          }
+        }
+        public String getDefinition() {
+          switch (this) {
+            case _0_01: return "Oldest archived version of FHIR.";
+            case _0_05: return "1st Draft for Comment (Sept 2012 Ballot).";
+            case _0_06: return "2nd Draft for Comment (January 2013 Ballot).";
+            case _0_11: return "DSTU 1 Ballot version.";
+            case _0_0: return "DSTU 1 version.";
+            case _0_0_80: return "DSTU 1 Official version.";
+            case _0_0_81: return "DSTU 1 Official version Technical Errata #1.";
+            case _0_0_82: return "DSTU 1 Official version Technical Errata #2.";
+            case _0_4: return "January 2015 Ballot.";
+            case _0_4_0: return "Draft For Comment (January 2015 Ballot).";
+            case _0_5: return "May 2015 Ballot.";
+            case _0_5_0: return "DSTU 2 Ballot version (May 2015 Ballot).";
+            case _1_0: return "DSTU 2 version.";
+            case _1_0_0: return "DSTU 2 QA Preview + CQIF Ballot (Sep 2015).";
+            case _1_0_1: return "DSTU 2 (Official version).";
+            case _1_0_2: return "DSTU 2 (Official version) with 1 technical errata.";
+            case _1_1: return "GAO Ballot version.";
+            case _1_1_0: return "GAO Ballot + draft changes to main FHIR standard.";
+            case _1_4: return "Connectathon 12 (Montreal) version.";
+            case _1_4_0: return "CQF on FHIR Ballot + Connectathon 12 (Montreal).";
+            case _1_6: return "Connectathon 13 (Baltimore) version.";
+            case _1_6_0: return "FHIR STU3 Ballot + Connectathon 13 (Baltimore).";
+            case _1_8: return "Connectathon 14 (San Antonio) version.";
+            case _1_8_0: return "FHIR STU3 Candidate + Connectathon 14 (San Antonio).";
+            case _3_0: return "STU3 version.";
+            case _3_0_0: return "FHIR Release 3 (STU).";
+            case _3_0_1: return "FHIR Release 3 (STU) with 1 technical errata.";
+            case _3_0_2: return "FHIR Release 3 (STU) with 2 technical errata.";
+            case _3_3: return "R4 Ballot #1 version.";
+            case _3_3_0: return "R4 Ballot #1 + Connectaton 18 (Cologne).";
+            case _3_5: return "R4 Ballot #2 version.";
+            case _3_5_0: return "R4 Ballot #2 + Connectathon 19 (Baltimore).";
+            case _4_0: return "R4 version.";
+            case _4_0_0: return "FHIR Release 4 (Normative + STU).";
+            case _4_0_1: return "FHIR Release 4 (Normative + STU) with 1 technical errata.";
+            case _4_1: return "R4B Ballot #1 version.";
+            case _4_1_0: return "R4B Ballot #1 + Connectathon 27 (Virtual).";
+            case _4_2: return "R5 Preview #1 version.";
+            case _4_2_0: return "R5 Preview #1 + Connectathon 23 (Sydney).";
+            case _4_3: return "R4B version.";
+            case _4_3_0: return "FHIR Release 4B (Normative + STU).";
+            case _4_3_0CIBUILD: return "FHIR Release 4B CI-Builld.";
+            case _4_3_0SNAPSHOT1: return "FHIR Release 4B Snapshot #1.";
+            case _4_4: return "R5 Preview #2 version.";
+            case _4_4_0: return "R5 Preview #2 + Connectathon 24 (Virtual).";
+            case _4_5: return "R5 Preview #3 version.";
+            case _4_5_0: return "R5 Preview #3 + Connectathon 25 (Virtual).";
+            case _4_6: return "R5 Draft Ballot version.";
+            case _4_6_0: return "R5 Draft Ballot + Connectathon 27 (Virtual).";
+            case _5_0: return "R5 Versions.";
+            case _5_0_0: return "R5 Final Version.";
+            case _5_0_0CIBUILD: return "R5 Rolling ci-build.";
+            case _5_0_0SNAPSHOT1: return "R5 Preview #2.";
+            case _5_0_0SNAPSHOT2: return "R5 Interim tooling stage.";
+            case _5_0_0BALLOT: return "R5 Ballot.";
+            case _5_0_0SNAPSHOT3: return "R5 January 2023 Staging Release + Connectathon 32.";
+            case _5_0_0DRAFTFINAL: return "R5 Final QA.";
+            case _6_0_0CIBUILD: return "R6 Rolling ci-build.";
+            case _6_0_0: return "R6 Final Version.";
+            case _6_0_0_BALLOT1: return "R6 Ballot #1.";
+            case NULL: return null;
+            default: return "?";
+          }
+        }
+        public String getDisplay() {
+          switch (this) {
+            case _0_01: return "0.01";
+            case _0_05: return "0.05";
+            case _0_06: return "0.06";
+            case _0_11: return "0.11";
+            case _0_0: return "0.0";
+            case _0_0_80: return "0.0.80";
+            case _0_0_81: return "0.0.81";
+            case _0_0_82: return "0.0.82";
+            case _0_4: return "0.4";
+            case _0_4_0: return "0.4.0";
+            case _0_5: return "0.5";
+            case _0_5_0: return "0.5.0";
+            case _1_0: return "1.0";
+            case _1_0_0: return "1.0.0";
+            case _1_0_1: return "1.0.1";
+            case _1_0_2: return "1.0.2";
+            case _1_1: return "1.1";
+            case _1_1_0: return "1.1.0";
+            case _1_4: return "1.4";
+            case _1_4_0: return "1.4.0";
+            case _1_6: return "1.6";
+            case _1_6_0: return "1.6.0";
+            case _1_8: return "1.8";
+            case _1_8_0: return "1.8.0";
+            case _3_0: return "3.0";
+            case _3_0_0: return "3.0.0";
+            case _3_0_1: return "3.0.1";
+            case _3_0_2: return "3.0.2";
+            case _3_3: return "3.3";
+            case _3_3_0: return "3.3.0";
+            case _3_5: return "3.5";
+            case _3_5_0: return "3.5.0";
+            case _4_0: return "4.0";
+            case _4_0_0: return "4.0.0";
+            case _4_0_1: return "4.0.1";
+            case _4_1: return "4.1";
+            case _4_1_0: return "4.1.0";
+            case _4_2: return "4.2";
+            case _4_2_0: return "4.2.0";
+            case _4_3: return "4.3";
+            case _4_3_0: return "4.3.0";
+            case _4_3_0CIBUILD: return "4.3.0-cibuild";
+            case _4_3_0SNAPSHOT1: return "4.3.0-snapshot1";
+            case _4_4: return "4.4";
+            case _4_4_0: return "4.4.0";
+            case _4_5: return "4.5";
+            case _4_5_0: return "4.5.0";
+            case _4_6: return "4.6";
+            case _4_6_0: return "4.6.0";
+            case _5_0: return "5.0";
+            case _5_0_0: return "5.0.0";
+            case _5_0_0CIBUILD: return "5.0.0-cibuild";
+            case _5_0_0SNAPSHOT1: return "5.0.0-snapshot1";
+            case _5_0_0SNAPSHOT2: return "5.0.0-snapshot2";
+            case _5_0_0BALLOT: return "5.0.0-ballot";
+            case _5_0_0SNAPSHOT3: return "5.0.0-snapshot3";
+            case _5_0_0DRAFTFINAL: return "5.0.0-draft-final";
+            case _6_0_0CIBUILD: return "6.0.0-cibuild";
+            case _6_0_0: return "6.0.0";
+            case _6_0_0_BALLOT1: return "6.0.0-ballot1";
+            case _6_0_0_BALLOT2: return "6.0.0-ballot2";
+            case NULL: return null;
+            default: return "?";
+          }
+        }
+// manual code from configuration.txt:
+//public String toCode(int len) {
+//          return toCode().substring(0, len);
+//        }
+//
+//     
+//        @Override
+//        public String toString() {
+//          return toCode();
+//        }
+//        
+//        
+//        public boolean isR4B() {
+//          return toCode().startsWith("4.1");
+//        }
+//        
+// end addition
     }
 
-    public static boolean isValidCode(String codeString) {
-      if (codeString == null || "".equals(codeString))
-        return false;
-      if ("0.01".equals(codeString))
-        return true;
-      if ("0.05".equals(codeString))
-        return true;
-      if ("0.06".equals(codeString))
-        return true;
-      if ("0.11".equals(codeString))
-        return true;
-      if ("0.0".equals(codeString))
-        return true;
-      if ("0.0.80".equals(codeString))
-        return true;
-      if ("0.0.81".equals(codeString))
-        return true;
-      if ("0.0.82".equals(codeString))
-        return true;
-      if ("0.4".equals(codeString))
-        return true;
-      if ("0.4.0".equals(codeString))
-        return true;
-      if ("0.5".equals(codeString))
-        return true;
-      if ("0.5.0".equals(codeString))
-        return true;
-      if ("1.0".equals(codeString))
-        return true;
-      if ("1.0.0".equals(codeString))
-        return true;
-      if ("1.0.1".equals(codeString))
-        return true;
-      if ("1.0.2".equals(codeString))
-        return true;
-      if ("1.1".equals(codeString))
-        return true;
-      if ("1.1.0".equals(codeString))
-        return true;
-      if ("1.4".equals(codeString))
-        return true;
-      if ("1.4.0".equals(codeString))
-        return true;
-      if ("1.6".equals(codeString))
-        return true;
-      if ("1.6.0".equals(codeString))
-        return true;
-      if ("1.8".equals(codeString))
-        return true;
-      if ("1.8.0".equals(codeString))
-        return true;
-      if ("3.0".equals(codeString))
-        return true;
-      if ("3.0.0".equals(codeString))
-        return true;
-      if ("3.0.1".equals(codeString))
-        return true;
-      if ("3.0.2".equals(codeString))
-        return true;
-      if ("3.3".equals(codeString))
-        return true;
-      if ("3.3.0".equals(codeString))
-        return true;
-      if ("3.5".equals(codeString))
-        return true;
-      if ("3.5.0".equals(codeString))
-        return true;
-      if ("4.0".equals(codeString))
-        return true;
-      if ("4.0.0".equals(codeString))
-        return true;
-      if ("4.0.1".equals(codeString))
-        return true;
-      if ("4.1".equals(codeString))
-        return true;
-      if ("4.1.0".equals(codeString))
-        return true;
-      if ("4.2".equals(codeString))
-        return true;
-      if ("4.2.0".equals(codeString))
-        return true;
-      if ("4.3".equals(codeString))
-        return true;
-      if ("4.3.0".equals(codeString))
-        return true;
-      if ("4.4".equals(codeString))
-        return true;
-      if ("4.4.0".equals(codeString))
-        return true;
-      if ("4.5".equals(codeString))
-        return true;
-      if ("4.5.0".equals(codeString))
-        return true;
-      if ("4.6".equals(codeString))
-        return true;
-      if ("4.6.0".equals(codeString))
-        return true;
-      if ("5.0".equals(codeString))
-        return true;
-      if ("5.0.0".equals(codeString))
-        return true;
-      if ("5.0.0-cibuild".equals(codeString))
-        return true;
-      if ("5.0.0-snapshot1".equals(codeString))
-        return true;
-      if ("5.0.0-snapshot2".equals(codeString))
-        return true;
-      if ("5.0.0-ballot".equals(codeString))
-        return true;
-      return false;
-    }
-
-    public String toCode() {
-      switch (this) {
-      case _0_01:
-        return "0.01";
-      case _0_05:
-        return "0.05";
-      case _0_06:
-        return "0.06";
-      case _0_11:
-        return "0.11";
-      case _0_0:
-        return "0.0";
-      case _0_0_80:
-        return "0.0.80";
-      case _0_0_81:
-        return "0.0.81";
-      case _0_0_82:
-        return "0.0.82";
-      case _0_4:
-        return "0.4";
-      case _0_4_0:
-        return "0.4.0";
-      case _0_5:
-        return "0.5";
-      case _0_5_0:
-        return "0.5.0";
-      case _1_0:
-        return "1.0";
-      case _1_0_0:
-        return "1.0.0";
-      case _1_0_1:
-        return "1.0.1";
-      case _1_0_2:
-        return "1.0.2";
-      case _1_1:
-        return "1.1";
-      case _1_1_0:
-        return "1.1.0";
-      case _1_4:
-        return "1.4";
-      case _1_4_0:
-        return "1.4.0";
-      case _1_6:
-        return "1.6";
-      case _1_6_0:
-        return "1.6.0";
-      case _1_8:
-        return "1.8";
-      case _1_8_0:
-        return "1.8.0";
-      case _3_0:
-        return "3.0";
-      case _3_0_0:
-        return "3.0.0";
-      case _3_0_1:
-        return "3.0.1";
-      case _3_0_2:
-        return "3.0.2";
-      case _3_3:
-        return "3.3";
-      case _3_3_0:
-        return "3.3.0";
-      case _3_5:
-        return "3.5";
-      case _3_5_0:
-        return "3.5.0";
-      case _4_0:
-        return "4.0";
-      case _4_0_0:
-        return "4.0.0";
-      case _4_0_1:
-        return "4.0.1";
-      case _4_1:
-        return "4.1";
-      case _4_1_0:
-        return "4.1.0";
-      case _4_2:
-        return "4.2";
-      case _4_2_0:
-        return "4.2.0";
-      case _4_3:
-        return "4.3";
-      case _4_3_0:
-        return "4.3.0";
-      case _4_3_0_SNAPSHOT1:
-        return "4.3.0-snapshot1";
-      case _4_3_0_CIBUILD:
-        return "4.3.0-cibuild";
-      case _4_4:
-        return "4.4";
-      case _4_4_0:
-        return "4.4.0";
-      case _4_5:
-        return "4.5";
-      case _4_5_0:
-        return "4.5.0";
-      case _4_6:
-        return "4.6";
-      case _4_6_0:
-        return "4.6.0";
-      case _5_0:
-        return "5.0";
-      case _5_0_0:
-        return "5.0.0";
-      case _5_0_0CIBUILD:
-        return "5.0.0-cibuild";
-      case _5_0_0SNAPSHOT1:
-        return "5.0.0-snapshot1";
-      case _5_0_0SNAPSHOT2:
-        return "5.0.0-snapshot2";
-      case _5_0_0BALLOT:
-        return "5.0.0-ballot";
-      case _5_0_0SNAPSHOT3:
-        return "5.0.0-snapshot3";
-      case _5_0_0DRAFTFINAL:
-        return "5.0.0-draft-final";
-      case NULL:
-        return null;
-      default:
-        return "?";
-      }
-    }
-
-    public String getSystem() {
-      switch (this) {
-      case _0_01:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_05:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_06:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_11:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_0_80:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_0_81:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_0_82:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_4:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_4_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_5:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _0_5_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_0_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_0_1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_0_2:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_1_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_4:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_4_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_6:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_6_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_8:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _1_8_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_0_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_0_1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_0_2:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_3:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_3_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_5:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _3_5_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_0_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_0_1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_1_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_2:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_2_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_3:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_3_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_3_0_SNAPSHOT1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_3_0_CIBUILD:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_4:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_4_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_5:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_5_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_6:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _4_6_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0CIBUILD:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0SNAPSHOT1:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0SNAPSHOT2:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0BALLOT:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0SNAPSHOT3:
-        return "http://hl7.org/fhir/FHIR-version";
-      case _5_0_0DRAFTFINAL:
-        return "http://hl7.org/fhir/FHIR-version";
-      case NULL:
-        return null;
-      default:
-        return "?";
-      }
-    }
-
-    public String getDefinition() {
-      switch (this) {
-      case _0_01:
-        return "Oldest archived version of FHIR.";
-      case _0_05:
-        return "1st Draft for Comment (Sept 2012 Ballot).";
-      case _0_06:
-        return "2nd Draft for Comment (January 2013 Ballot).";
-      case _0_11:
-        return "DSTU 1 Ballot version.";
-      case _0_0:
-        return "DSTU 1 version.";
-      case _0_0_80:
-        return "DSTU 1 Official version.";
-      case _0_0_81:
-        return "DSTU 1 Official version Technical Errata #1.";
-      case _0_0_82:
-        return "DSTU 1 Official version Technical Errata #2.";
-      case _0_4:
-        return "January 2015 Ballot.";
-      case _0_4_0:
-        return "Draft For Comment (January 2015 Ballot).";
-      case _0_5:
-        return "May 2015 Ballot.";
-      case _0_5_0:
-        return "DSTU 2 Ballot version (May 2015 Ballot).";
-      case _1_0:
-        return "DSTU 2 version.";
-      case _1_0_0:
-        return "DSTU 2 QA Preview + CQIF Ballot (Sep 2015).";
-      case _1_0_1:
-        return "DSTU 2 (Official version).";
-      case _1_0_2:
-        return "DSTU 2 (Official version) with 1 technical errata.";
-      case _1_1:
-        return "GAO Ballot version.";
-      case _1_1_0:
-        return "GAO Ballot + draft changes to main FHIR standard.";
-      case _1_4:
-        return "Connectathon 12 (Montreal) version.";
-      case _1_4_0:
-        return "CQF on FHIR Ballot + Connectathon 12 (Montreal).";
-      case _1_6:
-        return "Connectathon 13 (Baltimore) version.";
-      case _1_6_0:
-        return "FHIR STU3 Ballot + Connectathon 13 (Baltimore).";
-      case _1_8:
-        return "Connectathon 14 (San Antonio) version.";
-      case _1_8_0:
-        return "FHIR STU3 Candidate + Connectathon 14 (San Antonio).";
-      case _3_0:
-        return "STU3 version.";
-      case _3_0_0:
-        return "FHIR Release 3 (STU).";
-      case _3_0_1:
-        return "FHIR Release 3 (STU) with 1 technical errata.";
-      case _3_0_2:
-        return "FHIR Release 3 (STU) with 2 technical errata.";
-      case _3_3:
-        return "R4 Ballot #1 version.";
-      case _3_3_0:
-        return "R4 Ballot #1 + Connectaton 18 (Cologne).";
-      case _3_5:
-        return "R4 Ballot #2 version.";
-      case _3_5_0:
-        return "R4 Ballot #2 + Connectathon 19 (Baltimore).";
-      case _4_0:
-        return "R4 version.";
-      case _4_0_0:
-        return "FHIR Release 4 (Normative + STU).";
-      case _4_0_1:
-        return "FHIR Release 4 (Normative + STU) with 1 technical errata.";
-      case _4_1:
-        return "R4B Ballot #1 version.";
-      case _4_1_0:
-        return "R4B Ballot #1 + Connectathon 27 (Virtual).";
-      case _4_2:
-        return "R5 Preview #1 version.";
-      case _4_2_0:
-        return "R5 Preview #1 + Connectathon 23 (Sydney).";
-      case _4_3_0_SNAPSHOT1:
-        return "FHIR Release 4B Snapshot #1";
-      case _4_3_0_CIBUILD:
-        return "FHIR Release 4B CI-Builld";
-      case _4_3:
-        return "R4B version.";
-      case _4_3_0:
-        return "FHIR Release 4B (Normative + STU).";
-      case _4_4:
-        return "R5 Preview #2 version.";
-      case _4_4_0:
-        return "R5 Preview #2 + Connectathon 24 (Virtual).";
-      case _4_5:
-        return "R5 Preview #3 version.";
-      case _4_5_0:
-        return "R5 Preview #3 + Connectathon 25 (Virtual).";
-      case _4_6:
-        return "R5 Draft Ballot version.";
-      case _4_6_0:
-        return "R5 Draft Ballot + Connectathon 27 (Virtual).";
-      case _5_0:
-        return "R5 Versions.";
-      case _5_0_0:
-        return "R5 Final Version.";
-      case _5_0_0CIBUILD:
-        return "R5 Rolling ci-build.";
-      case _5_0_0SNAPSHOT1:
-        return "R5 Preview #2.";
-      case _5_0_0SNAPSHOT2:
-        return "R5 Interim tooling stage.";
-      case _5_0_0BALLOT:
-        return "R5 Ballot.";
-      case _5_0_0SNAPSHOT3:
-        return "R5 Connectathon 32 release.";
-      case _5_0_0DRAFTFINAL:
-        return "R5 Final QA.";
-      case NULL:
-        return null;
-      default:
-        return "?";
-      }
-    }
-
-    public String getDisplay() {
-      switch (this) {
-      case _0_01:
-        return "0.01";
-      case _0_05:
-        return "0.05";
-      case _0_06:
-        return "0.06";
-      case _0_11:
-        return "0.11";
-      case _0_0:
-        return "0.0";
-      case _0_0_80:
-        return "0.0.80";
-      case _0_0_81:
-        return "0.0.81";
-      case _0_0_82:
-        return "0.0.82";
-      case _0_4:
-        return "0.4";
-      case _0_4_0:
-        return "0.4.0";
-      case _0_5:
-        return "0.5";
-      case _0_5_0:
-        return "0.5.0";
-      case _1_0:
-        return "1.0";
-      case _1_0_0:
-        return "1.0.0";
-      case _1_0_1:
-        return "1.0.1";
-      case _1_0_2:
-        return "1.0.2";
-      case _1_1:
-        return "1.1";
-      case _1_1_0:
-        return "1.1.0";
-      case _1_4:
-        return "1.4";
-      case _1_4_0:
-        return "1.4.0";
-      case _1_6:
-        return "1.6";
-      case _1_6_0:
-        return "1.6.0";
-      case _1_8:
-        return "1.8";
-      case _1_8_0:
-        return "1.8.0";
-      case _3_0:
-        return "3.0";
-      case _3_0_0:
-        return "3.0.0";
-      case _3_0_1:
-        return "3.0.1";
-      case _3_0_2:
-        return "3.0.2";
-      case _3_3:
-        return "3.3";
-      case _3_3_0:
-        return "3.3.0";
-      case _3_5:
-        return "3.5";
-      case _3_5_0:
-        return "3.5.0";
-      case _4_0:
-        return "4.0";
-      case _4_0_0:
-        return "4.0.0";
-      case _4_0_1:
-        return "4.0.1";
-      case _4_1:
-        return "4.1";
-      case _4_1_0:
-        return "4.1.0";
-      case _4_2:
-        return "4.2";
-      case _4_2_0:
-        return "4.2.0";
-      case _4_3:
-        return "4.3";
-      case _4_3_0:
-        return "4.3.0";
-      case _4_3_0_SNAPSHOT1:
-        return "4.3.0-snapshot";
-      case _4_3_0_CIBUILD:
-        return "4.3.0-cibuild";
-      case _4_4:
-        return "4.4";
-      case _4_4_0:
-        return "4.4.0";
-      case _4_5:
-        return "4.5";
-      case _4_5_0:
-        return "4.5.0";
-      case _4_6:
-        return "4.6";
-      case _4_6_0:
-        return "4.6.0";
-      case _5_0:
-        return "5.0";
-      case _5_0_0:
-        return "5.0.0";
-      case _5_0_0CIBUILD:
-        return "5.0.0-cibuild";
-      case _5_0_0SNAPSHOT1:
-        return "5.0.0-snapshot1";
-      case _5_0_0SNAPSHOT2:
-        return "5.0.0-snapshot2";
-      case _5_0_0BALLOT:
-        return "5.0.0-ballot";
-      case _5_0_0SNAPSHOT3:
-        return "5.0.0-snapshot3";
-      case _5_0_0DRAFTFINAL:
-        return "5.0.0-draft-final";
-      case NULL:
-        return null;
-      default:
-        return "?";
-      }
-    }
-  }
-
   public static class FHIRVersionEnumFactory implements EnumFactory {
     public FHIRVersion fromCode(String codeString) throws IllegalArgumentException {
       if (codeString == null || "".equals(codeString))
-        if (codeString == null || "".equals(codeString))
-          return null;
-      if ("0.01".equals(codeString))
-        return FHIRVersion._0_01;
-      if ("0.05".equals(codeString))
-        return FHIRVersion._0_05;
-      if ("0.06".equals(codeString))
-        return FHIRVersion._0_06;
-      if ("0.11".equals(codeString))
-        return FHIRVersion._0_11;
-      if ("0.0.80".equals(codeString))
-        return FHIRVersion._0_0_80;
-      if ("0.0.81".equals(codeString))
-        return FHIRVersion._0_0_81;
-      if ("0.0.82".equals(codeString))
-        return FHIRVersion._0_0_82;
-      if ("0.4.0".equals(codeString))
-        return FHIRVersion._0_4_0;
-      if ("0.5".equals(codeString))
-        return FHIRVersion._0_5;
-      if ("0.5.0".equals(codeString))
-        return FHIRVersion._0_5_0;
-      if ("1.0".equals(codeString))
-        return FHIRVersion._1_0;
-      if ("1.0.0".equals(codeString))
-        return FHIRVersion._1_0_0;
-      if ("1.0.1".equals(codeString))
-        return FHIRVersion._1_0_1;
-      if ("1.0.2".equals(codeString))
-        return FHIRVersion._1_0_2;
-      if ("1.1".equals(codeString))
-        return FHIRVersion._1_1;
-      if ("1.1.0".equals(codeString))
-        return FHIRVersion._1_1_0;
-      if ("1.4".equals(codeString))
-        return FHIRVersion._1_4;
-      if ("1.4.0".equals(codeString))
-        return FHIRVersion._1_4_0;
-      if ("1.6".equals(codeString))
-        return FHIRVersion._1_6;
-      if ("1.6.0".equals(codeString))
-        return FHIRVersion._1_6_0;
-      if ("1.8".equals(codeString))
-        return FHIRVersion._1_8;
-      if ("1.8.0".equals(codeString))
-        return FHIRVersion._1_8_0;
-      if ("3.0".equals(codeString))
-        return FHIRVersion._3_0;
-      if ("3.0.0".equals(codeString))
-        return FHIRVersion._3_0_0;
-      if ("3.0.1".equals(codeString))
-        return FHIRVersion._3_0_1;
-      if ("3.0.2".equals(codeString))
-        return FHIRVersion._3_0_2;
-      if ("3.3".equals(codeString))
-        return FHIRVersion._3_3;
-      if ("3.3.0".equals(codeString))
-        return FHIRVersion._3_3_0;
-      if ("3.5".equals(codeString))
-        return FHIRVersion._3_5;
-      if ("3.5.0".equals(codeString))
-        return FHIRVersion._3_5_0;
-      if ("4.0".equals(codeString))
-        return FHIRVersion._4_0;
-      if ("4.0.0".equals(codeString))
-        return FHIRVersion._4_0_0;
-      if ("4.0.1".equals(codeString))
-        return FHIRVersion._4_0_1;
-      if ("4.1".equals(codeString))
-        return FHIRVersion._4_1;
-      if ("4.1.0".equals(codeString))
-        return FHIRVersion._4_1_0;
-      if ("4.2".equals(codeString))
-        return FHIRVersion._4_2;
-      if ("4.2.0".equals(codeString))
-        return FHIRVersion._4_2_0;
-      if ("4.3".equals(codeString))
-        return FHIRVersion._4_3;
-      if ("4.3.0".equals(codeString))
-        return FHIRVersion._4_3_0;
-      if ("4.3.0-snapshot1".equalsIgnoreCase(codeString))
-        return FHIRVersion._4_3_0_SNAPSHOT1;
-      if ("4.3.0-cibuild".equalsIgnoreCase(codeString))
-        return FHIRVersion._4_3_0_CIBUILD;
-      if ("4.4".equals(codeString))
-        return FHIRVersion._4_4;
-      if ("4.4.0".equals(codeString))
-        return FHIRVersion._4_4_0;
-      if ("4.5".equals(codeString))
-        return FHIRVersion._4_5;
-      if ("4.5.0".equals(codeString))
-        return FHIRVersion._4_5_0;
-      if ("4.6".equals(codeString))
-        return FHIRVersion._4_6;
-      if ("4.6.0".equals(codeString))
-        return FHIRVersion._4_6_0;
-      if ("5.0".equals(codeString))
-        return FHIRVersion._5_0;
-      if ("5.0.0".equals(codeString))
-        return FHIRVersion._5_0_0;
-      if ("5.0.0-cibuild".equals(codeString))
-        return FHIRVersion._5_0_0CIBUILD;
-      if ("5.0.0-snapshot1".equals(codeString))
-        return FHIRVersion._5_0_0SNAPSHOT1;
-      if ("5.0.0-snapshot2".equals(codeString))
-        return FHIRVersion._5_0_0SNAPSHOT2;
-      if ("5.0.0-ballot".equals(codeString))
-        return FHIRVersion._5_0_0BALLOT;
-      if ("5.0.0-snapshot3".equals(codeString))
-        return FHIRVersion._5_0_0SNAPSHOT3;
-      if ("5.0.0-draft-final".equals(codeString))
-        return FHIRVersion._5_0_0DRAFTFINAL;
-      throw new IllegalArgumentException("Unknown FHIRVersion code '" + codeString + "'");
-    }
-
-    public Enumeration fromType(PrimitiveType code) throws FHIRException {
-      if (code == null)
-        return null;
-      if (code.isEmpty())
-        return new Enumeration(this, FHIRVersion.NULL, code);
-      String codeString = code.asStringValue();
-      if (codeString == null || "".equals(codeString))
-        return new Enumeration(this, FHIRVersion.NULL, code);
-      if ("0.01".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_01, code);
-      if ("0.05".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_05, code);
-      if ("0.06".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_06, code);
-      if ("0.11".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_11, code);
-      if ("0.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_0, code);
-      if ("0.0.80".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_0_80, code);
-      if ("0.0.81".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_0_81, code);
-      if ("0.0.82".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_0_82, code);
-      if ("0.4".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_4, code);
-      if ("0.4.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_4_0, code);
-      if ("0.5".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_5, code);
-      if ("0.5.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._0_5_0, code);
-      if ("1.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_0, code);
-      if ("1.0.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_0_0, code);
-      if ("1.0.1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_0_1, code);
-      if ("1.0.2".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_0_2, code);
-      if ("1.1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_1, code);
-      if ("1.1.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_1_0, code);
-      if ("1.4".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_4, code);
-      if ("1.4.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_4_0, code);
-      if ("1.6".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_6, code);
-      if ("1.6.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_6_0, code);
-      if ("1.8".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_8, code);
-      if ("1.8.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._1_8_0, code);
-      if ("3.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_0, code);
-      if ("3.0.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_0_0, code);
-      if ("3.0.1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_0_1, code);
-      if ("3.0.2".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_0_2, code);
-      if ("3.3".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_3, code);
-      if ("3.3.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_3_0, code);
-      if ("3.5".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_5, code);
-      if ("3.5.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._3_5_0, code);
-      if ("4.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_0, code);
-      if ("4.0.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_0_0, code);
-      if ("4.0.1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_0_1, code);
-      if ("4.1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_1, code);
-      if ("4.1.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_1_0, code);
-      if ("4.2".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_2, code);
-      if ("4.2.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_2_0, code);
-      if ("4.3".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_3, code);
-      if ("4.3.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_3_0, code);
-      if ("4.3.0-snapshot1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_3_0_SNAPSHOT1, code);
-      if ("4.3.0-cibuild".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_3_0_CIBUILD, code);
-      if ("4.4".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_4, code);
-      if ("4.4.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_4_0, code);
-      if ("4.5".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_5, code);
-      if ("4.5.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_5_0, code);
-      if ("4.6".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_6, code);
-      if ("4.6.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._4_6_0, code);
-      if ("5.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0, code);
-      if ("5.0.0".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0, code);
-      if ("5.0.0-cibuild".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0CIBUILD, code);
-      if ("5.0.0-snapshot1".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0SNAPSHOT1, code);
-      if ("5.0.0-snapshot2".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0SNAPSHOT2, code);
-      if ("5.0.0-ballot".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0BALLOT, code);
-      if ("5.0.0-snapshot3".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0SNAPSHOT3, code);
-      if ("5.0.0-draft-final".equals(codeString))
-        return new Enumeration(this, FHIRVersion._5_0_0DRAFTFINAL, code);
-      throw new FHIRException("Unknown FHIRVersion code '" + codeString + "'");
-    }
+            if (codeString == null || "".equals(codeString))
+                return null;
+        if ("0.01".equals(codeString))
+          return FHIRVersion._0_01;
+        if ("0.05".equals(codeString))
+          return FHIRVersion._0_05;
+        if ("0.06".equals(codeString))
+          return FHIRVersion._0_06;
+        if ("0.11".equals(codeString))
+          return FHIRVersion._0_11;
+        if ("0.0".equals(codeString))
+          return FHIRVersion._0_0;
+        if ("0.0.80".equals(codeString))
+          return FHIRVersion._0_0_80;
+        if ("0.0.81".equals(codeString))
+          return FHIRVersion._0_0_81;
+        if ("0.0.82".equals(codeString))
+          return FHIRVersion._0_0_82;
+        if ("0.4".equals(codeString))
+          return FHIRVersion._0_4;
+        if ("0.4.0".equals(codeString))
+          return FHIRVersion._0_4_0;
+        if ("0.5".equals(codeString))
+          return FHIRVersion._0_5;
+        if ("0.5.0".equals(codeString))
+          return FHIRVersion._0_5_0;
+        if ("1.0".equals(codeString))
+          return FHIRVersion._1_0;
+        if ("1.0.0".equals(codeString))
+          return FHIRVersion._1_0_0;
+        if ("1.0.1".equals(codeString))
+          return FHIRVersion._1_0_1;
+        if ("1.0.2".equals(codeString))
+          return FHIRVersion._1_0_2;
+        if ("1.1".equals(codeString))
+          return FHIRVersion._1_1;
+        if ("1.1.0".equals(codeString))
+          return FHIRVersion._1_1_0;
+        if ("1.4".equals(codeString))
+          return FHIRVersion._1_4;
+        if ("1.4.0".equals(codeString))
+          return FHIRVersion._1_4_0;
+        if ("1.6".equals(codeString))
+          return FHIRVersion._1_6;
+        if ("1.6.0".equals(codeString))
+          return FHIRVersion._1_6_0;
+        if ("1.8".equals(codeString))
+          return FHIRVersion._1_8;
+        if ("1.8.0".equals(codeString))
+          return FHIRVersion._1_8_0;
+        if ("3.0".equals(codeString))
+          return FHIRVersion._3_0;
+        if ("3.0.0".equals(codeString))
+          return FHIRVersion._3_0_0;
+        if ("3.0.1".equals(codeString))
+          return FHIRVersion._3_0_1;
+        if ("3.0.2".equals(codeString))
+          return FHIRVersion._3_0_2;
+        if ("3.3".equals(codeString))
+          return FHIRVersion._3_3;
+        if ("3.3.0".equals(codeString))
+          return FHIRVersion._3_3_0;
+        if ("3.5".equals(codeString))
+          return FHIRVersion._3_5;
+        if ("3.5.0".equals(codeString))
+          return FHIRVersion._3_5_0;
+        if ("4.0".equals(codeString))
+          return FHIRVersion._4_0;
+        if ("4.0.0".equals(codeString))
+          return FHIRVersion._4_0_0;
+        if ("4.0.1".equals(codeString))
+          return FHIRVersion._4_0_1;
+        if ("4.1".equals(codeString))
+          return FHIRVersion._4_1;
+        if ("4.1.0".equals(codeString))
+          return FHIRVersion._4_1_0;
+        if ("4.2".equals(codeString))
+          return FHIRVersion._4_2;
+        if ("4.2.0".equals(codeString))
+          return FHIRVersion._4_2_0;
+        if ("4.3".equals(codeString))
+          return FHIRVersion._4_3;
+        if ("4.3.0".equals(codeString))
+          return FHIRVersion._4_3_0;
+        if ("4.3.0-cibuild".equals(codeString))
+          return FHIRVersion._4_3_0CIBUILD;
+        if ("4.3.0-snapshot1".equals(codeString))
+          return FHIRVersion._4_3_0SNAPSHOT1;
+        if ("4.4".equals(codeString))
+          return FHIRVersion._4_4;
+        if ("4.4.0".equals(codeString))
+          return FHIRVersion._4_4_0;
+        if ("4.5".equals(codeString))
+          return FHIRVersion._4_5;
+        if ("4.5.0".equals(codeString))
+          return FHIRVersion._4_5_0;
+        if ("4.6".equals(codeString))
+          return FHIRVersion._4_6;
+        if ("4.6.0".equals(codeString))
+          return FHIRVersion._4_6_0;
+        if ("5.0".equals(codeString))
+          return FHIRVersion._5_0;
+        if ("5.0.0".equals(codeString))
+          return FHIRVersion._5_0_0;
+        if ("5.0.0-cibuild".equals(codeString))
+          return FHIRVersion._5_0_0CIBUILD;
+        if ("5.0.0-snapshot1".equals(codeString))
+          return FHIRVersion._5_0_0SNAPSHOT1;
+        if ("5.0.0-snapshot2".equals(codeString))
+          return FHIRVersion._5_0_0SNAPSHOT2;
+        if ("5.0.0-ballot".equals(codeString))
+          return FHIRVersion._5_0_0BALLOT;
+        if ("5.0.0-snapshot3".equals(codeString))
+          return FHIRVersion._5_0_0SNAPSHOT3;
+        if ("5.0.0-draft-final".equals(codeString))
+          return FHIRVersion._5_0_0DRAFTFINAL;
+        if ("6.0.0-cibuild".equals(codeString))
+          return FHIRVersion._6_0_0CIBUILD;
+        if ("6.0.0".equals(codeString))
+          return FHIRVersion._6_0_0;
+        if ("6.0.0-ballot1".equals(codeString))
+          return FHIRVersion._6_0_0_BALLOT1;
+        if ("6.0.0-ballot2".equals(codeString))
+          return FHIRVersion._6_0_0_BALLOT2;
+        throw new IllegalArgumentException("Unknown FHIRVersion code '"+codeString+"'");
+        }
 
+        public Enumeration fromType(PrimitiveType code) throws FHIRException {
+          if (code == null)
+            return null;
+          if (code.isEmpty())
+            return new Enumeration(this, FHIRVersion.NULL, code);
+          String codeString = ((PrimitiveType) code).asStringValue();
+          if (codeString == null || "".equals(codeString))
+            return new Enumeration(this, FHIRVersion.NULL, code);
+        if ("0.01".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_01, code);
+        if ("0.05".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_05, code);
+        if ("0.06".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_06, code);
+        if ("0.11".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_11, code);
+        if ("0.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_0, code);
+        if ("0.0.80".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_0_80, code);
+        if ("0.0.81".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_0_81, code);
+        if ("0.0.82".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_0_82, code);
+        if ("0.4".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_4, code);
+        if ("0.4.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_4_0, code);
+        if ("0.5".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_5, code);
+        if ("0.5.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._0_5_0, code);
+        if ("1.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_0, code);
+        if ("1.0.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_0_0, code);
+        if ("1.0.1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_0_1, code);
+        if ("1.0.2".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_0_2, code);
+        if ("1.1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_1, code);
+        if ("1.1.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_1_0, code);
+        if ("1.4".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_4, code);
+        if ("1.4.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_4_0, code);
+        if ("1.6".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_6, code);
+        if ("1.6.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_6_0, code);
+        if ("1.8".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_8, code);
+        if ("1.8.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._1_8_0, code);
+        if ("3.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_0, code);
+        if ("3.0.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_0_0, code);
+        if ("3.0.1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_0_1, code);
+        if ("3.0.2".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_0_2, code);
+        if ("3.3".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_3, code);
+        if ("3.3.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_3_0, code);
+        if ("3.5".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_5, code);
+        if ("3.5.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._3_5_0, code);
+        if ("4.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_0, code);
+        if ("4.0.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_0_0, code);
+        if ("4.0.1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_0_1, code);
+        if ("4.1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_1, code);
+        if ("4.1.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_1_0, code);
+        if ("4.2".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_2, code);
+        if ("4.2.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_2_0, code);
+        if ("4.3".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_3, code);
+        if ("4.3.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_3_0, code);
+        if ("4.3.0-cibuild".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_3_0CIBUILD, code);
+        if ("4.3.0-snapshot1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_3_0SNAPSHOT1, code);
+        if ("4.4".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_4, code);
+        if ("4.4.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_4_0, code);
+        if ("4.5".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_5, code);
+        if ("4.5.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_5_0, code);
+        if ("4.6".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_6, code);
+        if ("4.6.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._4_6_0, code);
+        if ("5.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0, code);
+        if ("5.0.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0, code);
+        if ("5.0.0-cibuild".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0CIBUILD, code);
+        if ("5.0.0-snapshot1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0SNAPSHOT1, code);
+        if ("5.0.0-snapshot2".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0SNAPSHOT2, code);
+        if ("5.0.0-ballot".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0BALLOT, code);
+        if ("5.0.0-snapshot3".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0SNAPSHOT3, code);
+        if ("5.0.0-draft-final".equals(codeString))
+          return new Enumeration(this, FHIRVersion._5_0_0DRAFTFINAL, code);
+        if ("6.0.0-cibuild".equals(codeString))
+          return new Enumeration(this, FHIRVersion._6_0_0CIBUILD, code);
+        if ("6.0.0".equals(codeString))
+          return new Enumeration(this, FHIRVersion._6_0_0, code);
+        if ("6.0.0-ballot1".equals(codeString))
+          return new Enumeration(this, FHIRVersion._6_0_0_BALLOT1, code);
+        if ("6.0.0-ballot2".equals(codeString))
+          return new Enumeration(this, FHIRVersion._6_0_0_BALLOT2, code);
+        throw new FHIRException("Unknown FHIRVersion code '"+codeString+"'");        
+        }
     public String toCode(FHIRVersion code) {
        if (code == FHIRVersion.NULL)
            return null;
@@ -14448,10 +14181,10 @@ public class Enumerations {
         return "4.3";
       if (code == FHIRVersion._4_3_0)
         return "4.3.0";
-      if (code == FHIRVersion._4_3_0_SNAPSHOT1)
-        return "4.3.0-snapshot1";
-      if (code == FHIRVersion._4_3_0_CIBUILD)
+      if (code == FHIRVersion._4_3_0CIBUILD)
         return "4.3.0-cibuild";
+      if (code == FHIRVersion._4_3_0SNAPSHOT1)
+        return "4.3.0-snapshot1";
       if (code == FHIRVersion._4_4)
         return "4.4";
       if (code == FHIRVersion._4_4_0)
@@ -14480,6 +14213,16 @@ public class Enumerations {
         return "5.0.0-snapshot3";
       if (code == FHIRVersion._5_0_0DRAFTFINAL)
         return "5.0.0-draft-final";
+      if (code == FHIRVersion._6_0_0CIBUILD)
+        return "6.0.0-cibuild";
+      if (code == FHIRVersion._6_0_0)
+        return "6.0.0";
+      if (code == FHIRVersion._6_0_0_BALLOT1) {
+        return "6.0.0-ballot1";
+      }
+      if (code == FHIRVersion._6_0_0_BALLOT2) {
+        return "6.0.0-ballot2";
+      }
       return "?";
    }
 
diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirLoggingInterceptor.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirLoggingInterceptor.java
index 4e2e52bb9..38d195380 100644
--- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirLoggingInterceptor.java
+++ b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirLoggingInterceptor.java
@@ -64,7 +64,7 @@ public class FhirLoggingInterceptor implements Interceptor {
     headerMap.keySet().forEach(key -> headerMap.get(key).forEach(value -> headerList.add(key + ":" + value)));
 
     if (logger != null) {
-      logger.logResponse(Integer.toString(response.code()), headerList, bodyBytes);
+      logger.logResponse(Integer.toString(response.code()), headerList, bodyBytes, 0);
     }
 
     // Reading byte[] clears body. Need to recreate.
diff --git a/org.hl7.fhir.r4b/pom.xml b/org.hl7.fhir.r4b/pom.xml
index aec9ce8e4..9005ad3e7 100644
--- a/org.hl7.fhir.r4b/pom.xml
+++ b/org.hl7.fhir.r4b/pom.xml
@@ -5,7 +5,7 @@
 	
 		ca.uhn.hapi.fhir
 		org.hl7.fhir.core
-		6.3.27-SNAPSHOT
+		6.3.30-SNAPSHOT
 		../pom.xml
 	
 
diff --git a/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/HTMLClientLogger.java b/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/HTMLClientLogger.java
index b2e7b46bd..f19553f5e 100644
--- a/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/HTMLClientLogger.java
+++ b/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/HTMLClientLogger.java
@@ -85,7 +85,7 @@ public class HTMLClientLogger extends BaseLogger implements ToolingClientLogger
   }
 
   @Override
-  public void logResponse(String outcome, List headers, byte[] body) {
+  public void logResponse(String outcome, List headers, byte[] body, long start) {
     if (DEBUG) {
       System.out.println(" txlog resp: " + outcome + " " + present(body));
     }
diff --git a/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/TextClientLogger.java b/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/TextClientLogger.java
index 3bae5583d..fa29392ae 100644
--- a/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/TextClientLogger.java
+++ b/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/context/TextClientLogger.java
@@ -72,7 +72,7 @@ public class TextClientLogger extends BaseLogger implements ToolingClientLogger
   }
 
   @Override
-  public void logResponse(String outcome, List headers, byte[] body) {
+  public void logResponse(String outcome, List headers, byte[] body, long start) {
     if (file == null)
       return;
     file.println("\r\n\r\nResponse: \r\n");
diff --git a/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/utils/client/network/FhirLoggingInterceptor.java b/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/utils/client/network/FhirLoggingInterceptor.java
index 9d2f06d7b..7a9a6a282 100644
--- a/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/utils/client/network/FhirLoggingInterceptor.java
+++ b/org.hl7.fhir.r4b/src/main/java/org/hl7/fhir/r4b/utils/client/network/FhirLoggingInterceptor.java
@@ -59,7 +59,7 @@ public class FhirLoggingInterceptor implements Interceptor {
     headerMap.keySet().forEach(key -> headerMap.get(key).forEach(value -> headerList.add(key + ":" + value)));
 
     if (logger != null) {
-      logger.logResponse(Integer.toString(response.code()), headerList, bodyBytes);
+      logger.logResponse(Integer.toString(response.code()), headerList, bodyBytes, 0);
     }
 
     // Reading byte[] clears body. Need to recreate.
diff --git a/org.hl7.fhir.r4b/src/test/java/org/hl7/fhir/r4b/utils/client/network/ClientTest.java b/org.hl7.fhir.r4b/src/test/java/org/hl7/fhir/r4b/utils/client/network/ClientTest.java
index 298c7e080..d9b35f263 100644
--- a/org.hl7.fhir.r4b/src/test/java/org/hl7/fhir/r4b/utils/client/network/ClientTest.java
+++ b/org.hl7.fhir.r4b/src/test/java/org/hl7/fhir/r4b/utils/client/network/ClientTest.java
@@ -134,6 +134,6 @@ class ClientTest {
     server.takeRequest();
     Mockito.verify(mockLogger, Mockito.times(1)).logRequest(Mockito.anyString(), Mockito.anyString(), Mockito.anyList(),
         Mockito.any());
-    Mockito.verify(mockLogger, Mockito.times(1)).logResponse(Mockito.anyString(), Mockito.anyList(), Mockito.any());
+    Mockito.verify(mockLogger, Mockito.times(1)).logResponse(Mockito.anyString(), Mockito.anyList(), Mockito.any(), Mockito.anyLong());
   }
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/pom.xml b/org.hl7.fhir.r5/pom.xml
index b196a2821..59d59a839 100644
--- a/org.hl7.fhir.r5/pom.xml
+++ b/org.hl7.fhir.r5/pom.xml
@@ -5,7 +5,7 @@
 	
 		ca.uhn.hapi.fhir
 		org.hl7.fhir.core
-		6.3.27-SNAPSHOT
+		6.3.30-SNAPSHOT
 		../pom.xml
 	
 
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/profile/ProfileUtilities.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/profile/ProfileUtilities.java
index bc8d243a2..8c3f2a3e7 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/profile/ProfileUtilities.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/profile/ProfileUtilities.java
@@ -2923,7 +2923,7 @@ public class ProfileUtilities {
 
   private ElementDefinitionBindingAdditionalComponent getMatchingAdditionalBinding(ElementDefinitionBindingComponent nb,ElementDefinitionBindingAdditionalComponent ab) {
     for (ElementDefinitionBindingAdditionalComponent t : nb.getAdditional()) {
-      if (t.getValueSet() != null && t.getValueSet().equals(ab.getValueSet()) && t.getPurpose() == ab.getPurpose()) {
+      if (t.getValueSet() != null && t.getValueSet().equals(ab.getValueSet()) && t.getPurpose() == ab.getPurpose() && !ab.hasUsage()) {
         return t;
       }
     }
@@ -4579,6 +4579,7 @@ public class ProfileUtilities {
   public void setMessages(List messages) {
     if (messages != null) {
       this.messages = messages;
+      wantThrowExceptions = false;
     }
   }
 
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/BaseWorkerContext.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/BaseWorkerContext.java
index e33cc0bfa..89dde24e0 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/BaseWorkerContext.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/BaseWorkerContext.java
@@ -1276,9 +1276,9 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
   }
   
   public ValidationResult validateCode(final ValidationOptions optionsArg, String path, final Coding code, final ValueSet vs, final ValidationContextCarrier ctxt) {
-
+  
     ValidationOptions options = optionsArg != null ? optionsArg : ValidationOptions.defaults();
-
+    
     if (code.hasSystem()) {
       codeSystemsUsed.add(code.getSystem());
     }
@@ -1303,6 +1303,9 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
       // ok, first we try to validate locally
       try {
         ValueSetValidator vsc = constructValueSetCheckerSimple(options, vs, ctxt);
+        if (vsc.getOpContext() != null) {
+          vsc.getOpContext().note("Validate "+code.toString()+" @ "+path+" against "+(vs == null ? "null" : vs.getVersionedUrl()));
+        }
         vsc.setUnknownSystems(unknownSystems);
         vsc.setThrowToServer(options.isUseServer() && terminologyClientManager.hasClient());
         if (!ValueSetUtilities.isServerSide(code.getSystem())) {
@@ -1471,15 +1474,15 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
   }
 
   protected ValueSetExpander constructValueSetExpanderSimple(ValidationOptions options) {
-    return new ValueSetExpander(this, new TerminologyOperationContext(this, options)).setDebug(logger.isDebugLogging());
+    return new ValueSetExpander(this, new TerminologyOperationContext(this, options, "expansion")).setDebug(logger.isDebugLogging());
   }
 
   protected ValueSetValidator constructValueSetCheckerSimple(ValidationOptions options,  ValueSet vs,  ValidationContextCarrier ctxt) {
-    return new ValueSetValidator(this, new TerminologyOperationContext(this, options), options, vs, ctxt, expParameters, terminologyClientManager);
+    return new ValueSetValidator(this, new TerminologyOperationContext(this, options, "validation"), options, vs, ctxt, expParameters, terminologyClientManager);
   }
 
   protected ValueSetValidator constructValueSetCheckerSimple( ValidationOptions options,  ValueSet vs) {
-    return new ValueSetValidator(this, new TerminologyOperationContext(this, options), options, vs, expParameters, terminologyClientManager);
+    return new ValueSetValidator(this, new TerminologyOperationContext(this, options, "validation"), options, vs, expParameters, terminologyClientManager);
   }
 
   protected Parameters constructParameters(TerminologyClientContext tcd, ValueSet vs, boolean hierarchical) {
@@ -1643,7 +1646,11 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
       Parameters pIn = constructParameters(options, code);
       res = validateOnServer(tc, vs, pIn, options);
     } catch (Exception e) {
-      res = new ValidationResult(IssueSeverity.ERROR, e.getMessage() == null ? e.getClass().getName() : e.getMessage(), null).setTxLink(txLog == null ? null : txLog.getLastId());
+      issues.clear();
+      OperationOutcomeIssueComponent iss = new OperationOutcomeIssueComponent(org.hl7.fhir.r5.model.OperationOutcome.IssueSeverity.ERROR, org.hl7.fhir.r5.model.OperationOutcome.IssueType.EXCEPTION);
+      iss.getDetails().setText(e.getMessage());
+      issues.add(iss);
+      res = new ValidationResult(IssueSeverity.ERROR, e.getMessage() == null ? e.getClass().getName() : e.getMessage(), issues).setTxLink(txLog == null ? null : txLog.getLastId()).setErrorClass(TerminologyServiceErrorClass.SERVER_ERROR);
     }
     if (cachingAllowed) {
       txCache.cacheValidation(cacheToken, res, TerminologyCache.PERMANENT);
@@ -1779,6 +1786,7 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
     if (options.isDisplayWarningMode()) {
       pin.addParameter("mode","lenient-display-validation");
     }
+    pin.addParameter("diagnostics", true);
   }
 
   private boolean addDependentResources(TerminologyClientContext tc, Parameters pin, ValueSet vs) {
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/HTMLClientLogger.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/HTMLClientLogger.java
index e892ab0dc..19bd73580 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/HTMLClientLogger.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/HTMLClientLogger.java
@@ -87,7 +87,7 @@ public class HTMLClientLogger extends BaseLogger implements ToolingClientLogger
   }
 
   @Override
-  public void logResponse(String outcome, List headers, byte[] body) {
+  public void logResponse(String outcome, List headers, byte[] body, long start) {
     if (DEBUG) {
       System.out.println(" txlog resp: " +outcome+" "+present(body));
     }
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/TextClientLogger.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/TextClientLogger.java
index d6fc62c0f..836f528b9 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/TextClientLogger.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/TextClientLogger.java
@@ -76,10 +76,10 @@ public class TextClientLogger extends BaseLogger implements ToolingClientLogger
   }
 
   @Override
-  public void logResponse(String outcome, List headers, byte[] body) {
+  public void logResponse(String outcome, List headers, byte[] body, long length) {
     if (file == null)
       return;
-    file.println("\r\n\r\nResponse: \r\n");
+    file.println("\r\n\r\nResponse ("+Utilities.describeDuration(length)+"): \r\n");
     file.println(outcome);
     for (String s : headers)  
       file.println(s);
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/Element.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/Element.java
index c6254b682..fffa8164a 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/Element.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/Element.java
@@ -162,6 +162,7 @@ public class Element extends Base implements NamedItem {
   private FhirFormat format;
   private Object nativeObject;
   private List sliceDefinitions;
+  private boolean elided;
 
 	public Element(String name) {
 		super();
@@ -1429,6 +1430,8 @@ public class Element extends Base implements NamedItem {
   public Base copy() {
     Element element = new Element(this);
     this.copyValues(element);
+    if (this.isElided())
+      element.setElided(true);
     return element;
   }
 
@@ -1638,4 +1641,11 @@ public class Element extends Base implements NamedItem {
     return FhirPublication.fromCode(property.getStructure().getVersion());
   }
 
+  public void setElided(boolean elided) {
+    this.elided = elided;
+  }
+
+  public boolean isElided() {
+    return this.elided;
+  }
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/JsonParser.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/JsonParser.java
index a11c0c9f1..fa64c7ada 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/JsonParser.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/JsonParser.java
@@ -62,6 +62,7 @@ import org.hl7.fhir.r5.formats.JsonCreatorDirect;
 import org.hl7.fhir.r5.model.ElementDefinition.TypeRefComponent;
 import org.hl7.fhir.r5.model.ElementDefinition;
 import org.hl7.fhir.r5.model.StructureDefinition;
+import org.hl7.fhir.r5.utils.ToolingExtensions;
 import org.hl7.fhir.utilities.CommaSeparatedStringBuilder;
 import org.hl7.fhir.utilities.StringPair;
 import org.hl7.fhir.utilities.TextFile;
@@ -85,6 +86,8 @@ public class JsonParser extends ParserBase {
 
   private JsonCreator json;
   private boolean allowComments;
+  private boolean elideElements;
+//  private boolean suppressResourceType;
 
   private Element baseElement;
   private boolean markedXhtml;
@@ -782,7 +785,8 @@ public class JsonParser extends ParserBase {
     }
     checkComposeComments(e);
     json.beginObject();
-    prop("resourceType", e.getType(), null);
+//    if (!isSuppressResourceType())
+      prop("resourceType", e.getType(), null);
     Set done = new HashSet();
     for (Element child : e.getChildren()) {
       compose(e.getName(), e, done, child);
@@ -807,7 +811,8 @@ public class JsonParser extends ParserBase {
     checkComposeComments(e);
     json.beginObject();
 
-    prop("resourceType", e.getType(), linkResolver == null ? null : linkResolver.resolveProperty(e.getProperty()));
+//    if (!isSuppressResourceType())
+      prop("resourceType", e.getType(), linkResolver == null ? null : linkResolver.resolveProperty(e.getProperty()));
     Set done = new HashSet();
     for (Element child : e.getChildren()) {
       compose(e.getName(), e, done, child);
@@ -821,15 +826,50 @@ public class JsonParser extends ParserBase {
     if (wantCompose(path, child)) {
       boolean isList = child.hasElementProperty() ? child.getElementProperty().isList() : child.getProperty().isList();
       if (!isList) {// for specials, ignore the cardinality of the stated type
-        compose(path, child);
+        if (child.isElided() && isElideElements() && json.canElide())
+          json.elide();
+        else
+          compose(path, child);
       } else if (!done.contains(child.getName())) {
         done.add(child.getName());
         List list = e.getChildrenByName(child.getName());
-        composeList(path, list);
+        if (child.getProperty().getDefinition().hasExtension(ToolingExtensions.EXT_JSON_PROP_KEY))
+          composeKeyList(path, list);
+        else
+          composeList(path, list);
       }
     }
   }
 
+  private void composeKeyList(String path, List list) throws IOException {
+    String keyName = list.get(0).getProperty().getDefinition().getExtensionString(ToolingExtensions.EXT_JSON_PROP_KEY);
+    json.name(list.get(0).getName());
+    json.beginObject();
+    for (Element e: list) {
+      Element key = null;
+      Element value = null;
+      for (Element child: e.getChildren()) {
+        if (child.getName().equals(keyName))
+          key = child;
+        else
+          value = child;
+      }
+      if (value.isPrimitive())
+        primitiveValue(key.getValue(), value);
+      else {
+        json.name(key.getValue());
+        checkComposeComments(e);
+        json.beginObject();
+        Set done = new HashSet();
+        for (Element child : value.getChildren()) {
+          compose(value.getName(), value, done, child);
+        }
+        json.endObject();
+        compose(path + "." + key.getValue(), value);
+      }
+    }
+    json.endObject();
+  }
 
   private void composeList(String path, List list) throws IOException {
     // there will be at least one element
@@ -847,7 +887,9 @@ public class JsonParser extends ParserBase {
       if (prim) {
         openArray(name, linkResolver == null ? null : linkResolver.resolveProperty(list.get(0).getProperty()));
         for (Element item : list) {
-          if (item.hasValue()) {
+          if (item.isElided() && json.canElide())
+            json.elide();
+          else if (item.hasValue()) {
             if (linkResolver != null && item.getProperty().isReference()) {
               String ref = linkResolver.resolveReference(getReferenceForElement(item));
               if (ref != null) {
@@ -866,7 +908,9 @@ public class JsonParser extends ParserBase {
       openArray(name, linkResolver == null ? null : linkResolver.resolveProperty(list.get(0).getProperty()));
       int i = 0;
       for (Element item : list) {
-        if (item.hasChildren()) {
+        if (item.isElided() && json.canElide())
+          json.elide();
+        else if (item.hasChildren()) {
           open(null,null);
           if (item.getProperty().isResource()) {
             prop("resourceType", item.getType(), linkResolver == null ? null : linkResolver.resolveType(item.getType()));
@@ -933,9 +977,10 @@ public class JsonParser extends ParserBase {
           json.externalLink(ref);
         }
       }
+
       Set done = new HashSet();
       for (Element child : element.getChildren()) {
-        compose(path+"."+element.getName(), element, done, child);
+        compose(path + "." + element.getName(), element, done, child);
       }
       close();
     }
@@ -951,5 +996,23 @@ public class JsonParser extends ParserBase {
     return this;
   }
 
+  public boolean isElideElements() {
+    return elideElements;
+  }
+
+  public JsonParser setElideElements(boolean elideElements) {
+    this.elideElements = elideElements;
+    return this;
+  }
+/*
+  public boolean isSuppressResourceType() {
+    return suppressResourceType;
+  }
+
+  public JsonParser setSuppressResourceType(boolean suppressResourceType) {
+    this.suppressResourceType = suppressResourceType;
+    return this;
+  }
+*/
 
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/XmlParser.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/XmlParser.java
index adf06a789..4669b6095 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/XmlParser.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/elementmodel/XmlParser.java
@@ -94,6 +94,7 @@ import org.xml.sax.XMLReader;
 public class XmlParser extends ParserBase {
   private boolean allowXsiLocation;
   private String version;
+  private boolean elideElements;
 
   public XmlParser(IWorkerContext context) {
     super(context);
@@ -805,92 +806,125 @@ public class XmlParser extends ParserBase {
   }
 
   private void composeElement(IXMLWriter xml, Element element, String elementName, boolean root) throws IOException, FHIRException {
-    if (showDecorations) {
-      @SuppressWarnings("unchecked")
-      List decorations = (List) element.getUserData("fhir.decorations");
-      if (decorations != null)
-        for (ElementDecoration d : decorations)
-          xml.decorate(d);
-    }
-    for (String s : element.getComments()) {
-      xml.comment(s, true);
+    if (!(isElideElements() && element.isElided())) {
+      if (showDecorations) {
+        @SuppressWarnings("unchecked")
+        List decorations = (List) element.getUserData("fhir.decorations");
+        if (decorations != null)
+          for (ElementDecoration d : decorations)
+            xml.decorate(d);
+      }
+      for (String s : element.getComments()) {
+        xml.comment(s, true);
+      }
     }
     if (isText(element.getProperty())) {
-      if (linkResolver != null)
-        xml.link(linkResolver.resolveProperty(element.getProperty()));
-      xml.enter(element.getProperty().getXmlNamespace(),elementName);
-      if (linkResolver != null && element.getProperty().isReference()) {
-        String ref = linkResolver.resolveReference(getReferenceForElement(element));
-        if (ref != null) {
-          xml.externalLink(ref);
+      if (isElideElements() && element.isElided() && xml.canElide())
+        xml.elide();
+      else {
+        if (linkResolver != null)
+          xml.link(linkResolver.resolveProperty(element.getProperty()));
+        xml.enter(element.getProperty().getXmlNamespace(),elementName);
+        if (linkResolver != null && element.getProperty().isReference()) {
+          String ref = linkResolver.resolveReference(getReferenceForElement(element));
+          if (ref != null) {
+            xml.externalLink(ref);
+          }
         }
+        xml.text(element.getValue());
+        xml.exit(element.getProperty().getXmlNamespace(),elementName);
       }
-      xml.text(element.getValue());
-      xml.exit(element.getProperty().getXmlNamespace(),elementName);   
     } else if (!element.hasChildren() && !element.hasValue()) {
-      if (element.getExplicitType() != null)
-        xml.attribute("xsi:type", element.getExplicitType());
-      xml.element(elementName);
+      if (isElideElements() && element.isElided() && xml.canElide())
+        xml.elide();
+      else {
+        if (element.getExplicitType() != null)
+          xml.attribute("xsi:type", element.getExplicitType());
+        xml.element(elementName);
+      }
     } else if (element.isPrimitive() || (element.hasType() && isPrimitive(element.getType()))) {
       if (element.getType().equals("xhtml")) {
-        String rawXhtml = element.getValue();
-        if (isCdaText(element.getProperty())) {
-          new CDANarrativeFormat().convert(xml, new XhtmlParser().parseFragment(rawXhtml));
-        } else {
-          xml.escapedText(rawXhtml);
-          if (!markedXhtml) {
-            xml.anchor("end-xhtml");
-            markedXhtml = true;
+        if (isElideElements() && element.isElided() && xml.canElide())
+          xml.elide();
+        else {
+          String rawXhtml = element.getValue();
+          if (isCdaText(element.getProperty())) {
+            new CDANarrativeFormat().convert(xml, new XhtmlParser().parseFragment(rawXhtml));
+          } else {
+            xml.escapedText(rawXhtml);
+            if (!markedXhtml) {
+              xml.anchor("end-xhtml");
+              markedXhtml = true;
+            }
           }
         }
       } else if (isText(element.getProperty())) {
-        if (linkResolver != null)
-          xml.link(linkResolver.resolveProperty(element.getProperty()));
-        xml.text(element.getValue());
-      } else {
-        setXsiTypeIfIsTypeAttr(xml, element);
-        if (element.hasValue()) {
+        if (isElideElements() && element.isElided() && xml.canElide())
+          xml.elide();
+        else {
           if (linkResolver != null)
-            xml.link(linkResolver.resolveType(element.getType()));
-          xml.attribute("value", element.getValue());
+            xml.link(linkResolver.resolveProperty(element.getProperty()));
+          xml.text(element.getValue());
         }
-        if (linkResolver != null)
-          xml.link(linkResolver.resolveProperty(element.getProperty()));
-        if (element.hasChildren()) {
-          xml.enter(element.getProperty().getXmlNamespace(), elementName);
-          if (linkResolver != null && element.getProperty().isReference()) {
-            String ref = linkResolver.resolveReference(getReferenceForElement(element));
-            if (ref != null) {
-              xml.externalLink(ref);
-            }
+      } else {
+        if (isElideElements() && element.isElided())
+          xml.attributeElide();
+        else {
+          setXsiTypeIfIsTypeAttr(xml, element);
+          if (element.hasValue()) {
+            if (linkResolver != null)
+              xml.link(linkResolver.resolveType(element.getType()));
+            xml.attribute("value", element.getValue());
           }
-          for (Element child : element.getChildren()) 
-            composeElement(xml, child, child.getName(), false);
-          xml.exit(element.getProperty().getXmlNamespace(),elementName);
-        } else
-          xml.element(elementName);
+          if (linkResolver != null)
+            xml.link(linkResolver.resolveProperty(element.getProperty()));
+          if (element.hasChildren()) {
+            xml.enter(element.getProperty().getXmlNamespace(), elementName);
+            if (linkResolver != null && element.getProperty().isReference()) {
+              String ref = linkResolver.resolveReference(getReferenceForElement(element));
+              if (ref != null) {
+                xml.externalLink(ref);
+              }
+            }
+            for (Element child : element.getChildren())
+              composeElement(xml, child, child.getName(), false);
+            xml.exit(element.getProperty().getXmlNamespace(),elementName);
+          } else
+            xml.element(elementName);
+        }
       }
     } else {
-      setXsiTypeIfIsTypeAttr(xml, element);
-      Set handled = new HashSet<>();
+      if (isElideElements() && element.isElided() && xml.canElide())
+        xml.elide();
+      else {
+        setXsiTypeIfIsTypeAttr(xml, element);
+        Set handled = new HashSet<>();
       for (Element child : element.getChildren()) {
         if (!handled.contains(child.getName()) && isAttr(child.getProperty()) && wantCompose(element.getPath(), child)) {
           handled.add(child.getName());
-          String av = child.getValue();
-          if (child.getProperty().isList()) {
-            for (Element c2 : element.getChildren()) {
-              if (c2 != child && c2.getName().equals(child.getName())) {
-                av = av + " "+c2.getValue();
+          if (isElideElements() && child.isElided())
+            xml.attributeElide();
+          else {
+            String av = child.getValue();
+            if (child.getProperty().isList()) {
+              for (Element c2 : element.getChildren()) {
+                if (c2 != child && c2.getName().equals(child.getName())) {
+                  if (c2.isElided())
+                    av = av + " ...";
+                  else
+                    av = av + " " + c2.getValue();
+                }
               }
-            }            
+            }
+            if (linkResolver != null)
+              xml.link(linkResolver.resolveType(child.getType()));
+            if (ToolingExtensions.hasExtension(child.getProperty().getDefinition(), ToolingExtensions.EXT_DATE_FORMAT))
+              av = convertForDateFormatToExternal(ToolingExtensions.readStringExtension(child.getProperty().getDefinition(), ToolingExtensions.EXT_DATE_FORMAT), av);
+            xml.attribute(child.getProperty().getXmlNamespace(), child.getProperty().getXmlName(), av);
           }
-          if (linkResolver != null)
-            xml.link(linkResolver.resolveType(child.getType()));
-          if (ToolingExtensions.hasExtension(child.getProperty().getDefinition(), ToolingExtensions.EXT_DATE_FORMAT))
-            av = convertForDateFormatToExternal(ToolingExtensions.readStringExtension(child.getProperty().getDefinition(), ToolingExtensions.EXT_DATE_FORMAT), av);
-          xml.attribute(child.getProperty().getXmlNamespace(),child.getProperty().getXmlName(), av);
         }
       }
+      }
       if (!element.getProperty().getDefinition().hasExtension(ToolingExtensions.EXT_ID_CHOICE_GROUP)) {
         if (linkResolver != null)
           xml.link(linkResolver.resolveProperty(element.getProperty()));
@@ -914,12 +948,16 @@ public class XmlParser extends ParserBase {
       }
       for (Element child : element.getChildren()) {
         if (wantCompose(element.getPath(), child)) {
-          if (isText(child.getProperty())) {
-            if (linkResolver != null)
-              xml.link(linkResolver.resolveProperty(element.getProperty()));
-            xml.text(child.getValue());
-          } else if (!isAttr(child.getProperty())) {
-            composeElement(xml, child, child.getName(), false);
+          if (isElideElements() && child.isElided() && xml.canElide())
+            xml.elide();
+          else {
+            if (isText(child.getProperty())) {
+              if (linkResolver != null)
+                xml.link(linkResolver.resolveProperty(element.getProperty()));
+              xml.text(child.getValue());
+            } else if (!isAttr(child.getProperty())) {
+              composeElement(xml, child, child.getName(), false);
+            }
           }
         }
       }
@@ -1034,4 +1072,13 @@ public class XmlParser extends ParserBase {
       // do nothing
     }
   }
+
+  public boolean isElideElements() {
+    return elideElements;
+  }
+
+  public void setElideElements(boolean elideElements) {
+    this.elideElements = elideElements;
+  }
+
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreator.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreator.java
index 0d4b0cf27..84c46ce0c 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreator.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreator.java
@@ -1,5 +1,5 @@
-package org.hl7.fhir.r5.formats;
-
+package org.hl7.fhir.r5.formats;
+
 /*
   Copyright (c) 2011+, HL7, Inc.
   All rights reserved.
@@ -28,47 +28,49 @@ package org.hl7.fhir.r5.formats;
   POSSIBILITY OF SUCH DAMAGE.
   
  */
-
-
-
-import java.io.IOException;
-import java.math.BigDecimal;
-
-/**
- * Facade to GSON writer, or something that imposes property ordering first
- * 
- * @author Grahame
- *
- */
-public interface JsonCreator {
-
-  void comment(String comment);
-  
-  void beginObject() throws IOException;
-
-  void endObject() throws IOException;
-
-  void nullValue() throws IOException;
-
-  void name(String name) throws IOException;
-
-  void value(String value) throws IOException;
-
-  void value(Boolean value) throws IOException;
-
-  void value(BigDecimal value) throws IOException;
-  void valueNum(String value) throws IOException; // allow full control of representation
-
-  void value(Integer value) throws IOException;
-
-  void beginArray() throws IOException;
-
-  void endArray() throws IOException;
-
-  void finish() throws IOException;
-
-  // only used by an creator that actually produces xhtml
-  void link(String href);
-  void anchor(String string);
-  void externalLink(String string);
+
+
+
+import java.io.IOException;
+import java.math.BigDecimal;
+
+/**
+ * Facade to GSON writer, or something that imposes property ordering first
+ * 
+ * @author Grahame
+ *
+ */
+public interface JsonCreator {
+
+  void comment(String comment);
+  
+  void beginObject() throws IOException;
+
+  void endObject() throws IOException;
+
+  void nullValue() throws IOException;
+
+  void name(String name) throws IOException;
+
+  void value(String value) throws IOException;
+
+  void value(Boolean value) throws IOException;
+
+  void value(BigDecimal value) throws IOException;
+  void valueNum(String value) throws IOException; // allow full control of representation
+
+  void value(Integer value) throws IOException;
+
+  void beginArray() throws IOException;
+
+  void endArray() throws IOException;
+
+  void finish() throws IOException;
+
+  // only used by an creator that actually produces xhtml
+  void link(String href);
+  void anchor(String string);
+  void externalLink(String string);
+  void elide();
+  boolean canElide();
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorCanonical.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorCanonical.java
index 66acfeff6..426e9cb0e 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorCanonical.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorCanonical.java
@@ -1,5 +1,5 @@
-package org.hl7.fhir.r5.formats;
-
+package org.hl7.fhir.r5.formats;
+
 /*
   Copyright (c) 2011+, HL7, Inc.
   All rights reserved.
@@ -28,257 +28,264 @@ package org.hl7.fhir.r5.formats;
   POSSIBILITY OF SUCH DAMAGE.
   
  */
-
-
-
-import java.io.IOException;
-import java.io.OutputStreamWriter;
-import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-import java.util.Stack;
-
-public class JsonCreatorCanonical implements JsonCreator {
-
-  public class JsonCanValue {
-    String name;
-    private JsonCanValue(String name) {
-      this.name = name;  
-   }
-  }
-
-  private class JsonCanNumberValue extends JsonCanValue {
-    private BigDecimal value;
-    private JsonCanNumberValue(String name, BigDecimal value) {
-      super(name);
-      this.value = value;  
-    }
-  }
-
-  private class JsonCanPresentedNumberValue extends JsonCanValue {
-    private String value;
-    private JsonCanPresentedNumberValue(String name, String value) {
-      super(name);
-      this.value = value;  
-    }
-  }
-
-  private class JsonCanIntegerValue extends JsonCanValue {
-    private Integer value;
-    private JsonCanIntegerValue(String name, Integer value) {
-      super(name);
-      this.value = value;  
-    }
-  }
-
-  private class JsonCanBooleanValue extends JsonCanValue  {
-    private Boolean value;
-    private JsonCanBooleanValue(String name, Boolean value) {
-      super(name);
-      this.value = value;  
-    }
-  }
-
-  private class JsonCanStringValue extends JsonCanValue {
-    private String value;
-    private JsonCanStringValue(String name, String value) {
-      super(name);
-      this.value = value;  
-    }
-  }
-
-  private class JsonCanNullValue extends JsonCanValue  {
-    private JsonCanNullValue(String name) {
-      super(name);
-    }
-  }
-
-  public class JsonCanObject extends JsonCanValue {
-
-    boolean array;
-    List children = new ArrayList();
-    
-    public JsonCanObject(String name, boolean array) {
-      super(name);
-      this.array = array;
-    }
-
-    public void addProp(JsonCanValue obj) {
-      children.add(obj);
-    }
-  }
-
-  Stack stack;
-  JsonCanObject root; 
-  JsonCreatorDirect jj;
-  String name;
-  
-  public JsonCreatorCanonical(OutputStreamWriter osw) {
-    stack = new Stack();
-    jj = new JsonCreatorDirect(osw, false, false);
-    name = null;
-  }
-
-  private String takeName() {
-    String res = name;
-    name = null;
-    return res;
-  }
-
-  @Override
-  public void beginObject() throws IOException {
-    JsonCanObject obj = new JsonCanObject(takeName(), false);
-    if (stack.isEmpty())
-      root = obj;
-    else
-      stack.peek().addProp(obj);
-    stack.push(obj);
-  }
-
-  @Override
-  public void endObject() throws IOException {
-    stack.pop();
-  }
-
-  @Override
-  public void nullValue() throws IOException {
-    stack.peek().addProp(new JsonCanNullValue(takeName()));
-  }
-
-  @Override
-  public void name(String name) throws IOException {
-    this.name = name;
-  }
-
-  @Override
-  public void value(String value) throws IOException {
-    stack.peek().addProp(new JsonCanStringValue(takeName(), value));    
-  }
-
-  @Override
-  public void value(Boolean value) throws IOException {
-    stack.peek().addProp(new JsonCanBooleanValue(takeName(), value));    
-  }
-
-  @Override
-  public void value(BigDecimal value) throws IOException {
-    stack.peek().addProp(new JsonCanNumberValue(takeName(), value));    
-  }
-  @Override
-  public void valueNum(String value) throws IOException {
-    stack.peek().addProp(new JsonCanPresentedNumberValue(takeName(), value));    
-  }
-
-
-  @Override
-  public void value(Integer value) throws IOException {
-    stack.peek().addProp(new JsonCanIntegerValue(takeName(), value));    
-  }
-
-  @Override
-  public void beginArray() throws IOException {
-    JsonCanObject obj = new JsonCanObject(takeName(), true);
-    if (!stack.isEmpty())
-      stack.peek().addProp(obj);
-    stack.push(obj);
-    
-  }
-
-  @Override
-  public void endArray() throws IOException {
-    stack.pop();    
-  }
-
-  @Override
-  public void finish() throws IOException {
-    writeObject(root);
-  }
-
-  private void writeObject(JsonCanObject obj) throws IOException {
-    jj.beginObject();
-    List names = new ArrayList();
-    for (JsonCanValue v : obj.children) 
-      names.add(v.name);
-    Collections.sort(names);
-    for (String n : names) {
-      jj.name(n);
-      JsonCanValue v = getPropForName(n, obj.children);
-      if (v instanceof JsonCanNumberValue)
-        jj.value(((JsonCanNumberValue) v).value);
-      else if (v instanceof JsonCanPresentedNumberValue)
-        jj.valueNum(((JsonCanPresentedNumberValue) v).value);
-      else if (v instanceof JsonCanIntegerValue)
-        jj.value(((JsonCanIntegerValue) v).value);
-      else if (v instanceof JsonCanBooleanValue)
-        jj.value(((JsonCanBooleanValue) v).value);
-      else if (v instanceof JsonCanStringValue)
-        jj.value(((JsonCanStringValue) v).value);
-      else if (v instanceof JsonCanNullValue)
-        jj.nullValue();
-      else if (v instanceof JsonCanObject) {
-        JsonCanObject o = (JsonCanObject) v;
-        if (o.array) 
-          writeArray(o);
-        else
-          writeObject(o);
-      } else
-        throw new Error("not possible");
-    }
-    jj.endObject();
-  }
-
-  private JsonCanValue getPropForName(String name, List children) {
-    for (JsonCanValue child : children)
-      if (child.name.equals(name))
-        return child;
-    return null;
-  }
-
-  private void writeArray(JsonCanObject arr) throws IOException {
-    jj.beginArray();
-    for (JsonCanValue v : arr.children) { 
-      if (v instanceof JsonCanNumberValue)
-        jj.value(((JsonCanNumberValue) v).value);
-      else if (v instanceof JsonCanIntegerValue)
-          jj.value(((JsonCanIntegerValue) v).value);
-      else if (v instanceof JsonCanBooleanValue)
-        jj.value(((JsonCanBooleanValue) v).value);
-      else if (v instanceof JsonCanStringValue)
-        jj.value(((JsonCanStringValue) v).value);
-      else if (v instanceof JsonCanNullValue)
-        jj.nullValue();
-      else if (v instanceof JsonCanObject) {
-        JsonCanObject o = (JsonCanObject) v;
-        if (o.array) 
-          writeArray(o);
-        else
-          writeObject(o);
-      } else
-        throw new Error("not possible");
-    }
-    jj.endArray();    
-  }
-
-  @Override
-  public void comment(String content) {
-    // canonical JSON ignores comments    
-  }
-
-  @Override
-  public void link(String href) {
-    // not used
-  }
-       
-  @Override
-  public void anchor(String name) {
-    // not used
-  }
-
-  @Override
-  public void externalLink(String string) {
-    // not used
-  }
-       
-    
+
+
+
+import java.io.IOException;
+import java.io.OutputStreamWriter;
+import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+import java.util.Stack;
+
+public class JsonCreatorCanonical implements JsonCreator {
+
+  public class JsonCanValue {
+    String name;
+    private JsonCanValue(String name) {
+      this.name = name;  
+   }
+  }
+
+  private class JsonCanNumberValue extends JsonCanValue {
+    private BigDecimal value;
+    private JsonCanNumberValue(String name, BigDecimal value) {
+      super(name);
+      this.value = value;  
+    }
+  }
+
+  private class JsonCanPresentedNumberValue extends JsonCanValue {
+    private String value;
+    private JsonCanPresentedNumberValue(String name, String value) {
+      super(name);
+      this.value = value;  
+    }
+  }
+
+  private class JsonCanIntegerValue extends JsonCanValue {
+    private Integer value;
+    private JsonCanIntegerValue(String name, Integer value) {
+      super(name);
+      this.value = value;  
+    }
+  }
+
+  private class JsonCanBooleanValue extends JsonCanValue  {
+    private Boolean value;
+    private JsonCanBooleanValue(String name, Boolean value) {
+      super(name);
+      this.value = value;  
+    }
+  }
+
+  private class JsonCanStringValue extends JsonCanValue {
+    private String value;
+    private JsonCanStringValue(String name, String value) {
+      super(name);
+      this.value = value;  
+    }
+  }
+
+  private class JsonCanNullValue extends JsonCanValue  {
+    private JsonCanNullValue(String name) {
+      super(name);
+    }
+  }
+
+  public class JsonCanObject extends JsonCanValue {
+
+    boolean array;
+    List children = new ArrayList();
+    
+    public JsonCanObject(String name, boolean array) {
+      super(name);
+      this.array = array;
+    }
+
+    public void addProp(JsonCanValue obj) {
+      children.add(obj);
+    }
+  }
+
+  Stack stack;
+  JsonCanObject root; 
+  JsonCreatorDirect jj;
+  String name;
+  
+  public JsonCreatorCanonical(OutputStreamWriter osw) {
+    stack = new Stack();
+    jj = new JsonCreatorDirect(osw, false, false);
+    name = null;
+  }
+
+  private String takeName() {
+    String res = name;
+    name = null;
+    return res;
+  }
+
+  @Override
+  public void beginObject() throws IOException {
+    JsonCanObject obj = new JsonCanObject(takeName(), false);
+    if (stack.isEmpty())
+      root = obj;
+    else
+      stack.peek().addProp(obj);
+    stack.push(obj);
+  }
+
+  @Override
+  public void endObject() throws IOException {
+    stack.pop();
+  }
+
+  @Override
+  public void nullValue() throws IOException {
+    stack.peek().addProp(new JsonCanNullValue(takeName()));
+  }
+
+  @Override
+  public void name(String name) throws IOException {
+    this.name = name;
+  }
+
+  @Override
+  public void value(String value) throws IOException {
+    stack.peek().addProp(new JsonCanStringValue(takeName(), value));    
+  }
+
+  @Override
+  public void value(Boolean value) throws IOException {
+    stack.peek().addProp(new JsonCanBooleanValue(takeName(), value));    
+  }
+
+  @Override
+  public void value(BigDecimal value) throws IOException {
+    stack.peek().addProp(new JsonCanNumberValue(takeName(), value));    
+  }
+  @Override
+  public void valueNum(String value) throws IOException {
+    stack.peek().addProp(new JsonCanPresentedNumberValue(takeName(), value));    
+  }
+
+
+  @Override
+  public void value(Integer value) throws IOException {
+    stack.peek().addProp(new JsonCanIntegerValue(takeName(), value));    
+  }
+
+  @Override
+  public void beginArray() throws IOException {
+    JsonCanObject obj = new JsonCanObject(takeName(), true);
+    if (!stack.isEmpty())
+      stack.peek().addProp(obj);
+    stack.push(obj);
+    
+  }
+
+  @Override
+  public void endArray() throws IOException {
+    stack.pop();    
+  }
+
+  @Override
+  public void finish() throws IOException {
+    writeObject(root);
+  }
+
+  private void writeObject(JsonCanObject obj) throws IOException {
+    jj.beginObject();
+    List names = new ArrayList();
+    for (JsonCanValue v : obj.children) 
+      names.add(v.name);
+    Collections.sort(names);
+    for (String n : names) {
+      jj.name(n);
+      JsonCanValue v = getPropForName(n, obj.children);
+      if (v instanceof JsonCanNumberValue)
+        jj.value(((JsonCanNumberValue) v).value);
+      else if (v instanceof JsonCanPresentedNumberValue)
+        jj.valueNum(((JsonCanPresentedNumberValue) v).value);
+      else if (v instanceof JsonCanIntegerValue)
+        jj.value(((JsonCanIntegerValue) v).value);
+      else if (v instanceof JsonCanBooleanValue)
+        jj.value(((JsonCanBooleanValue) v).value);
+      else if (v instanceof JsonCanStringValue)
+        jj.value(((JsonCanStringValue) v).value);
+      else if (v instanceof JsonCanNullValue)
+        jj.nullValue();
+      else if (v instanceof JsonCanObject) {
+        JsonCanObject o = (JsonCanObject) v;
+        if (o.array) 
+          writeArray(o);
+        else
+          writeObject(o);
+      } else
+        throw new Error("not possible");
+    }
+    jj.endObject();
+  }
+
+  private JsonCanValue getPropForName(String name, List children) {
+    for (JsonCanValue child : children)
+      if (child.name.equals(name))
+        return child;
+    return null;
+  }
+
+  private void writeArray(JsonCanObject arr) throws IOException {
+    jj.beginArray();
+    for (JsonCanValue v : arr.children) { 
+      if (v instanceof JsonCanNumberValue)
+        jj.value(((JsonCanNumberValue) v).value);
+      else if (v instanceof JsonCanIntegerValue)
+          jj.value(((JsonCanIntegerValue) v).value);
+      else if (v instanceof JsonCanBooleanValue)
+        jj.value(((JsonCanBooleanValue) v).value);
+      else if (v instanceof JsonCanStringValue)
+        jj.value(((JsonCanStringValue) v).value);
+      else if (v instanceof JsonCanNullValue)
+        jj.nullValue();
+      else if (v instanceof JsonCanObject) {
+        JsonCanObject o = (JsonCanObject) v;
+        if (o.array) 
+          writeArray(o);
+        else
+          writeObject(o);
+      } else
+        throw new Error("not possible");
+    }
+    jj.endArray();    
+  }
+
+  @Override
+  public void comment(String content) {
+    // canonical JSON ignores comments    
+  }
+
+  @Override
+  public void link(String href) {
+    // not used
+  }
+       
+  @Override
+  public void anchor(String name) {
+    // not used
+  }
+
+  @Override
+  public void externalLink(String string) {
+    // not used
+  }
+
+  @Override
+  public boolean canElide() { return false; }
+
+  @Override
+  public void elide() {
+    // not used
+  }
+
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorDirect.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorDirect.java
index 019f505e3..41ac714c9 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorDirect.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorDirect.java
@@ -1,5 +1,5 @@
-package org.hl7.fhir.r5.formats;
-
+package org.hl7.fhir.r5.formats;
+
 /*
   Copyright (c) 2011+, HL7, Inc.
   All rights reserved.
@@ -28,219 +28,227 @@ package org.hl7.fhir.r5.formats;
   POSSIBILITY OF SUCH DAMAGE.
   
  */
-
-
-
-import java.io.IOException;
-import java.io.Writer;
-import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.hl7.fhir.utilities.Utilities;
-
-/**
- * A little implementation of a json write to replace Gson .... because Gson screws up decimal values, and *we care*
- * 
- * @author Grahame Grieve
- *
- */
-public class JsonCreatorDirect implements JsonCreator {
-
-  private Writer writer;
-  private boolean pretty;
-  private boolean comments;
-  private boolean named;
-  private List valued = new ArrayList();
-  private int indent;
-  private List commentList = new ArrayList<>(); 
-  
-  public JsonCreatorDirect(Writer writer, boolean pretty, boolean comments) {
-    super();
-    this.writer = writer;
-    this.pretty = pretty;
-    this.comments = pretty && comments;
-  }
-
-  @Override
-  public void comment(String content) {
-    if (comments) {
-      commentList.add(content);
-    }
-  }
-
-  @Override
-  public void beginObject() throws IOException {
-    checkState();
-    writer.write("{");
-    stepIn();
-    if (!valued.isEmpty()) {
-      valued.set(0, true);      
-    }
-    valued.add(0, false);
-  }
-
-  private void commitComments() throws IOException {
-    if (comments) {
-      for (String s : commentList) {
-        writer.write("// ");
-        writer.write(s);
-        writer.write("\r\n");
-        for (int i = 0; i < indent; i++) {
-          writer.write("  ");
-        }
-      }
-      commentList.clear();
-    }
-  }
-
-
-  public void stepIn() throws IOException {
-    if (pretty) {
-      indent++;
-      writer.write("\r\n");
-      for (int i = 0; i < indent; i++) {
-        writer.write("  ");
-      }
-    }
-  }
-
-  public void stepOut() throws IOException {
-    if (pretty) {
-      indent--;
-      writer.write("\r\n");
-      for (int i = 0; i < indent; i++) {
-        writer.write("  ");
-      }
-    }
-  }
-
-  private void checkState() throws IOException {
-    commitComments();
-    if (named) {
-      if (pretty)
-        writer.write(" : ");
-      else
-        writer.write(":");
-      named = false;
-    }
-    if (!valued.isEmpty() && valued.get(0)) {
-      writer.write(",");
-      if (pretty) {
-        writer.write("\r\n");
-        for (int i = 0; i < indent; i++) {
-          writer.write("  ");
-        }        
-      }
-      valued.set(0, false);
-    }
-  }
-
-  @Override
-  public void endObject() throws IOException {
-    stepOut();
-    writer.write("}");    
-    valued.remove(0);
-  }
-
-  @Override
-  public void nullValue() throws IOException {
-    checkState();
-    writer.write("null");
-    valued.set(0, true);
-  }
-
-  @Override
-  public void name(String name) throws IOException {
-    checkState();
-    writer.write("\""+name+"\"");
-    named = true;
-  }
-
-  @Override
-  public void value(String value) throws IOException {
-    checkState();
-    writer.write("\""+Utilities.escapeJson(value)+"\"");    
-    valued.set(0, true);
-  }
-
-  @Override
-  public void value(Boolean value) throws IOException {
-    checkState();
-    if (value == null)
-      writer.write("null");
-    else if (value.booleanValue())
-      writer.write("true");
-    else
-      writer.write("false");
-    valued.set(0, true);
-  }
-
-  @Override
-  public void value(BigDecimal value) throws IOException {
-    checkState();
-    if (value == null)
-      writer.write("null");
-    else 
-      writer.write(value.toString());    
-    valued.set(0, true);
-  }
-
-  @Override
-  public void valueNum(String value) throws IOException {
-    checkState();
-    if (value == null)
-      writer.write("null");
-    else 
-      writer.write(value);    
-    valued.set(0, true);
-  }
-
-  @Override
-  public void value(Integer value) throws IOException {
-    checkState();
-    if (value == null)
-      writer.write("null");
-    else 
-      writer.write(value.toString());    
-    valued.set(0, true);
-  }
-
-  @Override
-  public void beginArray() throws IOException {
-    checkState();
-    writer.write("[");    
-    if (!valued.isEmpty()) {
-      valued.set(0, true);      
-    }
-    valued.add(0, false);
-  }
-
-  @Override
-  public void endArray() throws IOException {
-    writer.write("]");        
-    valued.remove(0);
-  }
-
-  @Override
-  public void finish() throws IOException {
-    writer.flush();
-  }
-
-  @Override
-  public void link(String href) {
-    // not used
-    
-  }
-
-  @Override
-  public void anchor(String name) {
-    // not used
-  }
-       
-
-  @Override
-  public void externalLink(String string) {
-    // not used
-  }
+
+
+
+import java.io.IOException;
+import java.io.Writer;
+import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.hl7.fhir.utilities.Utilities;
+
+/**
+ * A little implementation of a json write to replace Gson .... because Gson screws up decimal values, and *we care*
+ * 
+ * @author Grahame Grieve
+ *
+ */
+public class JsonCreatorDirect implements JsonCreator {
+
+  private Writer writer;
+  private boolean pretty;
+  private boolean comments;
+  private boolean named;
+  private List valued = new ArrayList();
+  private int indent;
+  private List commentList = new ArrayList<>(); 
+  
+  public JsonCreatorDirect(Writer writer, boolean pretty, boolean comments) {
+    super();
+    this.writer = writer;
+    this.pretty = pretty;
+    this.comments = pretty && comments;
+  }
+
+  @Override
+  public void comment(String content) {
+    if (comments) {
+      commentList.add(content);
+    }
+  }
+
+  @Override
+  public void beginObject() throws IOException {
+    checkState();
+    writer.write("{");
+    stepIn();
+    if (!valued.isEmpty()) {
+      valued.set(0, true);      
+    }
+    valued.add(0, false);
+  }
+
+  private void commitComments() throws IOException {
+    if (comments) {
+      for (String s : commentList) {
+        writer.write("// ");
+        writer.write(s);
+        writer.write("\r\n");
+        for (int i = 0; i < indent; i++) {
+          writer.write("  ");
+        }
+      }
+      commentList.clear();
+    }
+  }
+
+
+  public void stepIn() throws IOException {
+    if (pretty) {
+      indent++;
+      writer.write("\r\n");
+      for (int i = 0; i < indent; i++) {
+        writer.write("  ");
+      }
+    }
+  }
+
+  public void stepOut() throws IOException {
+    if (pretty) {
+      indent--;
+      writer.write("\r\n");
+      for (int i = 0; i < indent; i++) {
+        writer.write("  ");
+      }
+    }
+  }
+
+  private void checkState() throws IOException {
+    commitComments();
+    if (named) {
+      if (pretty)
+        writer.write(" : ");
+      else
+        writer.write(":");
+      named = false;
+    }
+    if (!valued.isEmpty() && valued.get(0)) {
+      writer.write(",");
+      if (pretty) {
+        writer.write("\r\n");
+        for (int i = 0; i < indent; i++) {
+          writer.write("  ");
+        }        
+      }
+      valued.set(0, false);
+    }
+  }
+
+  @Override
+  public void endObject() throws IOException {
+    stepOut();
+    writer.write("}");    
+    valued.remove(0);
+  }
+
+  @Override
+  public void nullValue() throws IOException {
+    checkState();
+    writer.write("null");
+    valued.set(0, true);
+  }
+
+  @Override
+  public void name(String name) throws IOException {
+    checkState();
+    writer.write("\""+name+"\"");
+    named = true;
+  }
+
+  @Override
+  public void value(String value) throws IOException {
+    checkState();
+    writer.write("\""+Utilities.escapeJson(value)+"\"");    
+    valued.set(0, true);
+  }
+
+  @Override
+  public void value(Boolean value) throws IOException {
+    checkState();
+    if (value == null)
+      writer.write("null");
+    else if (value.booleanValue())
+      writer.write("true");
+    else
+      writer.write("false");
+    valued.set(0, true);
+  }
+
+  @Override
+  public void value(BigDecimal value) throws IOException {
+    checkState();
+    if (value == null)
+      writer.write("null");
+    else 
+      writer.write(value.toString());    
+    valued.set(0, true);
+  }
+
+  @Override
+  public void valueNum(String value) throws IOException {
+    checkState();
+    if (value == null)
+      writer.write("null");
+    else 
+      writer.write(value);    
+    valued.set(0, true);
+  }
+
+  @Override
+  public void value(Integer value) throws IOException {
+    checkState();
+    if (value == null)
+      writer.write("null");
+    else 
+      writer.write(value.toString());    
+    valued.set(0, true);
+  }
+
+  @Override
+  public void beginArray() throws IOException {
+    checkState();
+    writer.write("[");    
+    if (!valued.isEmpty()) {
+      valued.set(0, true);      
+    }
+    valued.add(0, false);
+  }
+
+  @Override
+  public void endArray() throws IOException {
+    writer.write("]");        
+    valued.remove(0);
+  }
+
+  @Override
+  public void finish() throws IOException {
+    writer.flush();
+  }
+
+  @Override
+  public void link(String href) {
+    // not used
+    
+  }
+
+  @Override
+  public void anchor(String name) {
+    // not used
+  }
+       
+
+  @Override
+  public void externalLink(String string) {
+    // not used
+  }
+
+  @Override
+  public boolean canElide() { return false; }
+
+  @Override
+  public void elide() {
+    // not used
+  }
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorGson.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorGson.java
index d93669b2a..14c76b0cd 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorGson.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/formats/JsonCreatorGson.java
@@ -1,5 +1,5 @@
-package org.hl7.fhir.r5.formats;
-
+package org.hl7.fhir.r5.formats;
+
 /*
   Copyright (c) 2011+, HL7, Inc.
   All rights reserved.
@@ -28,103 +28,111 @@ package org.hl7.fhir.r5.formats;
   POSSIBILITY OF SUCH DAMAGE.
   
  */
-
-
-
-import java.io.IOException;
-import java.io.OutputStreamWriter;
-import java.math.BigDecimal;
-
-import com.google.gson.stream.JsonWriter;
-
-public class JsonCreatorGson implements JsonCreator {
-
-  JsonWriter gson;
-  
-  public JsonCreatorGson(OutputStreamWriter osw) {
-    gson = new JsonWriter(osw);
-  }
-
-  @Override
-  public void beginObject() throws IOException {
-    gson.beginObject();    
-  }
-
-  @Override
-  public void endObject() throws IOException {
-    gson.endObject();
-  }
-
-  @Override
-  public void nullValue() throws IOException {
-    gson.nullValue();
-  }
-
-  @Override
-  public void name(String name) throws IOException {
-    gson.name(name);
-  }
-
-  @Override
-  public void value(String value) throws IOException {
-    gson.value(value);
-  }
-
-  @Override
-  public void value(Boolean value) throws IOException {
-    gson.value(value);
-  }
-
-  @Override
-  public void value(BigDecimal value) throws IOException {
-    gson.value(value);
-  }
-
-  @Override
-  public void value(Integer value) throws IOException {
-    gson.value(value);
-  }
-
-  @Override
-  public void beginArray() throws IOException {
-    gson.beginArray();
-  }
-
-  @Override
-  public void endArray() throws IOException {
-    gson.endArray();
-  }
-
-  @Override
-  public void finish() {
-    // nothing to do here
-    
-  }
-
-  @Override
-  public void link(String href) {
-    // not used
-  }
-
-  @Override
-  public void valueNum(String value) throws IOException {
-    value(new BigDecimal(value));    
-  }
-
-  @Override
-  public void anchor(String name) {
-    // not used
-  }
-
-  @Override
-  public void comment(String content) {
-     // gson (dense json) ignores comments
-  }
-  
-
-  @Override
-  public void externalLink(String string) {
-    // not used
-  }
-       
+
+
+
+import java.io.IOException;
+import java.io.OutputStreamWriter;
+import java.math.BigDecimal;
+
+import com.google.gson.stream.JsonWriter;
+
+public class JsonCreatorGson implements JsonCreator {
+
+  JsonWriter gson;
+  
+  public JsonCreatorGson(OutputStreamWriter osw) {
+    gson = new JsonWriter(osw);
+  }
+
+  @Override
+  public void beginObject() throws IOException {
+    gson.beginObject();    
+  }
+
+  @Override
+  public void endObject() throws IOException {
+    gson.endObject();
+  }
+
+  @Override
+  public void nullValue() throws IOException {
+    gson.nullValue();
+  }
+
+  @Override
+  public void name(String name) throws IOException {
+    gson.name(name);
+  }
+
+  @Override
+  public void value(String value) throws IOException {
+    gson.value(value);
+  }
+
+  @Override
+  public void value(Boolean value) throws IOException {
+    gson.value(value);
+  }
+
+  @Override
+  public void value(BigDecimal value) throws IOException {
+    gson.value(value);
+  }
+
+  @Override
+  public void value(Integer value) throws IOException {
+    gson.value(value);
+  }
+
+  @Override
+  public void beginArray() throws IOException {
+    gson.beginArray();
+  }
+
+  @Override
+  public void endArray() throws IOException {
+    gson.endArray();
+  }
+
+  @Override
+  public void finish() {
+    // nothing to do here
+    
+  }
+
+  @Override
+  public void link(String href) {
+    // not used
+  }
+
+  @Override
+  public void valueNum(String value) throws IOException {
+    value(new BigDecimal(value));    
+  }
+
+  @Override
+  public void anchor(String name) {
+    // not used
+  }
+
+  @Override
+  public void comment(String content) {
+     // gson (dense json) ignores comments
+  }
+  
+
+  @Override
+  public void externalLink(String string) {
+    // not used
+  }
+
+  @Override
+  public void elide() {
+    // not used
+  }
+
+  @Override
+  public boolean canElide() { return false;}
+
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/AdditionalBindingsRenderer.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/AdditionalBindingsRenderer.java
index a80990c4c..519489942 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/AdditionalBindingsRenderer.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/AdditionalBindingsRenderer.java
@@ -36,7 +36,7 @@ public class AdditionalBindingsRenderer {
     private String valueSet;
     private String doco;
     private String docoShort;
-    private UsageContext usage;
+    private List usages = new ArrayList();
     private boolean any = false;
     private boolean isUnchanged = false;
     private boolean matched = false;
@@ -72,7 +72,7 @@ public class AdditionalBindingsRenderer {
       isUnchanged = isUnchanged && ((valueSet==null && compare.valueSet==null) || valueSet.equals(compare.valueSet));
       isUnchanged = isUnchanged && ((doco==null && compare.doco==null) || doco.equals(compare.doco));
       isUnchanged = isUnchanged && ((docoShort==null && compare.docoShort==null) || docoShort.equals(compare.docoShort));
-      isUnchanged = isUnchanged && ((usage==null && compare.usage==null) || usage.equals(compare.usage));
+      isUnchanged = isUnchanged && ((usages==null && compare.usages==null) || usages.equals(compare.usages));
       return isUnchanged;
     }
   }
@@ -174,8 +174,12 @@ public class AdditionalBindingsRenderer {
     abr.purpose =  ext.getExtensionString("purpose");
     abr.valueSet =  ext.getExtensionString("valueSet");
     abr.doco =  ext.getExtensionString("documentation");
-      abr.docoShort =  ext.getExtensionString("shortDoco");
-    abr.usage =  (ext.hasExtension("usage")) && ext.getExtensionByUrl("usage").hasValueUsageContext() ? ext.getExtensionByUrl("usage").getValueUsageContext() : null;
+    abr.docoShort =  ext.getExtensionString("shortDoco");
+    for (Extension x : ext.getExtensionsByUrl("usage")) {
+      if (x.hasValueUsageContext()) {
+        abr.usages.add(x.getValueUsageContext());
+      }
+    }
     abr.any = "any".equals(ext.getExtensionString("scope"));
     abr.isUnchanged = ext.hasUserData(ProfileUtilities.UD_DERIVATION_EQUALS);
     return abr;
@@ -187,7 +191,7 @@ public class AdditionalBindingsRenderer {
     abr.valueSet =  ab.getValueSet();
     abr.doco =  ab.getDocumentation();
     abr.docoShort =  ab.getShortDoco();
-    abr.usage = ab.hasUsage() ? ab.getUsageFirstRep() : null;
+    abr.usages.addAll(ab.getUsage());
     abr.any = ab.getAny();
     abr.isUnchanged = ab.hasUserData(ProfileUtilities.UD_DERIVATION_EQUALS);
     return abr;
@@ -220,7 +224,7 @@ public class AdditionalBindingsRenderer {
     boolean any = false;
     for (AdditionalBindingDetail binding : bindings) {
       doco = doco || binding.getDoco(fullDoco)!=null  || (binding.compare!=null && binding.compare.getDoco(fullDoco)!=null);
-      usage = usage || binding.usage != null || (binding.compare!=null && binding.compare.usage!=null);
+      usage = usage || !binding.usages.isEmpty() || (binding.compare!=null && !binding.compare.usages.isEmpty());
       any = any || binding.any || (binding.compare!=null && binding.compare.any);
     }
 
@@ -283,9 +287,12 @@ public class AdditionalBindingsRenderer {
         renderPurpose(purpose, binding.compare.purpose);
       }
       if (usage) {
-        if (binding.usage != null) {
-          // TODO: This isn't rendered at all yet.  Ideally, we want it to render with comparison...
-          new DataRenderer(context).renderBase(new RenderingStatus(), tr.td(), binding.usage);
+        if (!binding.usages.isEmpty()) {
+          XhtmlNode td = tr.td();
+          for (UsageContext uc : binding.usages) {
+            td.sep(", ");
+            new DataRenderer(context).renderBase(new RenderingStatus(), td, uc);
+          }
         } else {
           tr.td();          
         }
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/DataRenderer.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/DataRenderer.java
index ffb441b6d..839648e4d 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/DataRenderer.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/DataRenderer.java
@@ -46,6 +46,7 @@ import org.hl7.fhir.r5.renderers.utils.RenderingContext.GenerationRules;
 import org.hl7.fhir.r5.renderers.utils.RenderingContext.ResourceRendererMode;
 import org.hl7.fhir.r5.renderers.utils.ResourceWrapper;
 import org.hl7.fhir.r5.terminologies.JurisdictionUtilities;
+import org.hl7.fhir.r5.terminologies.utilities.SnomedUtilities;
 import org.hl7.fhir.r5.terminologies.utilities.ValidationResult;
 import org.hl7.fhir.r5.utils.ToolingExtensions;
 import org.hl7.fhir.utilities.CommaSeparatedStringBuilder;
@@ -1177,8 +1178,8 @@ public class DataRenderer extends Renderer implements CodeResolver {
   } 
 
   private String getLinkForSystem(String system, String version) { 
-    if ("http://snomed.info/sct".equals(system)) { 
-      return "https://browser.ihtsdotools.org/";       
+    if ("http://snomed.info/sct".equals(system)) {
+      return "https://browser.ihtsdotools.org/";
     } else if ("http://loinc.org".equals(system)) { 
       return "https://loinc.org/";             
     } else if ("http://unitsofmeasure.org".equals(system)) { 
@@ -1198,11 +1199,7 @@ public class DataRenderer extends Renderer implements CodeResolver {
 
   protected String getLinkForCode(String system, String version, String code) { 
     if ("http://snomed.info/sct".equals(system)) { 
-      if (!Utilities.noString(code)) { 
-        return "http://snomed.info/id/"+code;         
-      } else { 
-        return "https://browser.ihtsdotools.org/"; 
-      } 
+      return SnomedUtilities.getSctLink(version, code, context.getContext().getExpansionParameters());
     } else if ("http://loinc.org".equals(system)) { 
       if (!Utilities.noString(code)) { 
         return "https://loinc.org/"+code; 
@@ -1301,7 +1298,11 @@ public class DataRenderer extends Renderer implements CodeResolver {
     } 
   } 
 
-  protected void renderCoding(RenderingStatus status, XhtmlNode x, ResourceWrapper c) { 
+  protected void renderCoding(RenderingStatus status, XhtmlNode x, ResourceWrapper c) {
+    renderCoding(status, x, c, true);
+  }
+    
+  protected void renderCoding(RenderingStatus status, XhtmlNode x, ResourceWrapper c, boolean details) { 
     String s = ""; 
     if (c.has("display")) 
       s = context.getTranslated(c.child("display")); 
@@ -1311,10 +1312,13 @@ public class DataRenderer extends Renderer implements CodeResolver {
     if (Utilities.noString(s)) 
       s = c.primitiveValue("code"); 
 
-    if (context.isTechnicalMode()) { 
-      x.addText(s+" "+context.formatPhrase(RenderingContext.DATA_REND_DETAILS_STATED, displaySystem(c.primitiveValue("system")), c.primitiveValue("code"), " = '", lookupCode(c.primitiveValue("system"), c.primitiveValue("version"), c.primitiveValue("code")), c.primitiveValue("display"), "')")); 
-    } else 
-      x.span(null, "{"+c.primitiveValue("system")+" "+c.primitiveValue("code")+"}").addText(s); 
+    if (context.isTechnicalMode() && details) {
+      String d = c.primitiveValue("display") == null ? lookupCode(c.primitiveValue("system"), c.primitiveValue("version"), c.primitiveValue("code")): c.primitiveValue("display");
+      d = context.formatPhrase(d == null || d.equals(c.primitiveValue("code")) ? RenderingContext.DATA_REND_DETAILS_STATED_ND :  RenderingContext.DATA_REND_DETAILS_STATED, displaySystem(c.primitiveValue("system")), c.primitiveValue("code"), d); 
+      x.addText(s+" "+d);
+    } else { 
+      x.span(null, "{"+c.primitiveValue("system")+" "+c.primitiveValue("code")+"}").addText(s);
+    }
   } 
 
   public String displayCodeableConcept(ResourceWrapper cc) { 
@@ -1860,8 +1864,8 @@ public class DataRenderer extends Renderer implements CodeResolver {
   } 
 
   public void renderUsageContext(RenderingStatus status, XhtmlNode x, ResourceWrapper u) throws FHIRFormatError, DefinitionException, IOException { 
-    renderCoding(status, x, u.child("code")); 
-    x.tx(": "); 
+    renderCoding(status, x, u.child("code"), false); 
+    x.tx(" = "); 
     renderDataType(status, x, u.child("value"));     
   } 
 
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/ValueSetRenderer.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/ValueSetRenderer.java
index 16adae09a..729e5ae42 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/ValueSetRenderer.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/renderers/ValueSetRenderer.java
@@ -51,6 +51,7 @@ import org.hl7.fhir.r5.terminologies.CodeSystemUtilities;
 import org.hl7.fhir.r5.terminologies.ValueSetUtilities;
 import org.hl7.fhir.r5.terminologies.expansion.ValueSetExpansionOutcome;
 import org.hl7.fhir.r5.terminologies.utilities.CodingValidationRequest;
+import org.hl7.fhir.r5.terminologies.utilities.SnomedUtilities;
 import org.hl7.fhir.r5.terminologies.utilities.ValidationResult;
 import org.hl7.fhir.r5.utils.EOperationOutcome;
 import org.hl7.fhir.r5.utils.ToolingExtensions;
@@ -825,7 +826,7 @@ public class ValueSetRenderer extends TerminologyRenderer {
     }
     String s = Utilities.padLeft("", '\u00A0', i*2);
     td.attribute("style", "white-space:nowrap").addText(s);
-    addCodeToTable(c.getAbstract(), c.getSystem(), c.getCode(), c.getDisplay(), td);
+    addCodeToTable(c.getAbstract(), c.getSystem(), c.getVersion(), c.getCode(), c.getDisplay(), td);
     td = tr.td();
     td.addText(c.getSystem());
     td = tr.td();
@@ -863,7 +864,7 @@ public class ValueSetRenderer extends TerminologyRenderer {
         first = false;
         XhtmlNode span = td.span(null, mapping.comp.getRelationship().toString());
         span.addText(getCharForRelationship(mapping.comp));
-        addRefToCode(td, mapping.group.getTarget(), m.getLink(), mapping.comp.getCode()); 
+        addRefToCode(td, mapping.group.getTarget(), null, m.getLink(), mapping.comp.getCode()); 
         if (!Utilities.noString(mapping.comp.getComment()))
           td.i().tx("("+mapping.comp.getComment()+")");
       }
@@ -900,13 +901,13 @@ public class ValueSetRenderer extends TerminologyRenderer {
      return true;
   }
 
-  private void addCodeToTable(boolean isAbstract, String system, String code, String display, XhtmlNode td) {
+  private void addCodeToTable(boolean isAbstract, String system, String version, String code, String display, XhtmlNode td) {
     CodeSystem e = getContext().getWorker().fetchCodeSystem(system);
     if (e == null || (e.getContent() != org.hl7.fhir.r5.model.Enumerations.CodeSystemContentMode.COMPLETE && e.getContent() != org.hl7.fhir.r5.model.Enumerations.CodeSystemContentMode.FRAGMENT)) {
       if (isAbstract)
         td.i().setAttribute("title", context.formatPhrase(RenderingContext.VS_ABSTRACT_CODE_HINT)).addText(code);
       else if ("http://snomed.info/sct".equals(system)) {
-        td.ah(context.prefixLocalHref(sctLink(code))).addText(code);
+        td.ah(context.prefixLocalHref(SnomedUtilities.getSctLink(version, code, context.getContext().getExpansionParameters()))).addText(code);
       } else if ("http://loinc.org".equals(system)) {
           td.ah(context.prefixLocalHref(LoincLinker.getLinkForCode(code))).addText(code);
       } else        
@@ -928,15 +929,8 @@ public class ValueSetRenderer extends TerminologyRenderer {
     }
   }
 
-
-  public String sctLink(String code) {
-//    if (snomedEdition != null)
-//      http://browser.ihtsdotools.org/?perspective=full&conceptId1=428041000124106&edition=us-edition&release=v20180301&server=https://prod-browser-exten.ihtsdotools.org/api/snomed&langRefset=900000000000509007
-    return "http://snomed.info/id/"+code;
-  }
-
-  private void addRefToCode(XhtmlNode td, String target, String vslink, String code) {
-    addCodeToTable(false, target, code, null, td);
+  private void addRefToCode(XhtmlNode td, String target, String vslink, String code, String version) {
+    addCodeToTable(false, target, version, code, null, td);
 //    CodeSystem cs = getContext().getWorker().fetchCodeSystem(target);
 //    String cslink = getCsRef(cs);
 //    String link = cslink != null ? cslink+"#"+cs.getId()+"-"+code : vslink+"#"+code;
@@ -1212,10 +1206,10 @@ public class ValueSetRenderer extends TerminologyRenderer {
           }
           addMapHeaders(addTableHeaderRowStandard(t, false, true, hasDefinition, hasComments, false, false, null, langs, designations, doDesignations), maps);
           for (ConceptReferenceComponent c : inc.getConcept()) {
-            renderConcept(inc, langs, doDesignations, maps, designations, definitions, t, hasComments, hasDefinition, c);
+            renderConcept(inc, langs, doDesignations, maps, designations, definitions, t, hasComments, hasDefinition, c, inc.getVersion());
           }
           for (Base b : VersionComparisonAnnotation.getDeleted(inc, "concept" )) {
-            renderConcept(inc, langs, doDesignations, maps, designations, definitions, t, hasComments, hasDefinition, (ConceptReferenceComponent) b);            
+            renderConcept(inc, langs, doDesignations, maps, designations, definitions, t, hasComments, hasDefinition, (ConceptReferenceComponent) b, inc.getVersion());          
           }
         }
         if (inc.getFilter().size() > 0) {
@@ -1312,11 +1306,11 @@ public class ValueSetRenderer extends TerminologyRenderer {
 
   private void renderConcept(ConceptSetComponent inc, List langs, boolean doDesignations,
       List maps, Map designations, Map definitions,
-      XhtmlNode t, boolean hasComments, boolean hasDefinition, ConceptReferenceComponent c) {
+      XhtmlNode t, boolean hasComments, boolean hasDefinition, ConceptReferenceComponent c, String version) {
     XhtmlNode tr = t.tr();
     XhtmlNode td = renderStatusRow(c, t, tr);
     ConceptDefinitionComponent cc = definitions == null ? null : definitions.get(c.getCode()); 
-    addCodeToTable(false, inc.getSystem(), c.getCode(), c.hasDisplay()? c.getDisplay() : cc != null ? cc.getDisplay() : "", td);
+    addCodeToTable(false, inc.getSystem(), version, c.getCode(), c.hasDisplay()? c.getDisplay() : cc != null ? cc.getDisplay() : "", td);
 
     td = tr.td();
     if (!Utilities.noString(c.getDisplay()))
@@ -1355,7 +1349,7 @@ public class ValueSetRenderer extends TerminologyRenderer {
         first = false;
         XhtmlNode span = td.span(null, mapping.comp.getRelationship().toString());
         span.addText(getCharForRelationship(mapping.comp));
-        addRefToCode(td, mapping.group.getTarget(), m.getLink(), mapping.comp.getCode()); 
+        addRefToCode(td, mapping.group.getTarget(), m.getLink(), mapping.comp.getCode(), version); 
         if (!Utilities.noString(mapping.comp.getComment()))
           td.i().tx("("+mapping.comp.getComment()+")");
       }
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientContext.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientContext.java
index a15139944..4d8c5d7ee 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientContext.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientContext.java
@@ -51,6 +51,8 @@ public class TerminologyClientContext {
     
   }
 
+  private static boolean canUseCacheId;
+
   private ITerminologyClient client;
   private boolean initialised = false;
   private CapabilityStatement capabilitiesStatementQuick;
@@ -180,7 +182,7 @@ public class TerminologyClientContext {
           txCache.cacheTerminologyCapabilities(getAddress(), txcaps);
         }
       }
-      if (txcaps != null) {
+      if (txcaps != null && TerminologyClientContext.canUseCacheId) {
         for (TerminologyCapabilitiesExpansionParameterComponent t : txcaps.getExpansion().getParameter()) {
           if ("cache-id".equals(t.getName())) {
             setTxCaching(true);
@@ -206,6 +208,13 @@ public class TerminologyClientContext {
   public String toString() {
     return client.getAddress();
   }
-  
+
+  public static boolean isCanUseCacheId() {
+    return canUseCacheId;
+  }
+
+  public static void setCanUseCacheId(boolean canUseCacheId) {
+    TerminologyClientContext.canUseCacheId = canUseCacheId;
+  }
   
 }
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/expansion/ValueSetExpander.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/expansion/ValueSetExpander.java
index 7e1cfbbf7..82fd94efd 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/expansion/ValueSetExpander.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/expansion/ValueSetExpander.java
@@ -188,7 +188,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   private ValueSetExpansionContainsComponent addCode(WorkingContext wc, String system, String code, String display, String dispLang, ValueSetExpansionContainsComponent parent, List designations, Parameters expParams, 
       boolean isAbstract, boolean inactive, List filters, boolean noInactive, boolean deprecated, List vsProp, 
       List csProps, CodeSystem cs, List expProps, List csExtList, List vsExtList, ValueSetExpansionComponent exp) throws ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("addCode"+code);
     
     if (filters != null && !filters.isEmpty() && !filterContainsCode(filters, system, code, exp))
       return null;
@@ -447,7 +447,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   }
 
   private void addCodeAndDescendents(WorkingContext wc, ValueSetExpansionContainsComponent focus, ValueSetExpansionContainsComponent parent, Parameters expParams, List filters, boolean noInactive, List vsProps, ValueSet vsSrc, ValueSetExpansionComponent exp)  throws FHIRException, ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("addCodeAndDescendents");
     focus.checkNoModifiers("Expansion.contains", "expanding");
     ValueSetExpansionContainsComponent np = null;
     for (String code : getCodesForConcept(focus, expParams)) {
@@ -497,7 +497,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
 
   private void addCodeAndDescendents(WorkingContext wc, CodeSystem cs, String system, ConceptDefinitionComponent def, ValueSetExpansionContainsComponent parent, Parameters expParams, List filters, 
         ConceptDefinitionComponent exclusion, ConceptFilter filterFunc, boolean noInactive, List vsProps, List otherFilters, ValueSetExpansionComponent exp)  throws FHIRException, ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("addCodeAndDescendents");
     def.checkNoModifiers("Code in Code System", "expanding");
     if (exclusion != null) {
       if (exclusion.getCode().equals(def.getCode()))
@@ -528,7 +528,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
 
   private void excludeCodeAndDescendents(WorkingContext wc, CodeSystem cs, String system, ConceptDefinitionComponent def, Parameters expParams, List filters, 
       ConceptDefinitionComponent exclusion, ConceptFilter filterFunc, List otherFilters, ValueSetExpansionComponent exp)  throws FHIRException, ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("excludeCodeAndDescendents");
     def.checkNoModifiers("Code in Code System", "expanding");
     if (exclusion != null) {
       if (exclusion.getCode().equals(def.getCode()))
@@ -596,7 +596,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   }
 
   private void excludeCodes(WorkingContext wc, ConceptSetComponent exc, Parameters expParams, ValueSetExpansionComponent exp, ValueSet vs) throws FHIRException, FileNotFoundException, ETooCostly, IOException {
-    opContext.deadCheck();
+    opContext.deadCheck("excludeCodes");
     exc.checkNoModifiers("Compose.exclude", "expanding");
     if (exc.hasSystem() && exc.getConcept().size() == 0 && exc.getFilter().size() == 0) {
       wc.getExcludeSystems().add(exc.getSystem());
@@ -639,7 +639,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   }
 
   private void excludeCodes(WorkingContext wc, ValueSetExpansionComponent expand) {
-    opContext.deadCheck();
+    opContext.deadCheck("excludeCodes");
     for (ValueSetExpansionContainsComponent c : expand.getContains()) {
       excludeCode(wc, c.getSystem(), c.getCode());
     }
@@ -959,7 +959,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   }
 
   public void copyExpansion(WorkingContext wc,List list) {
-    opContext.deadCheck();
+    opContext.deadCheck("copyExpansion");
     for (ValueSetExpansionContainsComponent cc : list) {
        ValueSetExpansionContainsComponent n = new ValueSet.ValueSetExpansionContainsComponent();
        n.setSystem(cc.getSystem());
@@ -988,7 +988,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
 
   private int copyImportContains(List list, ValueSetExpansionContainsComponent parent, Parameters expParams, List filter, boolean noInactive, List vsProps, ValueSet vsSrc, ValueSetExpansionComponent exp) throws FHIRException, ETooCostly {
     int count = 0;
-    opContext.deadCheck();
+    opContext.deadCheck("copyImportContains");
     for (ValueSetExpansionContainsComponent c : list) {
       c.checkNoModifiers("Imported Expansion in Code System", "expanding");
       ValueSetExpansionContainsComponent np = addCode(dwc, c.getSystem(), c.getCode(), c.getDisplay(), vsSrc.getLanguage(), parent, null, expParams, c.getAbstract(), c.getInactive(), 
@@ -1002,7 +1002,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   }
 
   private void includeCodes(ConceptSetComponent inc, ValueSetExpansionComponent exp, Parameters expParams, boolean heirarchical, boolean noInactive, List extensions, ValueSet valueSet) throws ETooCostly, FileNotFoundException, IOException, FHIRException, CodeSystemProviderExtension {
-    opContext.deadCheck();
+    opContext.deadCheck("includeCodes");
     inc.checkNoModifiers("Compose.include", "expanding");
     List imports = new ArrayList();
     for (CanonicalType imp : inc.getValueSet()) {
@@ -1033,7 +1033,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   }
 
   private void doServerIncludeCodes(ConceptSetComponent inc, boolean heirarchical, ValueSetExpansionComponent exp, List imports, Parameters expParams, List extensions, boolean noInactive, List vsProps) throws FHIRException, CodeSystemProviderExtension, ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("doServerIncludeCodes");
     CodeSystemProvider csp = CodeSystemProvider.factory(inc.getSystem());
     if (csp != null) {
       csp.includeCodes(inc, heirarchical, exp, imports, expParams, extensions, noInactive, vsProps);
@@ -1075,7 +1075,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
 
 
   public void doInternalIncludeCodes(ConceptSetComponent inc, ValueSetExpansionComponent exp, Parameters expParams, List imports, CodeSystem cs, boolean noInactive, Resource vsSrc) throws NoTerminologyServiceException, TerminologyServiceException, FHIRException, ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("doInternalIncludeCodes");
     if (cs == null) {
       if (context.isNoTerminologyServer())
         throw failTSE("Unable to find code system " + inc.getSystem().toString());
@@ -1160,7 +1160,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
   private void processFilter(ConceptSetComponent inc, ValueSetExpansionComponent exp, Parameters expParams, List imports, CodeSystem cs, boolean noInactive, 
       ConceptSetFilterComponent fc, WorkingContext wc, List filters, boolean exclude)
       throws ETooCostly {
-    opContext.deadCheck();
+    opContext.deadCheck("processFilter");
     if ("concept".equals(fc.getProperty()) && fc.getOp() == FilterOperator.ISA) {
       // special: all codes in the target code system under the value
       ConceptDefinitionComponent def = getConceptForCode(cs.getConcept(), fc.getValue());
@@ -1213,7 +1213,7 @@ public class ValueSetExpander extends ValueSetProcessBase {
         if (isNotBlank(def.getDisplay()) && isNotBlank(fc.getValue())) {
           if (def.getDisplay().contains(fc.getValue()) && passesOtherFilters(filters, cs, def.getCode())) {
             for (String code : getCodesForConcept(def, expParams)) {
-              opContext.deadCheck();
+              opContext.deadCheck("processFilter2");
               if (exclude) {
                 excludeCode(wc, inc.getSystem(), code);
               } else {
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/SnomedUtilities.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/SnomedUtilities.java
new file mode 100644
index 000000000..07f009626
--- /dev/null
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/SnomedUtilities.java
@@ -0,0 +1,74 @@
+package org.hl7.fhir.r5.terminologies.utilities;
+
+import org.hl7.fhir.r5.model.Parameters;
+import org.hl7.fhir.r5.model.Parameters.ParametersParameterComponent;
+import org.hl7.fhir.utilities.Utilities;
+
+
+//URL: http://snomed.info/sct/[module]/version/[e.g. 20150131]'
+//International: 900000000000207008
+//US:  731000124108
+//Australia: 32506021000036107
+//Belgium: 11000172109
+//Canada: 20611000087101
+//Spain: 449081005
+//Denmark: 554471000005108
+//Netherlands: 11000146104
+//Sweden: 45991000052106
+//Switzerland: 2011000195101
+//UK: 83821000000107
+//IPS: 827022005
+                       
+public class SnomedUtilities {
+
+  public static String getVersionFromParameters(Parameters p, String version) {
+    for (ParametersParameterComponent pp : p.getParameter()) {
+      switch (pp.getName()) {
+      case "system-version" :
+        if (version == null) {
+          return pp.getValue().primitiveValue();
+        }
+      case "force-system-version":
+        return pp.getValue().primitiveValue();
+      }
+    }
+    return version;
+  }
+
+  public static String getEditionFromVersion(String version) {
+    if (version == null) {
+      return null;
+    }
+    if (version.startsWith("http://snomed.info/sct/")) {
+      version = version.substring(23);
+    }
+    if (version.contains("/")) {
+      version = version.substring(0, version.indexOf("/"));
+    }
+    if (Utilities.existsInList(version, "900000000000207008", "731000124108", "32506021000036107", "11000172109", "20611000087101",
+        "449081005", "554471000005108", "11000146104", "45991000052106", "2011000195101", "83821000000107", "827022005")) {
+      return version;
+    } else {
+      return null;
+    }
+  }
+
+  public static String getSctLink(String version, String code, Parameters p) {
+    if (!Utilities.noString(code)) { 
+      version = SnomedUtilities.getVersionFromParameters(p, version);
+      String edId = SnomedUtilities.getEditionFromVersion(version);
+      if (edId != null) {
+        // if there's a version that's an edition, then:
+        // http://snomed.info/sct/11000172109/id//371305003
+        return "http://snomed.info/sct/"+edId+"/id/"+code;
+      } else {
+        // no, version:
+        return "http://snomed.info/id/"+code;
+      }
+    } else { 
+      return "https://browser.ihtsdotools.org/"; 
+    } 
+  }
+}
+
+
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyCache.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyCache.java
index b65c63a2e..3a60a33bc 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyCache.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyCache.java
@@ -302,22 +302,26 @@ public class TerminologyCache {
     this.lock = lock;
     if (folder == null) {
       folder = Utilities.path("[tmp]", "default-tx-cache");
+    } else if ("n/a".equals(folder)) {
+      // this is a weird way to do things but it maintains the legacy interface
+      folder = null;
     }
     this.folder = folder;
     requestCount = 0;
     hitCount = 0;
     networkCount = 0;
 
-    
-    File f = ManagedFileAccess.file(folder);
-    if (!f.exists()) {
-      Utilities.createDirectory(folder);
+    if (folder != null) {
+      File f = ManagedFileAccess.file(folder);
+      if (!f.exists()) {
+        Utilities.createDirectory(folder);
+      }
+      if (!f.exists()) {
+        throw new IOException("Unable to create terminology cache at "+folder);
+      }
+      checkVersion();      
+      load();
     }
-    if (!f.exists()) {
-      throw new IOException("Unable to create terminology cache at "+folder);
-    }
-    checkVersion();      
-    load();
   }
 
   private void checkVersion() throws IOException {
@@ -361,7 +365,9 @@ public class TerminologyCache {
   }
   
   private void clear() throws IOException {
-    Utilities.clearDirectory(folder);
+    if (folder != null) {
+      Utilities.clearDirectory(folder);
+    }
     caches.clear();
     vsCache.clear();
     csCache.clear();
@@ -1039,7 +1045,7 @@ public class TerminologyCache {
 
   public SourcedValueSet getValueSet(String canonical) {
     SourcedValueSetEntry sp = vsCache.get(canonical);
-    if (sp == null) {
+    if (sp == null || folder == null) {
       return null;
     } else {
       try {
@@ -1052,7 +1058,7 @@ public class TerminologyCache {
 
   public SourcedCodeSystem getCodeSystem(String canonical) {
     SourcedCodeSystemEntry sp = csCache.get(canonical);
-    if (sp == null) {
+    if (sp == null || folder == null) {
       return null;
     } else {
       try {
@@ -1073,7 +1079,9 @@ public class TerminologyCache {
       } else {
         String uuid = Utilities.makeUuidLC();
         String fn = "vs-"+uuid+".json";
-        new JsonParser().compose(ManagedFileAccess.outStream(Utilities.path(folder, fn)), svs.getVs());
+        if (folder != null) {
+          new JsonParser().compose(ManagedFileAccess.outStream(Utilities.path(folder, fn)), svs.getVs());
+        }
         vsCache.put(canonical, new SourcedValueSetEntry(svs.getServer(), fn));
       }    
       org.hl7.fhir.utilities.json.model.JsonObject j = new org.hl7.fhir.utilities.json.model.JsonObject();
@@ -1090,7 +1098,9 @@ public class TerminologyCache {
           j.add(k, e);
         }
       }
-      org.hl7.fhir.utilities.json.parser.JsonParser.compose(j, ManagedFileAccess.file(Utilities.path(folder, "vs-externals.json")), true);
+      if (folder != null) {
+        org.hl7.fhir.utilities.json.parser.JsonParser.compose(j, ManagedFileAccess.file(Utilities.path(folder, "vs-externals.json")), true);
+      }
     } catch (Exception e) {
       e.printStackTrace();
     }
@@ -1106,7 +1116,9 @@ public class TerminologyCache {
       } else {
         String uuid = Utilities.makeUuidLC();
         String fn = "cs-"+uuid+".json";
-        new JsonParser().compose(ManagedFileAccess.outStream(Utilities.path(folder, fn)), scs.getCs());
+        if (folder != null) {
+          new JsonParser().compose(ManagedFileAccess.outStream(Utilities.path(folder, fn)), scs.getCs());
+        }
         csCache.put(canonical, new SourcedCodeSystemEntry(scs.getServer(), fn));
       }    
       org.hl7.fhir.utilities.json.model.JsonObject j = new org.hl7.fhir.utilities.json.model.JsonObject();
@@ -1123,7 +1135,9 @@ public class TerminologyCache {
           j.add(k, e);
         }
       }
-      org.hl7.fhir.utilities.json.parser.JsonParser.compose(j, ManagedFileAccess.file(Utilities.path(folder, "cs-externals.json")), true);
+      if (folder != null) {
+        org.hl7.fhir.utilities.json.parser.JsonParser.compose(j, ManagedFileAccess.file(Utilities.path(folder, "cs-externals.json")), true);
+      }
     } catch (Exception e) {
       e.printStackTrace();
     }
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyOperationContext.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyOperationContext.java
index a9632ede9..5ac1cd591 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyOperationContext.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/TerminologyOperationContext.java
@@ -7,6 +7,7 @@ import org.hl7.fhir.exceptions.TerminologyServiceException;
 import org.hl7.fhir.r5.context.IWorkerContext;
 import org.hl7.fhir.r5.model.OperationOutcome.IssueType;
 import org.hl7.fhir.r5.terminologies.utilities.TerminologyOperationContext.TerminologyServiceProtectionException;
+import org.hl7.fhir.utilities.Utilities;
 import org.hl7.fhir.utilities.i18n.I18nConstants;
 import org.hl7.fhir.utilities.validation.ValidationOptions;
 
@@ -38,16 +39,22 @@ public class TerminologyOperationContext {
   public static boolean debugging = java.lang.management.ManagementFactory.getRuntimeMXBean().getInputArguments().toString().indexOf("-agentlib:jdwp") > 0;
   private static final int EXPANSION_DEAD_TIME_SECS = 60;
   private long deadTime;
+  private int nestCount = 0;
+  private long startTime;
   private List contexts = new ArrayList<>();
   private IWorkerContext worker;
   private boolean original;
   private ValidationOptions options;
+  private String name;
+  private List notes = new ArrayList<>();
   
-  public TerminologyOperationContext(IWorkerContext worker, ValidationOptions options) {
+  public TerminologyOperationContext(IWorkerContext worker, ValidationOptions options, String name) {
     super();
     this.worker = worker;
     this.original = true;
     this.options = options;
+    this.name = name;
+    this.startTime = System.currentTimeMillis();
     
     if (EXPANSION_DEAD_TIME_SECS == 0 || debugging) {
       deadTime = 0;
@@ -56,22 +63,33 @@ public class TerminologyOperationContext {
     }
   }
   
-  private TerminologyOperationContext(ValidationOptions options) {
+  private TerminologyOperationContext(ValidationOptions options, String name) {
     super();
     this.options = options;
+    this.name = name;
+    this.startTime = System.currentTimeMillis();
   }
 
   public TerminologyOperationContext copy() {
-    TerminologyOperationContext ret = new TerminologyOperationContext(this.options);
+    TerminologyOperationContext ret = new TerminologyOperationContext(this.options, name);
     ret.worker = worker;
     ret.contexts.addAll(contexts);
     ret.deadTime = deadTime;
+    ret.notes = notes;
+    ret.startTime = startTime;
+    ret.nestCount = nestCount + 1;
     return ret;
   }
   
-  public void deadCheck() {
+  public void deadCheck(String note) {
+    note(note);
     if (deadTime != 0 &&  System.currentTimeMillis() > deadTime) {
-      throw new TerminologyServiceProtectionException(worker.formatMessage(I18nConstants.VALUESET_TOO_COSTLY_TIME, contexts.get(0), EXPANSION_DEAD_TIME_SECS), TerminologyServiceErrorClass.TOO_COSTLY, IssueType.TOOCOSTLY);
+      System.out.println();
+      System.out.println("Operation took too long - longer than "+(deadTime - startTime)+"ms");
+      for (String s : notes) {
+        System.out.println(s);
+      }
+      throw new TerminologyServiceProtectionException(worker.formatMessage(I18nConstants.VALUESET_TOO_COSTLY_TIME, contexts.get(0), EXPANSION_DEAD_TIME_SECS, name+" (local)"), TerminologyServiceErrorClass.TOO_COSTLY, IssueType.TOOCOSTLY);
     }
   }
   
@@ -90,5 +108,8 @@ public class TerminologyOperationContext {
     return options;
   }
 
-  
+  public void note(String s) {
+    s = Utilities.padLeft("", ' ', nestCount)+" "+(System.currentTimeMillis() - startTime)+" "+s;
+    notes.add(s);
+  }
 }
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValueSetProcessBase.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValueSetProcessBase.java
index a547327d5..406127929 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValueSetProcessBase.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValueSetProcessBase.java
@@ -49,7 +49,7 @@ public class ValueSetProcessBase {
   protected IWorkerContext context;
   protected TerminologyOperationContext opContext;
   protected List requiredSupplements = new ArrayList<>();
-
+  
   protected ValueSetProcessBase(IWorkerContext context, TerminologyOperationContext opContext) {
     super();
     this.context = context;
@@ -229,7 +229,11 @@ public class ValueSetProcessBase {
       }
     }
   }
-            
+
+  public TerminologyOperationContext getOpContext() {
+    return opContext;
+  }
+
                          
   protected AlternateCodesProcessingRules altCodeParams = new AlternateCodesProcessingRules(false);
   protected AlternateCodesProcessingRules allAltCodes = new AlternateCodesProcessingRules(true);
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/validation/ValueSetValidator.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/validation/ValueSetValidator.java
index dd8b9733a..44e55cbc8 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/validation/ValueSetValidator.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/validation/ValueSetValidator.java
@@ -175,11 +175,15 @@ public class ValueSetValidator extends ValueSetProcessBase {
   }
 
   private void analyseValueSet() {
+    opContext.note("analyse");
     if (valueset != null) {
+      opContext.note("vs = "+valueset.getVersionedUrl());
       opContext.seeContext(valueset.getVersionedUrl());
       for (Extension s : valueset.getExtensionsByUrl(ExtensionConstants.EXT_VSSUPPLEMENT)) {
         requiredSupplements.add(s.getValue().primitiveValue());
       }
+    } else {
+      opContext.note("vs = null");
     }
 
     altCodeParams.seeParameters(expansionProfile);
@@ -187,17 +191,18 @@ public class ValueSetValidator extends ValueSetProcessBase {
     if (localContext != null) {
       if (valueset != null) {
         for (ConceptSetComponent i : valueset.getCompose().getInclude()) {
-          analyseComponent(i);
+          analyseComponent(i, "inc"+i);
         }
         for (ConceptSetComponent i : valueset.getCompose().getExclude()) {
-          analyseComponent(i);
+          analyseComponent(i, "exc"+i);
         }
       }
     }
+    opContext.note("analysed");
   }
 
-  private void analyseComponent(ConceptSetComponent i) {
-    opContext.deadCheck();
+  private void analyseComponent(ConceptSetComponent i, String name) {
+    opContext.deadCheck("analyse Component "+name);
     if (i.getSystemElement().hasExtension(ToolingExtensions.EXT_VALUESET_SYSTEM)) {
       String ref = i.getSystemElement().getExtensionString(ToolingExtensions.EXT_VALUESET_SYSTEM);
       if (ref.startsWith("#")) {
@@ -219,11 +224,15 @@ public class ValueSetValidator extends ValueSetProcessBase {
   }
   
   public ValidationResult validateCode(String path, CodeableConcept code) throws FHIRException {
-    opContext.deadCheck();
+    opContext.deadCheck("validate "+code.toString());
     checkValueSetOptions();
 
     // first, we validate the codings themselves
     ValidationProcessInfo info = new ValidationProcessInfo();
+    
+    if (throwToServer) {
+      checkValueSetLoad(info);
+    }
 
     CodeableConcept vcc = new CodeableConcept();
     List resList = new ArrayList<>();
@@ -395,6 +404,45 @@ public class ValueSetValidator extends ValueSetProcessBase {
     }
   }
 
+  private void checkValueSetLoad(ValidationProcessInfo info) {
+    int serverCount = getServerLoad(info);
+    // There's a trade off here: if we're going to hit the server inside the components, then
+    // the amount of value set collateral we send is limited, but we pay the price of hitting 
+    // the server multiple times. If, on the other hand, we give up on that, and hit the server 
+    // directly, we have to send value set collateral (though we cache at the higher level)
+    //
+    // the cutoff value is chosen experimentally
+    if (serverCount > 2) {
+      throw new VSCheckerException("This value set is better processed on the server for performance reasons", null, true);
+    }
+  }
+
+  private int getServerLoad(ValidationProcessInfo info) {
+    int serverCount = 0;
+    if (valueset != null) {
+      for (ConceptSetComponent inc : valueset.getCompose().getInclude()) {
+        serverCount = serverCount + checkValueSetLoad(inc, info);
+      }
+      for (ConceptSetComponent inc : valueset.getCompose().getExclude()) {
+        serverCount = serverCount + checkValueSetLoad(inc, info);
+      }
+    }
+    return serverCount;
+  }
+  
+  private int checkValueSetLoad(ConceptSetComponent inc, ValidationProcessInfo info) {
+    int serverCount = 0;
+    for (UriType uri : inc.getValueSet()) {
+      ValueSetValidator vsv = getVs(uri.getValue(), info);
+      serverCount += vsv.getServerLoad(info);
+    }
+    CodeSystem cs = resolveCodeSystem(inc.getSystem(), inc.getVersion());
+    if (cs == null || (cs.getContent() != CodeSystemContentMode.COMPLETE && cs.getContent() != CodeSystemContentMode.FRAGMENT)) {
+      serverCount++;
+    }
+    return serverCount;
+  }
+
   private boolean checkRequiredSupplements(ValidationProcessInfo info) {
     if (!requiredSupplements.isEmpty()) {
       String msg= context.formatMessagePlural(requiredSupplements.size(), I18nConstants.VALUESET_SUPPLEMENT_MISSING, CommaSeparatedStringBuilder.build(requiredSupplements));
@@ -466,7 +514,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
   }
   
   public ValidationResult validateCode(String path, Coding code) throws FHIRException {
-    opContext.deadCheck();
+    opContext.deadCheck("validate "+code.toString());
     checkValueSetOptions();
     
     String warningMessage = null;
@@ -798,7 +846,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
 
   private ValidationResult findCodeInExpansion(Coding code, List contains) {
     for (ValueSetExpansionContainsComponent containsComponent: contains) {
-      opContext.deadCheck();
+      opContext.deadCheck("findCodeInExpansion");
       if (containsComponent.getSystem().equals(code.getSystem()) && containsComponent.getCode().equals(code.getCode())) {
         ConceptDefinitionComponent ccd = new ConceptDefinitionComponent();
         ccd.setCode(containsComponent.getCode());
@@ -825,7 +873,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
 
   private boolean checkExpansion(Coding code, List contains, VersionInfo vi) {
     for (ValueSetExpansionContainsComponent containsComponent: contains) {
-      opContext.deadCheck();
+      opContext.deadCheck("checkExpansion: "+code.toString());
       if (containsComponent.hasSystem() && containsComponent.hasCode() && containsComponent.getSystem().equals(code.getSystem()) && containsComponent.getCode().equals(code.getCode())) {
         vi.setExpansionVersion(containsComponent.getVersion());
         return true;
@@ -882,7 +930,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
     }
     
     for (ConceptDefinitionDesignationComponent ds : cc.getDesignation()) {
-      opContext.deadCheck();
+      opContext.deadCheck("validateCode1 "+ds.toString());
       if (isOkLanguage(ds.getLanguage())) {
         b.append("'"+ds.getValue()+"' ("+ds.getLanguage()+")");
         if (code.getDisplay().equalsIgnoreCase(ds.getValue())) {
@@ -904,7 +952,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
           }
         }
         for (ConceptReferenceDesignationComponent ds : vs.getCc().getDesignation()) {
-          opContext.deadCheck();
+          opContext.deadCheck("validateCode2 "+ds.toString());
           if (isOkLanguage(ds.getLanguage())) {
             b.append("'"+ds.getValue()+"'");
             if (code.getDisplay().equalsIgnoreCase(ds.getValue())) {
@@ -1009,7 +1057,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
       return null;
     // if it has an expansion
     for (ValueSetExpansionContainsComponent exp : valueset.getExpansion().getContains()) {
-      opContext.deadCheck();
+      opContext.deadCheck("findValueSetRef "+exp.toString());
       if (system.equals(exp.getSystem()) && code.equals(exp.getCode())) {
         ConceptReferenceComponent cc = new ConceptReferenceComponent();
         cc.setDisplay(exp.getDisplay());
@@ -1048,7 +1096,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
   }
 
   private ConceptDefinitionComponent findCodeInConcept(ConceptDefinitionComponent concept, String code, boolean caseSensitive, AlternateCodesProcessingRules altCodeRules) {
-    opContext.deadCheck();
+    opContext.deadCheck("findCodeInConcept: "+code.toString()+", "+concept.toString());
     if (code.equals(concept.getCode())) {
       return concept;
     }
@@ -1121,7 +1169,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
 
       int i = 0;
       for (ConceptSetComponent vsi : valueset.getCompose().getInclude()) {
-        opContext.deadCheck();
+        opContext.deadCheck("scanForCodeInValueSet: "+code.toString());
         if (scanForCodeInValueSetInclude(code, sys, problems, i, vsi)) {
           return true;
         }
@@ -1241,7 +1289,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
    */
   private boolean checkSystems(List contains, String code, Set systems, List problems) {
     for (ValueSetExpansionContainsComponent c: contains) {
-      opContext.deadCheck();
+      opContext.deadCheck("checkSystems "+code.toString());
       if (c.getCode().equals(code)) {
         systems.add(c.getSystem());
       }
@@ -1255,7 +1303,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
     if (valueset == null) {
       return null;
     }
-    opContext.deadCheck();
+    opContext.deadCheck("codeInValueSet: "+system+"#"+code);
     checkCanonical(info.getIssues(), path, valueset, valueset);
     Boolean result = false;
     VersionInfo vi = new VersionInfo(this);
@@ -1290,7 +1338,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
   }
 
   private Boolean inComponent(String path, ConceptSetComponent vsi, int vsiIndex, String system, String version, String code, boolean only, ValidationProcessInfo info) throws FHIRException {
-    opContext.deadCheck();
+    opContext.deadCheck("inComponent "+vsiIndex);
     boolean ok = true;
     
     if (vsi.hasValueSet()) {
@@ -1339,6 +1387,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
         vs.setUrl(valueset.getUrl()+"--"+vsiIndex);
         vs.setVersion(valueset.getVersion());
         vs.getCompose().addInclude(vsi);
+        opContext.deadCheck("hit server "+vs.getVersionedUrl());
         ValidationResult res = context.validateCode(options.withNoClient(), new Coding(system, code, null), vs);
         if (res.getErrorClass() == TerminologyServiceErrorClass.UNKNOWN || res.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED || res.getErrorClass() == TerminologyServiceErrorClass.VALUESET_UNSUPPORTED) {
           if (info != null && res.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED) {
@@ -1348,16 +1397,20 @@ public class ValueSetValidator extends ValueSetProcessBase {
               info.addIssue(makeIssue(IssueSeverity.WARNING, IssueType.UNKNOWN, path, msg, OpIssueCode.NotFound, null));
               for (ConceptReferenceComponent cc : vsi.getConcept()) {
                 if (cc.getCode().equals(code)) {
+                  opContext.deadCheck("server true");
                   return true;
                 }
               }
             }
             info.setErr(TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED);
+            opContext.deadCheck("server codesystem unsupported");
             return null;
           }
+          opContext.deadCheck("server not found");
           return false;
         }
         if (res.getErrorClass() == TerminologyServiceErrorClass.NOSERVICE) {
+          opContext.deadCheck("server no server");
           throw new NoTerminologyServiceException();
         }
         return res.isOk();
@@ -1538,7 +1591,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
   }
 
   public boolean validateCodeInConceptList(String code, CodeSystem def, List list, AlternateCodesProcessingRules altCodeRules) {
-    opContext.deadCheck();
+    opContext.deadCheck("validateCodeInConceptList");
     if (def.hasUserData("tx.cs.special")) {
       return ((SpecialCodeSystem) def.getUserData("tx.cs.special")).findConcept(new Coding().setCode(code)) != null; 
     } else if (def.getCaseSensitive()) {
@@ -1580,7 +1633,7 @@ public class ValueSetValidator extends ValueSetProcessBase {
     inner.put(url, vsc);
     return vsc;
   }
-
+  
   private Boolean inImport(String path, String uri, String system, String version, String code, ValidationProcessInfo info) throws FHIRException {
     ValueSetValidator vs = getVs(uri, info);
     if (vs == null) {
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/PackageHackerR5.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/PackageHackerR5.java
index 5ea179634..376afc72b 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/PackageHackerR5.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/PackageHackerR5.java
@@ -36,6 +36,10 @@ public class PackageHackerR5 {
      r.hack("http://terminology.hl7.org/CodeSystem/v2-0360-2.3.1", "2.3.1");
    }
 
+   if ("http://hl7.org/fhir/ValueSet/languages".equals(r.getUrl())) {
+     r.getResource().setExperimental(false);
+   }
+   
    if ("http://hl7.org/fhir/StructureDefinition/iso21090-nullFlavor".equals(r.getUrl()) && "4.0.1".equals(r.getVersion())) {
      StructureDefinition sd = (StructureDefinition) r.getResource();
      for (ElementDefinition ed : sd.getSnapshot().getElement()) {
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirLoggingInterceptor.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirLoggingInterceptor.java
index ac7bf4a94..1314e6c8a 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirLoggingInterceptor.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirLoggingInterceptor.java
@@ -59,7 +59,8 @@ public class FhirLoggingInterceptor implements Interceptor {
     headerMap.keySet().forEach(key -> headerMap.get(key).forEach(value -> headerList.add(key + ":" + value)));
 
     if (logger != null) {
-      logger.logResponse(Integer.toString(response.code()), headerList, bodyBytes);
+      long responseTimeInMillis = response.receivedResponseAtMillis() - response.sentRequestAtMillis();
+      logger.logResponse(Integer.toString(response.code()), headerList, bodyBytes, responseTimeInMillis);
     }
 
     // Reading byte[] clears body. Need to recreate.
diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/formats/XmlLocationAnnotator.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/formats/XmlLocationAnnotator.java
index 0a751ee2c..84d4ed31d 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/formats/XmlLocationAnnotator.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/formats/XmlLocationAnnotator.java
@@ -44,6 +44,8 @@ import org.w3c.dom.events.MutationEvent;
 import org.xml.sax.Attributes;
 import org.xml.sax.Locator;
 import org.xml.sax.SAXException;
+import org.xml.sax.SAXNotRecognizedException;
+import org.xml.sax.SAXNotSupportedException;
 import org.xml.sax.XMLReader;
 import org.xml.sax.helpers.LocatorImpl;
 import org.xml.sax.helpers.XMLFilterImpl;
@@ -71,6 +73,22 @@ public class XmlLocationAnnotator extends XMLFilterImpl  {
       ((EventTarget) dom).addEventListener("DOMNodeInserted", modListener, true);
   }
 
+  @Override
+  public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException {
+    if (!name.equals("http://javax.xml.XMLConstants/property/accessExternalDTD")) {
+      super.setProperty(name, value);
+    }
+  }
+
+  @Override
+  public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
+    if (!name.equals("http://javax.xml.XMLConstants/property/accessExternalDTD")) {
+      return null;
+    } else {
+      return super.getProperty(name);
+    }
+  }
+
   @Override
   public void setDocumentLocator(Locator locator) {
       super.setDocumentLocator(locator);
diff --git a/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/context/BaseWorkerContextTests.java b/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/context/BaseWorkerContextTests.java
index 9d646387b..8c6e41fa0 100644
--- a/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/context/BaseWorkerContextTests.java
+++ b/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/context/BaseWorkerContextTests.java
@@ -13,6 +13,7 @@ import org.hl7.fhir.r5.utils.validation.IResourceValidator;
 import org.hl7.fhir.r5.utils.validation.ValidationContextCarrier;
 import org.hl7.fhir.utilities.FhirPublication;
 import org.hl7.fhir.utilities.ToolingClientLogger;
+import org.hl7.fhir.utilities.Utilities;
 import org.hl7.fhir.utilities.npm.BasePackageCacheManager;
 import org.hl7.fhir.utilities.npm.NpmPackage;
 import org.hl7.fhir.utilities.validation.ValidationMessage;
@@ -341,6 +342,7 @@ public class BaseWorkerContextTests {
   public void testValidateCodingWithValueSetChecker() throws IOException {
     ValidationOptions validationOptions = new ValidationOptions(FhirPublication.R5).withGuessSystem().withVersionFlexible(false);
     ValueSet valueSet = new ValueSet();
+    valueSet.setUrl(Utilities.makeUuidUrn());
     Coding coding = new Coding();
 
     Mockito.doReturn(cacheToken).when(terminologyCache).generateValidationToken(validationOptions, coding, valueSet, expParameters);
diff --git a/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/utils/client/network/ClientTest.java b/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/utils/client/network/ClientTest.java
index fe1e94411..de6aa7f8f 100644
--- a/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/utils/client/network/ClientTest.java
+++ b/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/utils/client/network/ClientTest.java
@@ -172,6 +172,6 @@ class ClientTest {
     Mockito.verify(mockLogger, Mockito.times(1))
       .logRequest(Mockito.anyString(), Mockito.anyString(), Mockito.anyList(), Mockito.any());
     Mockito.verify(mockLogger, Mockito.times(1))
-      .logResponse(Mockito.anyString(), Mockito.anyList(), Mockito.any());
+      .logResponse(Mockito.anyString(), Mockito.anyList(), Mockito.any(), Mockito.anyLong());
   }
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.report/pom.xml b/org.hl7.fhir.report/pom.xml
index dda6b248f..a497b0985 100644
--- a/org.hl7.fhir.report/pom.xml
+++ b/org.hl7.fhir.report/pom.xml
@@ -5,7 +5,7 @@
     
         ca.uhn.hapi.fhir
         org.hl7.fhir.core
-        6.3.27-SNAPSHOT
+        6.3.30-SNAPSHOT
         ../pom.xml
     
 
diff --git a/org.hl7.fhir.utilities/pom.xml b/org.hl7.fhir.utilities/pom.xml
index a2e86d2a1..1ec2a2e66 100644
--- a/org.hl7.fhir.utilities/pom.xml
+++ b/org.hl7.fhir.utilities/pom.xml
@@ -5,7 +5,7 @@
     
         ca.uhn.hapi.fhir
         org.hl7.fhir.core
-        6.3.27-SNAPSHOT
+        6.3.30-SNAPSHOT
         ../pom.xml
     
 
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/ToolingClientLogger.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/ToolingClientLogger.java
index daa6e739f..fb39acb98 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/ToolingClientLogger.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/ToolingClientLogger.java
@@ -36,7 +36,7 @@ import java.util.List;
 public interface ToolingClientLogger {
 
   void logRequest(String method, String url, List headers, byte[] body);
-  void logResponse(String outcome, List headers, byte[] body);
+  void logResponse(String outcome, List headers, byte[] body, long length);
   String getLastId();
   void clearLastId();
 
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/http/ManagedWebAccess.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/http/ManagedWebAccess.java
index 6c90c3a44..6dfaf7a35 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/http/ManagedWebAccess.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/http/ManagedWebAccess.java
@@ -64,9 +64,9 @@ public class ManagedWebAccess {
   }
 
   public enum WebAccessPolicy {
-    DIRECT, // open access to the local file system, though access can be restricted only to files under the paths in AllowedPaths
-    MANAGED, // no access except by the FileSystemProxyProvider
-    PROHIBITED, // no access at all to File() services
+    DIRECT, // open access to the web, though access can be restricted only to domains in AllowedDomains
+    MANAGED, // no access except by the IWebAccessor
+    PROHIBITED, // no access at all to the web
   }
 
   private static WebAccessPolicy accessPolicy = WebAccessPolicy.DIRECT; // for legacy reasons
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java
index e8af42a88..9925a2acb 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java
@@ -18,7 +18,9 @@ public class I18nConstants {
   public static final String BAD_FILE_PATH_ERROR = "Bad_file_path_error";
   public static final String BASE_PROFILE__HAS_NO_TYPE = "Base_profile__has_no_type";
   public static final String BASE__DERIVED_PROFILES_HAVE_DIFFERENT_TYPES____VS___ = "Base__Derived_profiles_have_different_types____vs___";
-  public static final String BINDING_ADDITIONAL = "BINDING_ADDITIONAL";
+  public static final String BINDING_ADDITIONAL_D = "BINDING_ADDITIONAL_D";
+  public static final String BINDING_ADDITIONAL_UC = "BINDING_ADDITIONAL_UC";
+  public static final String BINDING_ADDITIONAL_USAGE = "BINDING_ADDITIONAL_USAGE";
   public static final String BINDING_MAX = "BINDING_MAX";
   public static final String BUNDLE_BUNDLE_ENTRY_CANONICAL = "Bundle_BUNDLE_Entry_Canonical";
   public static final String BUNDLE_BUNDLE_ENTRY_DOCUMENT = "Bundle_BUNDLE_Entry_Document";
@@ -1111,4 +1113,7 @@ public class I18nConstants {
   public static final String SD_BASE_EXPERIMENTAL = "SD_BASE_EXPERIMENTAL";
   public static final String SD_ED_EXPERIMENTAL_BINDING = "SD_ED_EXPERIMENTAL_BINDING";
   public static final String VALIDATION_NO_EXPERIMENTAL_CONTENT = "VALIDATION_NO_EXPERIMENTAL_CONTENT";
+  public static final String SD_ED_ADDITIONAL_BINDING_USAGE_UNKNOWN = "SD_ED_ADDITIONAL_BINDING_USAGE_UNKNOWN";
+  public static final String SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_ELEMENT = "SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_ELEMENT";
+  public static final String SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_TYPE = "SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_TYPE";
 }
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java
index c3b1be7da..9a2b52a5a 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java
@@ -214,6 +214,7 @@ public class RenderingI18nContext extends I18nBase {
   public static final String DATA_REND_DATA = "DATA_REND_DATA";
   public static final String DATA_REND_DETAILS = "DATA_REND_DETAILS";
   public static final String DATA_REND_DETAILS_STATED = "DATA_REND_DETAILS_STATED";
+  public static final String DATA_REND_DETAILS_STATED_ND = "DATA_REND_DETAILS_STATED_ND";
   public static final String DATA_REND_DICOM = "DATA_REND_DICOM";
   public static final String DATA_REND_DIM = "DATA_REND_DIM";
   public static final String DATA_REND_DURATION = "DATA_REND_DURATION";
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManager.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManager.java
index ec0495874..206d90782 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManager.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManager.java
@@ -8,6 +8,7 @@ import java.text.SimpleDateFormat;
 import java.util.*;
 
 import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
 
 import lombok.Getter;
 import lombok.Setter;
@@ -77,12 +78,13 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
 
   private final FilesystemPackageCacheManagerLocks locks;
 
+  private final FilesystemPackageCacheManagerLocks.LockParameters lockParameters;
+
   // When running in testing mode, some packages are provided from the test case repository rather than by the normal means
   // the PackageProvider is responsible for this. if no package provider is defined, or it declines to handle the package, 
   // then the normal means will be used
   public interface IPackageProvider {
     boolean handlesPackage(String id, String version);
-
     InputStreamWithSrc provide(String id, String version) throws IOException;
   }
 
@@ -92,6 +94,7 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
   public static final String PACKAGE_VERSION_REGEX_OPT = "^[A-Za-z][A-Za-z0-9\\_\\-]*(\\.[A-Za-z0-9\\_\\-]+)+(\\#[A-Za-z0-9\\-\\_]+(\\.[A-Za-z0-9\\-\\_]+)*)?$";
   private static final Logger ourLog = LoggerFactory.getLogger(FilesystemPackageCacheManager.class);
   private static final String CACHE_VERSION = "3"; // second version - see wiki page
+
   @Nonnull
   private final File cacheFolder;
 
@@ -100,6 +103,7 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
   private final Map ciList = new HashMap<>();
   private JsonArray buildInfo;
   private boolean suppressErrors;
+
   @Setter
   @Getter
   private boolean minimalMemory;
@@ -113,9 +117,20 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
     @Getter
     private final List packageServers;
 
+    @With
+    @Getter
+    private final FilesystemPackageCacheManagerLocks.LockParameters lockParameters;
+
     public Builder() throws IOException {
       this.cacheFolder = getUserCacheFolder();
       this.packageServers = getPackageServersFromFHIRSettings();
+      this.lockParameters = null;
+    }
+
+    private Builder(File cacheFolder, List packageServers, FilesystemPackageCacheManagerLocks.LockParameters lockParameters) {
+      this.cacheFolder = cacheFolder;
+      this.packageServers = packageServers;
+      this.lockParameters = lockParameters;
     }
 
     private File getUserCacheFolder() throws IOException {
@@ -143,17 +158,12 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
       return PackageServer.getConfiguredServers();
     }
 
-    private Builder(File cacheFolder, List packageServers) {
-      this.cacheFolder = cacheFolder;
-      this.packageServers = packageServers;
-    }
-
     public Builder withCacheFolder(String cacheFolderPath) throws IOException {
       File cacheFolder = ManagedFileAccess.file(cacheFolderPath);
       if (!cacheFolder.exists()) {
         throw new FHIRException("The folder '" + cacheFolder + "' could not be found");
       }
-      return new Builder(cacheFolder, this.packageServers);
+      return new Builder(cacheFolder, this.packageServers, this.lockParameters);
     }
 
     public Builder withSystemCacheFolder() throws IOException {
@@ -163,32 +173,33 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
       } else {
         systemCacheFolder = ManagedFileAccess.file(Utilities.path("/var", "lib", ".fhir", "packages"));
       }
-      return new Builder(systemCacheFolder, this.packageServers);
+      return new Builder(systemCacheFolder, this.packageServers, this.lockParameters);
     }
 
     public Builder withTestingCacheFolder() throws IOException {
-      return new Builder(ManagedFileAccess.file(Utilities.path("[tmp]", ".fhir", "packages")), this.packageServers);
+      return new Builder(ManagedFileAccess.file(Utilities.path("[tmp]", ".fhir", "packages")), this.packageServers, this.lockParameters);
     }
 
     public FilesystemPackageCacheManager build() throws IOException {
-      return new FilesystemPackageCacheManager(cacheFolder, packageServers);
+      final FilesystemPackageCacheManagerLocks locks;
+      try {
+        locks = FilesystemPackageCacheManagerLocks.getFilesystemPackageCacheManagerLocks(cacheFolder);
+      } catch (RuntimeException e) {
+        if (e.getCause() instanceof IOException) {
+          throw (IOException) e.getCause();
+        } else {
+          throw e;
+        }
+      }
+      return new FilesystemPackageCacheManager(cacheFolder, packageServers, locks, lockParameters);
     }
   }
 
-  private FilesystemPackageCacheManager(@Nonnull File cacheFolder, @Nonnull List packageServers) throws IOException {
+  private FilesystemPackageCacheManager(@Nonnull File cacheFolder, @Nonnull List packageServers, @Nonnull FilesystemPackageCacheManagerLocks locks, @Nullable FilesystemPackageCacheManagerLocks.LockParameters lockParameters) throws IOException {
     super(packageServers);
     this.cacheFolder = cacheFolder;
-
-    try {
-      this.locks = FilesystemPackageCacheManagerLocks.getFilesystemPackageCacheManagerLocks(cacheFolder);
-    } catch (RuntimeException e) {
-      if (e.getCause() instanceof IOException) {
-        throw (IOException) e.getCause();
-      } else {
-        throw e;
-      }
-    }
-
+    this.locks = locks;
+    this.lockParameters = lockParameters;
     prepareCacheFolder();
   }
 
@@ -218,11 +229,35 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
           createIniFile();
         }
         deleteOldTempDirectories();
+        cleanUpCorruptPackages();
       }
       return null;
     });
   }
 
+  /*
+    Look for .lock files that are not actively held by a process. If found, delete the lock file, and the package
+    referenced.
+   */
+  protected void cleanUpCorruptPackages() throws IOException {
+    for (File file : Objects.requireNonNull(cacheFolder.listFiles())) {
+      if (file.getName().endsWith(".lock")) {
+        if (locks.getCacheLock().canLockFileBeHeldByThisProcess(file)) {
+          String packageDirectoryName = file.getName().substring(0, file.getName().length() - 5);
+          log("Detected potential incomplete package installed in cache: " + packageDirectoryName + ". Attempting to delete");
+
+          File packageDirectory = ManagedFileAccess.file(Utilities.path(cacheFolder, packageDirectoryName));
+          if (packageDirectory.exists()) {
+            Utilities.clearDirectory(packageDirectory.getAbsolutePath());
+            packageDirectory.delete();
+          }
+          file.delete();
+          log("Deleted potential incomplete package: " + packageDirectoryName);
+        }
+      }
+    }
+  }
+
   private boolean iniFileExists() throws IOException {
     String iniPath = getPackagesIniPath();
     File iniFile = ManagedFileAccess.file(iniPath);
@@ -421,7 +456,7 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
       }
 
       return null;
-    });
+    }, lockParameters);
   }
 
   /**
@@ -465,7 +500,7 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
           return null;
         }
         return loadPackageInfo(path);
-      });
+      }, lockParameters);
       if (foundPackage != null) {
         if (foundPackage.isIndexed()){
           return foundPackage;
@@ -488,7 +523,7 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
             String path = Utilities.path(cacheFolder, foundPackageFolder);
             output.checkIndexed(path);
             return output;
-          });
+          }, lockParameters);
           }
       }
     }
@@ -589,7 +624,7 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
         throw e;
       }
       return npmPackage;
-    });
+    }, lockParameters);
   }
 
   private void log(String s) {
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManagerLocks.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManagerLocks.java
index d674c750e..b32dda96d 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManagerLocks.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/FilesystemPackageCacheManagerLocks.java
@@ -1,14 +1,19 @@
 package org.hl7.fhir.utilities.npm;
 
 import lombok.Getter;
-import org.hl7.fhir.utilities.TextFile;
+import lombok.With;
 import org.hl7.fhir.utilities.Utilities;
+import org.hl7.fhir.utilities.filesystem.ManagedFileAccess;
 
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
 import java.io.File;
 import java.io.IOException;
 import java.io.RandomAccessFile;
+import java.nio.ByteBuffer;
 import java.nio.channels.FileChannel;
 import java.nio.channels.FileLock;
+import java.nio.charset.StandardCharsets;
 import java.nio.file.*;
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.TimeUnit;
@@ -27,9 +32,23 @@ public class FilesystemPackageCacheManagerLocks {
 
   private final File cacheFolder;
 
-  private final Long lockTimeoutTime;
+  private static final LockParameters lockParameters = new LockParameters();
 
-  private final TimeUnit lockTimeoutTimeUnit;
+  public static class LockParameters {
+    @Getter @With
+    private final long lockTimeoutTime;
+    @Getter @With
+    private final TimeUnit lockTimeoutTimeUnit;
+
+    public LockParameters() {
+      this(60L, TimeUnit.SECONDS);
+    }
+
+    public LockParameters(long lockTimeoutTime, TimeUnit lockTimeoutTimeUnit) {
+      this.lockTimeoutTime = lockTimeoutTime;
+      this.lockTimeoutTimeUnit = lockTimeoutTimeUnit;
+    }
+  }
 
   /**
    * This method is intended to be used only for testing purposes.
@@ -43,21 +62,9 @@ public class FilesystemPackageCacheManagerLocks {
    * @throws IOException
    */
   public FilesystemPackageCacheManagerLocks(File cacheFolder) throws IOException {
-    this(cacheFolder, 60L, TimeUnit.SECONDS);
-  }
-
-  private FilesystemPackageCacheManagerLocks(File cacheFolder, Long lockTimeoutTime, TimeUnit lockTimeoutTimeUnit) throws IOException {
     this.cacheFolder = cacheFolder;
-    this.lockTimeoutTime = lockTimeoutTime;
-    this.lockTimeoutTimeUnit = lockTimeoutTimeUnit;
   }
 
-  /**
-   * This method is intended to be used only for testing purposes.
-   */
-  protected FilesystemPackageCacheManagerLocks withLockTimeout(Long lockTimeoutTime, TimeUnit lockTimeoutTimeUnit) throws IOException {
-    return new FilesystemPackageCacheManagerLocks(cacheFolder, lockTimeoutTime, lockTimeoutTimeUnit);
-  }
 
   /**
    * Returns a single FilesystemPackageCacheManagerLocks instance for the given cacheFolder.
@@ -102,6 +109,19 @@ public class FilesystemPackageCacheManagerLocks {
       }
       return result;
     }
+
+    public boolean canLockFileBeHeldByThisProcess(File lockFile) throws IOException {
+      return doWriteWithLock(() -> {
+      try (FileChannel channel = new RandomAccessFile(lockFile, "rw").getChannel()) {
+        FileLock fileLock = channel.tryLock(0, Long.MAX_VALUE, false);
+        if (fileLock != null) {
+          fileLock.release();
+          channel.close();
+          return true;
+        }
+      }
+      return false;});
+    }
   }
 
   public class PackageLock {
@@ -114,15 +134,43 @@ public class FilesystemPackageCacheManagerLocks {
       this.lock = lock;
     }
 
-    private void checkForLockFileWaitForDeleteIfExists(File lockFile) throws IOException {
+    private void checkForLockFileWaitForDeleteIfExists(File lockFile, @Nonnull LockParameters lockParameters) throws IOException {
       if (!lockFile.exists()) {
         return;
       }
+
+      // Check if the file is locked by a process. If it is not, it is likely an incomplete package cache install, and
+      // we should throw an exception.
+      if (lockFile.isFile()) {
+        try (FileChannel channel = new RandomAccessFile(lockFile, "rw").getChannel()) {
+          FileLock fileLock = channel.tryLock(0, Long.MAX_VALUE, false);
+          if (fileLock != null) {
+            fileLock.release();
+            channel.close();
+            throw new IOException("Lock file exists, but is not locked by a process: " + lockFile.getName());
+          }
+          System.out.println("File is locked.");
+        }
+      }
+      try {
+        waitForLockFileDeletion(lockFile, lockParameters);
+      } catch (InterruptedException e) {
+        Thread.currentThread().interrupt();
+        throw new IOException("Thread interrupted while waiting for lock", e);
+      }
+    }
+
+    /*
+     Wait for the lock file to be deleted. If the lock file is not deleted within the timeout or if the thread is
+     interrupted, an IOException is thrown.
+     */
+    private void waitForLockFileDeletion(File lockFile, @Nonnull LockParameters lockParameters) throws IOException, InterruptedException {
+
       try (WatchService watchService = FileSystems.getDefault().newWatchService()) {
         Path dir = lockFile.getParentFile().toPath();
         dir.register(watchService, StandardWatchEventKinds.ENTRY_DELETE);
 
-        WatchKey key = watchService.poll(lockTimeoutTime, lockTimeoutTimeUnit);
+        WatchKey key = watchService.poll(lockParameters.lockTimeoutTime, lockParameters.lockTimeoutTimeUnit);
         if (key == null) {
           // It is possible that the lock file is deleted before the watch service is registered, so if we timeout at
           // this point, we should check if the lock file still exists.
@@ -141,24 +189,33 @@ public class FilesystemPackageCacheManagerLocks {
             key.reset();
           }
         }
-      } catch (InterruptedException e) {
-        Thread.currentThread().interrupt();
-        throw new IOException("Error reading package.", e);
       } catch (TimeoutException e) {
-        throw new IOException("Error reading package.", e);
+        throw new IOException("Package cache timed out waiting for lock.", e);
       }
     }
 
 
-    public  T doReadWithLock(FilesystemPackageCacheManager.CacheLockFunction f) throws IOException {
+    /**
+     * Wraps the execution of a package read function with the appropriate cache, package, and .lock file locking and
+     * checks.
+     *
+     * @param function The function to execute
+     * @param lockParameters The parameters for the lock
+     * @return The return of the function
+     * @param  The return type of the function
+     * @throws IOException If an error occurs while managing locking.
+     */
+    public  T doReadWithLock(FilesystemPackageCacheManager.CacheLockFunction function, @Nullable LockParameters lockParameters) throws IOException {
+      final LockParameters resolvedLockParameters = lockParameters != null ? lockParameters : FilesystemPackageCacheManagerLocks.lockParameters;
+
       cacheLock.getLock().readLock().lock();
       lock.readLock().lock();
 
-      checkForLockFileWaitForDeleteIfExists(lockFile);
+      checkForLockFileWaitForDeleteIfExists(lockFile, resolvedLockParameters);
 
       T result = null;
       try {
-        result = f.get();
+        result = function.get();
       } finally {
         lock.readLock().unlock();
         cacheLock.getLock().readLock().unlock();
@@ -166,35 +223,55 @@ public class FilesystemPackageCacheManagerLocks {
       return result;
     }
 
-    public  T doWriteWithLock(FilesystemPackageCacheManager.CacheLockFunction f) throws IOException {
+    /**
+     * Wraps the execution of a package write function with the appropriate cache, package, and .lock file locking and
+     * checks.
+     *
+     * @param function The function to execute
+     * @param lockParameters The parameters for the lock
+     * @return The return of the function
+     * @param  The return type of the function
+     * @throws IOException If an error occurs while managing locking.
+     */
+    public  T doWriteWithLock(FilesystemPackageCacheManager.CacheLockFunction function, @Nullable LockParameters lockParameters) throws IOException {
+      final LockParameters resolvedLockParameters = lockParameters != null ? lockParameters : FilesystemPackageCacheManagerLocks.lockParameters;
+
       cacheLock.getLock().writeLock().lock();
       lock.writeLock().lock();
 
-      if (!lockFile.isFile()) {
-        try {
-          TextFile.stringToFile("", lockFile);
-        } catch (IOException e) {
-          e.printStackTrace();
-          return null;
-        }
-      }
+       /*TODO Eventually, this logic should exist in a Lockfile class so that it isn't duplicated between the main code and
+          the test code.
+        */
       try (FileChannel channel = new RandomAccessFile(lockFile, "rw").getChannel()) {
-        FileLock fileLock = null;
-        while (fileLock == null) {
-          fileLock = channel.tryLock(0, Long.MAX_VALUE, true);
-          if (fileLock == null) {
-            Thread.sleep(100); // Wait and retry
-          }
+
+        FileLock fileLock = channel.tryLock(0, Long.MAX_VALUE, false);
+
+        if (fileLock == null) {
+          waitForLockFileDeletion(lockFile, resolvedLockParameters);
+          fileLock = channel.tryLock(0, Long.MAX_VALUE, false);
+        }
+        if (fileLock == null) {
+          throw new IOException("Failed to acquire lock on file: " + lockFile.getName());
+        }
+
+        if (!lockFile.isFile()) {
+          final ByteBuffer buff = ByteBuffer.wrap(String.valueOf(ProcessHandle.current().pid()).getBytes(StandardCharsets.UTF_8));
+          channel.write(buff);
         }
         T result = null;
         try {
-          result = f.get();
+          result = function.get();
         } finally {
+
+          lockFile.renameTo(ManagedFileAccess.file(File.createTempFile(lockFile.getName(), ".lock-renamed").getAbsolutePath()));
+
           fileLock.release();
           channel.close();
+
           if (!lockFile.delete()) {
             lockFile.deleteOnExit();
           }
+
           lock.writeLock().unlock();
           cacheLock.getLock().writeLock().unlock();
         }
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/PackageHacker.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/PackageHacker.java
index 225bdd409..05e7e94c4 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/PackageHacker.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/npm/PackageHacker.java
@@ -12,6 +12,7 @@ import java.util.Map;
 
 import org.hl7.fhir.utilities.TextFile;
 import org.hl7.fhir.utilities.Utilities;
+import org.hl7.fhir.utilities.VersionUtilities;
 import org.hl7.fhir.utilities.filesystem.ManagedFileAccess;
 import org.hl7.fhir.utilities.json.model.JsonArray;
 import org.hl7.fhir.utilities.json.model.JsonObject;
@@ -43,7 +44,44 @@ public class PackageHacker {
 //    new PackageHacker().edit("/Users/grahamegrieve/web/hl7.org/fhir/6.0.0-ballot2/hl7.fhir.r6.search.tgz");
     
 //      new PackageHacker().edit("/Users/grahamegrieve/web/hl7.org/fhir/us/core/v311/package.tgz", "http://hl7.org/fhir/us/core/STU3.1.1");
-      new PackageHacker().edit("/Users/grahamegrieve/web/hl7.org/fhir/us/core/v700/package.tgz", "http://hl7.org/fhir/us/core/STU7");
+     // new PackageHacker().edit("/Users/grahamegrieve/web/hl7.org/fhir/us/core/v700/package.tgz", "http://hl7.org/fhir/us/core/STU7");
+    
+    PackageHacker self = new PackageHacker();
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/1.0.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/1.0.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/2.0.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/2.0.0/hl7.terminology.r4b.tgz");
+    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/2.1.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/2.1.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/3.0.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/3.0.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/3.1.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/3.1.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/4.0.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/4.0.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/5.0.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/5.0.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/5.1.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/5.1.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/5.2.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/5.2.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/5.3.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/5.3.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/5.4.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/5.4.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/5.5.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/5.5.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/6.0.0/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/6.0.0/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/6.0.1/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/6.0.1/hl7.terminology.r4b.tgz");
+//    self.cloneToR4B("/Users/grahamegrieve/web/terminology.hl7.org/6.0.2/hl7.terminology.r4.tgz", "/Users/grahamegrieve/web/terminology.hl7.org/6.0.2/hl7.terminology.r4b.tgz");    
+  }
+
+  private void cloneToR4B(String src, String dst) throws IOException {
+    FileInputStream fs = ManagedFileAccess.inStream(src);
+    NpmPackage pck = NpmPackage.fromPackage(fs);
+    System.out.println(nice(pck.getNpm()));
+    JsonObject json = pck.getNpm();
+    String name = json.asString("name");
+    json.remove("name");
+    json.add("name", name.replace(".r4", ".r4b"));
+    json.remove("fhirVersions");
+    json.remove("dependencies");
+    JsonArray fv = new JsonArray();
+    json.add("fhirVersions", fv);
+    fv.add("4.3.0");
+    JsonObject dep = new JsonObject();
+    json.add("dependencies", dep);
+    dep.add(VersionUtilities.packageForVersion("4.3.0"), "4.3.0");
+    pck.save(new FileOutputStream(dst));
   }
 
 //  private void massEdit(File dir) throws IOException {
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/tests/CacheVerificationLogger.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/tests/CacheVerificationLogger.java
index 1be1eab5b..2ff232a1e 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/tests/CacheVerificationLogger.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/tests/CacheVerificationLogger.java
@@ -33,7 +33,7 @@ public class CacheVerificationLogger implements ToolingClientLogger {
   }
 
   @Override
-  public void logResponse(String outcome, List headers, byte[] body) {
+  public void logResponse(String outcome, List headers, byte[] body, long start) {
 
   }
 
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/IXMLWriter.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/IXMLWriter.java
index 80459e7ad..826ac97c0 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/IXMLWriter.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/IXMLWriter.java
@@ -1,5 +1,5 @@
-package org.hl7.fhir.utilities.xml;
-
+package org.hl7.fhir.utilities.xml;
+
 /*
   Copyright (c) 2011+, HL7, Inc.
   All rights reserved.
@@ -28,80 +28,85 @@ package org.hl7.fhir.utilities.xml;
   POSSIBILITY OF SUCH DAMAGE.
   
  */
-
-
-
-import java.io.IOException;
-
-import org.hl7.fhir.utilities.ElementDecoration;
-
-
-/**
- * Generalize 
- * @author dennisn
- */
-public interface IXMLWriter {
-	
-  public abstract void start() throws IOException;
-  public abstract void end() throws IOException;
-
-	public abstract void attribute(String namespace, String name, String value, boolean onlyIfNotEmpty) throws IOException;
-	public abstract void attribute(String namespace, String name, String value) throws IOException;
-	public abstract void attribute(String name, String value, boolean onlyIfNotEmpty) throws IOException;
-	public abstract void attribute(String name, String value) throws IOException;
-	public abstract void attributeNoLines(String name, String value) throws IOException;
-
-	public abstract boolean namespaceDefined(String namespace);
-	public abstract boolean abbreviationDefined(String abbreviation);
-	public abstract String getDefaultNamespace();
-	public abstract void namespace(String namespace) throws IOException;
-	public abstract void setDefaultNamespace(String namespace) throws IOException;
-	public abstract void namespace(String namespace, String abbreviation) throws IOException;
-	
-	public abstract void comment(String comment, boolean doPretty) throws IOException;
-	public abstract void decorate(ElementDecoration decoration) throws IOException;
-	public abstract void setSchemaLocation(String ns, String loc) throws IOException;
-
-  public abstract void enter(String name) throws IOException;
-	public abstract void enter(String namespace, String name) throws IOException;
-	public abstract void enter(String namespace, String name, String comment) throws IOException;
-	
-  public abstract void exit() throws IOException;
-	public abstract void exit(String name) throws IOException;
-	public abstract void exit(String namespace, String name) throws IOException;
-	public abstract void exitToLevel(int count) throws IOException;
-
-
-	public abstract void element(String namespace, String name, String content,	boolean onlyIfNotEmpty) throws IOException;
-	public abstract void element(String namespace, String name, String content,	String comment) throws IOException;
-	public abstract void element(String namespace, String name, String content)	throws IOException;
-	public abstract void element(String name, String content,	boolean onlyIfNotEmpty) throws IOException;
-	public abstract void element(String name, String content)	throws IOException;
-	public abstract void element(String name) throws IOException;
-
-	public abstract void text(String content) throws IOException;
-	public abstract void text(String content, boolean dontEscape) throws IOException;
-
-	public abstract void cData(String text) throws IOException;
-
-	public abstract void writeBytes(byte[] bytes) throws IOException;
-
-	public abstract boolean isPretty() throws IOException;
-	public abstract void setPretty(boolean pretty) throws IOException;
-
-	/**
-	 * Start comment inserts a 
-	 * so the comment doesn't close prematurely.
-	 * @throws IOException 
-	 */
-	public abstract void startCommentBlock() throws IOException;
-	public abstract void endCommentBlock() throws IOException;
-	public abstract void escapedText(String content) throws IOException;
-	
-	// this is only implemented by an implementation that is producing an xhtml representation, and is able to render elements as hyperlinks 
-  public abstract void link(String href);
-  public abstract void anchor(String name);
-  public abstract void externalLink(String ref) throws IOException;
+
+
+
+import java.io.IOException;
+
+import org.hl7.fhir.utilities.ElementDecoration;
+
+
+/**
+ * Generalize 
+ * @author dennisn
+ */
+public interface IXMLWriter {
+	
+  public abstract void start() throws IOException;
+  public abstract void end() throws IOException;
+
+	public abstract void attribute(String namespace, String name, String value, boolean onlyIfNotEmpty) throws IOException;
+	public abstract void attribute(String namespace, String name, String value) throws IOException;
+	public abstract void attribute(String name, String value, boolean onlyIfNotEmpty) throws IOException;
+	public abstract void attribute(String name, String value) throws IOException;
+	public abstract void attributeNoLines(String name, String value) throws IOException;
+
+	public abstract boolean namespaceDefined(String namespace);
+	public abstract boolean abbreviationDefined(String abbreviation);
+	public abstract String getDefaultNamespace();
+	public abstract void namespace(String namespace) throws IOException;
+	public abstract void setDefaultNamespace(String namespace) throws IOException;
+	public abstract void namespace(String namespace, String abbreviation) throws IOException;
+	
+	public abstract void comment(String comment, boolean doPretty) throws IOException;
+	public abstract void decorate(ElementDecoration decoration) throws IOException;
+	public abstract void setSchemaLocation(String ns, String loc) throws IOException;
+
+  public abstract void enter(String name) throws IOException;
+	public abstract void enter(String namespace, String name) throws IOException;
+	public abstract void enter(String namespace, String name, String comment) throws IOException;
+	
+  public abstract void exit() throws IOException;
+	public abstract void exit(String name) throws IOException;
+	public abstract void exit(String namespace, String name) throws IOException;
+	public abstract void exitToLevel(int count) throws IOException;
+
+
+	public abstract void element(String namespace, String name, String content,	boolean onlyIfNotEmpty) throws IOException;
+	public abstract void element(String namespace, String name, String content,	String comment) throws IOException;
+	public abstract void element(String namespace, String name, String content)	throws IOException;
+	public abstract void element(String name, String content,	boolean onlyIfNotEmpty) throws IOException;
+	public abstract void element(String name, String content)	throws IOException;
+	public abstract void element(String name) throws IOException;
+
+	public abstract void text(String content) throws IOException;
+	public abstract void text(String content, boolean dontEscape) throws IOException;
+
+	public abstract void cData(String text) throws IOException;
+
+	public abstract void writeBytes(byte[] bytes) throws IOException;
+
+	public abstract boolean isPretty() throws IOException;
+	public abstract void setPretty(boolean pretty) throws IOException;
+
+	/**
+	 * Start comment inserts a 
+	 * so the comment doesn't close prematurely.
+	 * @throws IOException 
+	 */
+	public abstract void startCommentBlock() throws IOException;
+	public abstract void endCommentBlock() throws IOException;
+	public abstract void escapedText(String content) throws IOException;
+	
+	// this is only implemented by an implementation that is producing an xhtml representation, and is able to render elements as hyperlinks 
+  public abstract void link(String href);
+  public abstract void anchor(String name);
+  public abstract void externalLink(String ref) throws IOException;
+
+  // this is only implemented by an implementation that is producing an xhtml representation and handles ellipsing elements
+  public abstract boolean canElide();
+  public abstract void elide() throws IOException;
+  public abstract void attributeElide();
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/XMLWriter.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/XMLWriter.java
index a8e40fee0..cedf9ed71 100644
--- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/XMLWriter.java
+++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xml/XMLWriter.java
@@ -1,5 +1,5 @@
-package org.hl7.fhir.utilities.xml;
-
+package org.hl7.fhir.utilities.xml;
+
 /*
   Copyright (c) 2011+, HL7, Inc.
   All rights reserved.
@@ -28,889 +28,901 @@ package org.hl7.fhir.utilities.xml;
   POSSIBILITY OF SUCH DAMAGE.
   
  */
-
-
-
-import java.io.IOException;
-import java.io.OutputStream;
-import java.io.OutputStreamWriter;
-import java.io.UnsupportedEncodingException;
-
-import org.hl7.fhir.utilities.ElementDecoration;
-
-/**
- * XML Writer class.
- */
-public class XMLWriter extends OutputStreamWriter implements IXMLWriter {
-
-	private boolean xmlHeader = true;
-	private String charset;
-	private boolean prettyBase;
-	private boolean prettyHeader;
-	private boolean pendingClose;
-	private boolean pendingOpen;
-	private String pendingComment;
-	private int lineType = LINE_UNIX;
-	private OutputStream stream;
-	private boolean started = false;
-	private String[] specialAttributeNames = new String[] {"id", "name" };
-	private boolean sortAttributes;
-	private int attributeLineWrap;
-  private boolean xml1_1;
-	
-	public final static int LINE_UNIX = 0;
-	public final static int LINE_WINDOWS = 1;
-
-  public XMLWriter(OutputStream stream, String charset, boolean xml1_1) throws UnsupportedEncodingException {    
-    super(stream, charset);
-    this.stream = stream;
-    this.charset = charset;
-    this.xml1_1 = xml1_1;
-  }
-	public XMLWriter(OutputStream stream, String charset) throws UnsupportedEncodingException {
-		super(stream, charset);
-		this.stream = stream;
-		this.charset = charset;
-    this.xml1_1 = false;
-	}
-
-	protected boolean condition(boolean bTest, String message) throws IOException {
-		if (!bTest)
-			throw new IOException(message);
-		return bTest;
-	}
-
-	// -- writing context ------------------------------------------------
-
-
-	
-	/**
-	 * Returns the encoding.
-	 * 
-	 * @param charset
-	 * @return encoding
-	 * @throws IOException
-	 */
-	public static String getXMLCharsetName(String charset) throws IOException {
-		if (charset == null || charset.equals(""))
-			return "UTF-8";
-		else if (charset.equals("US-ASCII"))
-			return "UTF-8";
-		else if (XMLUtil.charSetImpliesAscii(charset))
-			return "ISO-8859-1";
-		else if (charset.equals("UTF-8"))
-			return "UTF-8";
-		else if (charset.equals("UTF-16") || charset.equals("UTF-16BE") || charset.equals("UTF-16LE"))
-			return "UTF-16";
-		else 
-			throw new IOException("Unknown charset encoding "+charset);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#start()
-	 */
-	@Override
-	public void start() throws IOException {
-		condition(!started, "attempt to start after starting");
-		levels.clear();
-		attributes = null;
-		try {
-			if (xmlHeader) {
-				write("");
-				if (prettyBase || prettyHeader)
-					write(lineType == LINE_UNIX ? "\n" : "\r\n");
-			}
-		} catch (UnsupportedEncodingException e) {
-			// TODO Auto-generated catch block
-			throw new IOException(e.getMessage());
-		}
-		started = true;
-	}
-
-	private void checkStarted () throws IOException {
-		condition(started, "not started");
-	}
-
-	private void checkInElement() throws IOException {
-		condition(levels.size() > 0, "not in an element");
-	}
-
-	// -- attributes ----------------------------------------------------
-
-	private String[][] attributes;
-	
-	private void addAttribute(String name, String value) throws IOException {
-		addAttribute(name, value, false);
-	}
-
-	private void addAttribute(String name, String value, boolean noLines) throws IOException {
-		if (!XMLUtil.isNMToken(name))
-			throw new IOException("XML name "+name+" is not valid for value '"+value+"'");
-
-		newLevelIfRequired();
-		value = XMLUtil.escapeXML(value, charset, noLines);
-
-		if (attributes == null) 
-			attributes = new String[][] {{name, value}};
-		else {
-			String[][] newattr = new String[attributes.length+1][];
-			for (int i = 0; i < attributes.length; i++) {
-				condition(!attributes[i][0].equals(name), "attempt to define attribute with name "+name+" more than once for value '"+value+"'");
-				newattr[i] = attributes[i];
-			}
-			attributes = newattr;
-			attributes[attributes.length-1] = new String[] {name, value};
-		}
-	}
-
-	protected String getAttribute(String name) {
-		if (attributes != null) {
-			for (int i = 0; i < attributes.length; i++) {
-				if (attributes[i][0].equals(name)) {
-					return attributes[i][1];
-				}
-			}			
-		}
-		return null;
-	}
-	
-	protected void setAttribute(String name, String value) throws IOException {
-		newLevelIfRequired();
-		if (attributes == null) 
-			addAttribute(name, value, false);
-		else {
-			for (int i = 0; i < attributes.length; i++) {
-				if (attributes[i][0].equals(name)) {
-					attributes[i][1] = XMLUtil.escapeXML(value, charset, false);
-					return;
-				}
-			}
-			addAttribute(name, value);
-		}
-	}
-
-	protected void commitAttributes() throws IOException {
-		
-	}
-
-	
-	private boolean nameIsSpecial(String name) {
-		for (int i = 0; i < specialAttributeNames.length; i++) {
-			String n = specialAttributeNames[i];
-			if (n.equalsIgnoreCase(name))
-				return true;
-		}
-		return false;
-	}
-	
-	private void writeAttributes(int col) throws IOException {
-		commitAttributes();
-		if (attributes != null && sortAttributes)
-			sortAttributes();	
-		int c = col;
-		c = writeAttributeSet(true, c, col);
-		writeAttributeSet(false, c, col);
-		attributes = null;
-	}
-
-
-	private void sortAttributes() {
-		// bubble sort - look, it's easy
-		for (int i = 0; i < attributes.length - 1; i++) {
-			for (int j = 0; j < attributes.length - 1; j++) {
-				if (String.CASE_INSENSITIVE_ORDER.compare(attributes[j][0], attributes[j+1][0]) < 0) {
-					String[] t = attributes[j];
-					attributes[j] = attributes[j+1];
-					attributes[j+1] = t;
-				}
-			}
-		}
-		
-	}
-
-
-	private int writeAttributeSet(boolean special, int col, int wrap) throws IOException {
-		// first pass: name, id
-		if (attributes != null) {
-			for (int i=0; i < attributes.length; i++) {
-				String[] element = attributes[i];
-				if (nameIsSpecial(element[0]) == special) {
-					col = col + element[0].length()+element[1].length() + 4;
-					if (isPretty() && attributeLineWrap > 0 && col > attributeLineWrap && col > wrap) {
-						write(lineType == LINE_UNIX ? "\n" : "\r\n");
-						for (int j = 0; j < wrap; j++)
-							write(" ");
-						col = wrap;
-					}
-					write(' ');
-					write(element[0]);
-					write("=\"");
-					if (element[1] != null)
-						write(xmlEscape(element[1]));
-					write("\"");
-				}
-			}
-		}
-		return col;
-	}
-
-	 protected String xmlEscape(String s) {
-     StringBuilder b = new StringBuilder();
-     for (char c : s.toCharArray()) {
-       if (c < ' ') {
-         b.append("&#x");
-         b.append(Integer.toHexString(c).toUpperCase());
-         b.append(";");
-       } else
-         b.append(c);
-     }
-     return b.toString();
-   }
-
-	 /* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String, java.lang.String, boolean)
-	 */
-	@Override
-	public void attribute(String namespace, String name, String value, boolean onlyIfNotEmpty) throws IOException {
-		if (!onlyIfNotEmpty || value != null && !value.equals(""))
-			attribute(namespace, name, value);
-	}
-	
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void attribute(String namespace, String name, String value) throws IOException {
-
-		checkStarted();
-		if (namespace == null || namespace.equals("")) 
-			addAttribute(name, value);
-		else
-			addAttribute(getNSAbbreviation(namespace)+name, value);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String, boolean)
-	 */
-	@Override
-	public void attribute(String name, String value, boolean onlyIfNotEmpty) throws IOException {
-		if (!onlyIfNotEmpty || value != null && !value.equals(""))
-			attribute(name, value);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void attribute(String name, String value) throws IOException {
-		checkStarted();
-		addAttribute(name, value);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attributeNoLines(java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void attributeNoLines(String name, String value) throws IOException {
-		checkStarted();
-		addAttribute(name, value, true);
-	}
-
-	// -- levels -------------------------------------------------
-
-	private XMLWriterStateStack levels = new XMLWriterStateStack();
-
-	private void newLevelIfRequired() throws IOException {
-		if (!pendingOpen) {
-			if (!levels.empty())
-				levels.current().seeChild();
-			XMLWriterState level = new XMLWriterState();
-			level.setPretty(isPretty());
-			levels.push(level);
-			pendingOpen = true;
-		}
-	}
-
-	// -- namespaces ---------------------------------------------
-
-
-	private void defineNamespace(String namespace, String abbrev) throws IOException {
-		checkStarted();
-		if (namespace != null && !namespace.equals("")) {
-			if ("".equals(abbrev))
-				abbrev = null;
-
-			newLevelIfRequired();
-
-			levels.current().addNamespaceDefn(namespace, abbrev);
-			if (abbrev == null)
-				addAttribute("xmlns", namespace);
-			else
-				addAttribute("xmlns:"+abbrev, namespace);
-		}
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#findByNamespace(java.lang.String)
-	 */
-	public XMLNamespace findByNamespace(String namespace) {
-		for (int i = levels.size() - 1; i >= 0; i--) {
-			XMLNamespace ns = levels.item(i).getDefnByNamespace(namespace);
-			if (ns != null)
-				return ns;
-		}
-		return null;
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#namespaceDefined(java.lang.String)
-	 */
-	@Override
-	public boolean namespaceDefined(String namespace) {
-		return namespace == null || namespace.equals("") || findByNamespace(namespace) != null;
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#findByAbbreviation(java.lang.String)
-	 */
-	public XMLNamespace findByAbbreviation(String abbreviation) {
-		for (int i = levels.size() - 1; i >= 0; i--) {
-			XMLNamespace ns = levels.item(i).getDefnByAbbreviation(abbreviation);
-			if (ns != null)
-				return ns;
-		}
-		return null;
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#abbreviationDefined(java.lang.String)
-	 */
-	@Override
-	public boolean abbreviationDefined(String abbreviation) {
-		return findByAbbreviation(abbreviation) != null;
-	}
-
-	protected XMLNamespace findDefaultNamespace() {
-		for (int i = levels.size() - 1; i >= 0; i--) {
-			XMLNamespace ns = levels.item(i).getDefaultNamespace();
-			if (ns != null)
-				return ns;
-		}
-		return null;
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#getDefaultNamespace()
-	 */
-	@Override
-	public String getDefaultNamespace() {
-		XMLNamespace ns = findDefaultNamespace();
-		if (ns == null)
-			return null;
-		else
-			return ns.getNamespace();
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#namespace(java.lang.String)
-	 */
-	@Override
-	public void namespace(String namespace) throws IOException {
-		if (!namespaceDefined(namespace)) {
-			int index = 0;
-			while (abbreviationDefined("ns"+Integer.toString(index))) 
-				index++;
-			defineNamespace(namespace, "ns"+Integer.toString(index));
-		}
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#defaultNamespace(java.lang.String)
-	 * 
-	 * Replace defaultNamespace()
-	 */
-	@Override
-	public void setDefaultNamespace(String namespace) throws IOException {
-		if ((namespace == null && getDefaultNamespace() != null) ||
-				(namespace != null && !namespace.equals(getDefaultNamespace())))
-			defineNamespace(namespace, "");			
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#namespace(java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void namespace(String namespace, String abbreviation) throws IOException {
-		XMLNamespace ns = findByAbbreviation(abbreviation);
-		if (ns == null || !ns.getNamespace().equals(namespace))
-			defineNamespace(namespace, abbreviation);
-	}
-
-
-	private String getNSAbbreviation(String namespace) throws IOException {
-		if ("http://www.w3.org/XML/1998/namespace".equals(namespace))
-			return "xml:";
-		
-		if (namespace == null || "".equals(namespace) || "noNamespace".equals(namespace))
-			return "";
-		
-		XMLNamespace ns = findByNamespace(namespace);
-		if (ns == null)
-			throw new IOException("Namespace "+namespace+" is not defined");
-		else if (ns.getAbbreviation() == null)
-			return "";
-		else
-			return ns.getAbbreviation()+":";
-	}
-
-	// -- public API -----------------------------------------------------------
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#comment(java.lang.String, boolean)
-	 */
-	@Override
-	public void comment(String comment, boolean doPretty) throws IOException {
-		checkStarted();
-		if (pendingClose) { 
-			write('>');
-			writePendingComment();
-			pendingClose = false;
-		}
-		if (doPretty) {
-			writePretty();
-		}
-		if (levels.inComment())
-			write("  ");
-		if (doPretty && !isPretty())
-			writePretty();
-	}
-
-
-	private void writePendingComment() throws IOException {
-		if (pendingComment != null) {
-			if (isPretty())
-				write("   ");
-			if (levels.inComment())
-				write("");
-		}
-	}
-	
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#open(java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void enter(String namespace, String name) throws IOException {
-		enter(namespace, name, null);
-	}
-
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#open(java.lang.String, java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void enter(String namespace, String name, String comment) throws IOException {
-		if (name == null)
-			throw new Error("name == null");
-		if (!XMLUtil.isNMToken(name))
-			throw new IOException("XML name "+name+" is not valid");
-		checkStarted();
-		if (pendingClose) { 
-			write('>');
-			writePendingComment();
-			pendingClose = false;
-		}
-
-		if (name == null) {
-			throw new IOException("name is null");
-		}
-		newLevelIfRequired();
-		levels.current().setName(name);
-		levels.current().setNamespace(namespace);
-		int col = writePretty();
-		write('<');
-		if (namespace == null) {
-			write(name);
-			col = col + name.length()+1;
-		} else {
-			String n = getNSAbbreviation(namespace)+name;
-			write(n);
-			col = col + n.length()+1;
-		}
-		writeAttributes(col);
-		pendingOpen = false;
-		pendingClose = true;
-		pendingComment = comment;
-	}
-
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#close(java.lang.String)
-	 */
-	@Override
-	public void exit(String name) throws IOException {
-		checkStarted();
-		if (levels.empty())
-			throw new IOException("Unable to close null|"+name+", nothing to close");
-		if (levels.current().getNamespace() != null || !levels.current().getName().equals(name))
-			throw new IOException("Unable to close null|"+name+", found "+levels.current().getNamespace()+"|"+levels.current().getName());
-		exit();
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#close(java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void exit(String namespace, String name) throws IOException {
-		checkStarted();
-		if (levels.empty())
-			throw new IOException("Unable to close "+namespace+"|"+name+", nothing to close");
-		if (levels == null)
-			throw new Error("levels = null");
-		if (levels.current() == null)
-			throw new Error("levels.current() = null");
-		if (levels.current().getName() == null)
-			throw new Error("levels.current().getName() = null");
-		if (levels.current().getNamespace() == null)
-			throw new Error("levels.current().getNamespace() = null");
-		if (name == null)
-			throw new Error("name = null");
-		if (namespace == null)
-			throw new Error("namespace = null");
-		if (!levels.current().getNamespace().equals(namespace) || !levels.current().getName().equals(name))
-			throw new IOException("Unable to close "+namespace+"|"+name+", found "+levels.current().getNamespace()+"|"+levels.current().getName());
-		exit();
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#closeToLevel(int)
-	 */
-	@Override
-	public void exitToLevel(int count) throws IOException {
-    checkStarted();
-		while (levels.size() > count)
-			exit();		
-	}
-
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#close()
-	 */
-  @Override
-  public void close() throws IOException {
-    checkStarted();
-    if (!levels.empty()) 
-      throw new IOException("Called close before exiting all opened elements");
-     super.close();
-  }
-    
-  @Override
-  public void end() throws IOException {
-    checkStarted();
-    if (!levels.empty()) 
-      throw new IOException("Called end() before exiting all opened elements");
-     flush();
-  }
-	@Override
-	public void exit() throws IOException {
-		checkStarted();
-		if (levels.empty()) {
-			throw new IOException("Called exit one too many times");
-		} else {
-			if (pendingClose) { 
-				write("/>");
-				writePendingComment();
-				pendingClose = false;
-			} else {
-				if (levels.current().hasChildren())
-					writePretty();
-				write("');
-			}
-			levels.pop();
-		}
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#open(java.lang.String)
-	 */
-	@Override
-	public void enter(String name) throws IOException {
-		enter(null, name);
-	}
-
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, java.lang.String, boolean)
-	 */
-	@Override
-	public void element(String namespace, String name, String content, boolean onlyIfNotEmpty) throws IOException {
-		if (!onlyIfNotEmpty || content != null && !content.equals(""))
-			element(namespace, name, content);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void element(String namespace, String name, String content, String comment) throws IOException {
-		if (!XMLUtil.isNMToken(name))
-			throw new IOException("XML name "+name+" is not valid");
-		enter(namespace, name, comment);
-		text(content);
-		exit();
-	}
-	
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void element(String namespace, String name, String content) throws IOException {
-		if (!XMLUtil.isNMToken(name))
-			throw new IOException("XML name "+name+" is not valid");
-		enter(namespace, name);
-		text(content);
-		exit();
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, boolean)
-	 */
-	@Override
-	public void element(String name, String content, boolean onlyIfNotEmpty) throws IOException {
-		if (!onlyIfNotEmpty || content != null && !content.equals(""))
-			element(null, name, content);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String)
-	 */
-	@Override
-	public void element(String name, String content) throws IOException {
-		element(null, name, content);
-	}
-
-  @Override
-  public void element(String name) throws IOException {
-    element(null, name, null);
-  }
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#text(java.lang.String)
-	 */
-	@Override
-	public void text(String content) throws IOException {
-		text(content, false);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#text(java.lang.String, boolean)
-	 * 
-	 * Replace escapeText()
-	 */
-	@Override
-	public void text(String content, boolean dontEscape) throws IOException {
-		checkInElement();
-		if (content != null) {
-			if (pendingClose) { 
-				write(">");
-				writePendingComment();
-				pendingClose = false;
-			}
-			if (dontEscape)
-				write(content);
-			else
-				write(XMLUtil.escapeXML(content, charset, false));
-		}
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#cData(java.lang.String)
-	 */
-	@Override
-	public void cData(String text) throws IOException {
-		text("");		
-	}
-	
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#writeBytes(byte[])
-	 */
-	@Override
-	public void writeBytes(byte[] bytes) throws IOException {
-		checkInElement();
-		if (pendingClose) { 
-			write(">");
-			writePendingComment();
-			pendingClose = false;
-		}
-		flush();
-		stream.write(bytes);
-	}
-
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#isPretty()
-	 */
-	@Override
-	public boolean isPretty() throws IOException {
-		return (levels == null || levels.empty()) ? prettyBase : levels.current().isPretty();
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#setPretty(boolean)
-	 */
-	@Override
-	public void setPretty(boolean pretty) throws IOException {
-		if (levels == null || levels.empty())
-			this.prettyBase = pretty;
-		else 
-			levels.current().setPretty(pretty);
-	}
-
-	/* (non-Javadoc)
-	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#startCommentBlock()
-	 */
-	@Override
-	public void startCommentBlock() throws IOException {
-		if (levels.inComment())
-			throw new IOException("cannot nest comments");
-		levels.current().setInComment(true);
-		if (isPretty())
-			writePretty();
-		write("");
-		if (isPretty())
-			writePretty();		
-		levels.current().setInComment(false);
-	}
-
-	public boolean isSortAttributes() {
-		return sortAttributes;
-	}
-
-	public void setSortAttributes(boolean sortAttributes) {
-		this.sortAttributes = sortAttributes;
-	}
-
-
-	public boolean isPrettyHeader() {
-		return prettyHeader;
-	}
-
-	public void setPrettyHeader(boolean pretty) {
-		this.prettyHeader = pretty;
-	}
-
-	public int writePretty() throws IOException {
-		return writePretty(true);
-	}
-	
-	public int writePretty(boolean eoln) throws IOException {
-		if (isPretty()) {
-			if (eoln)
-				write(lineType == LINE_UNIX ? "\n" : "\r\n");
-			for (int i = 0; i < levels.size() - 1; i++)
-				write("  ");
-			return (levels.size() - 1) * 2;
-		} else
-			return 0;
-	}
-
-	public int getLineType() {
-		return lineType;
-	}
-
-	public void setLineType(int lineType) {
-		this.lineType = lineType;
-	}
-
-	public boolean isXmlHeader() {
-		return xmlHeader;
-	}
-
-	public void setXmlHeader(boolean xmlHeader) {
-		this.xmlHeader = xmlHeader;
-	}
-
-	public String[] getSpecialAttributeNames() {
-		return specialAttributeNames;
-	}
-
-	public void setSpecialAttributeNames(String[] specialAttributeNames) {
-		this.specialAttributeNames = specialAttributeNames;
-	}
-
-	public int getAttributeLineWrap() {
-		return attributeLineWrap;
-	}
-
-	public void setAttributeLineWrap(int attributeLineWrap) {
-		this.attributeLineWrap = attributeLineWrap;
-	}
-
-	@Override
-	public void escapedText(String content) throws IOException {
-		text("");
-		int i = content.length();
-		if (isPretty())
-		  while (i > 0 && (content.charAt(i-1) == '\r' || content.charAt(i-1) == '\n'))
-			 i--;
-		write(content.substring(0, i));
-	}
-
-  public void processingInstruction(String value) throws IOException {
-    write("");
-    if (isPrettyHeader())
-      write("\r\n");
-  }
-
-  @Override
-  public void link(String href) {
-    // ignore this
-    
-  }
-
-  @Override
-  public void anchor(String name) {
-    // ignore this    
-  }
-
-  @Override
-  public void decorate(ElementDecoration element) throws IOException {
-    // nothing...
-  }
-  @Override
-  public void setSchemaLocation(String ns, String loc) throws IOException {
-    namespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
-    attribute("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation", ns+" "+loc);
-    
-  }
-  @Override
-  public void externalLink(String ref) {
-    // ignore this    
-  }
-	
-	
+
+
+
+import java.io.IOException;
+import java.io.OutputStream;
+import java.io.OutputStreamWriter;
+import java.io.UnsupportedEncodingException;
+
+import org.hl7.fhir.utilities.ElementDecoration;
+
+/**
+ * XML Writer class.
+ */
+public class XMLWriter extends OutputStreamWriter implements IXMLWriter {
+
+	private boolean xmlHeader = true;
+	private String charset;
+	private boolean prettyBase;
+	private boolean prettyHeader;
+	private boolean pendingClose;
+	private boolean pendingOpen;
+	private String pendingComment;
+	private int lineType = LINE_UNIX;
+	private OutputStream stream;
+	private boolean started = false;
+	private String[] specialAttributeNames = new String[] {"id", "name" };
+	private boolean sortAttributes;
+	private int attributeLineWrap;
+  private boolean xml1_1;
+	
+	public final static int LINE_UNIX = 0;
+	public final static int LINE_WINDOWS = 1;
+
+  public XMLWriter(OutputStream stream, String charset, boolean xml1_1) throws UnsupportedEncodingException {    
+    super(stream, charset);
+    this.stream = stream;
+    this.charset = charset;
+    this.xml1_1 = xml1_1;
+  }
+	public XMLWriter(OutputStream stream, String charset) throws UnsupportedEncodingException {
+		super(stream, charset);
+		this.stream = stream;
+		this.charset = charset;
+    this.xml1_1 = false;
+	}
+
+	protected boolean condition(boolean bTest, String message) throws IOException {
+		if (!bTest)
+			throw new IOException(message);
+		return bTest;
+	}
+
+	// -- writing context ------------------------------------------------
+
+
+	
+	/**
+	 * Returns the encoding.
+	 * 
+	 * @param charset
+	 * @return encoding
+	 * @throws IOException
+	 */
+	public static String getXMLCharsetName(String charset) throws IOException {
+		if (charset == null || charset.equals(""))
+			return "UTF-8";
+		else if (charset.equals("US-ASCII"))
+			return "UTF-8";
+		else if (XMLUtil.charSetImpliesAscii(charset))
+			return "ISO-8859-1";
+		else if (charset.equals("UTF-8"))
+			return "UTF-8";
+		else if (charset.equals("UTF-16") || charset.equals("UTF-16BE") || charset.equals("UTF-16LE"))
+			return "UTF-16";
+		else 
+			throw new IOException("Unknown charset encoding "+charset);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#start()
+	 */
+	@Override
+	public void start() throws IOException {
+		condition(!started, "attempt to start after starting");
+		levels.clear();
+		attributes = null;
+		try {
+			if (xmlHeader) {
+				write("");
+				if (prettyBase || prettyHeader)
+					write(lineType == LINE_UNIX ? "\n" : "\r\n");
+			}
+		} catch (UnsupportedEncodingException e) {
+			// TODO Auto-generated catch block
+			throw new IOException(e.getMessage());
+		}
+		started = true;
+	}
+
+	private void checkStarted () throws IOException {
+		condition(started, "not started");
+	}
+
+	private void checkInElement() throws IOException {
+		condition(levels.size() > 0, "not in an element");
+	}
+
+	// -- attributes ----------------------------------------------------
+
+	private String[][] attributes;
+	
+	private void addAttribute(String name, String value) throws IOException {
+		addAttribute(name, value, false);
+	}
+
+	private void addAttribute(String name, String value, boolean noLines) throws IOException {
+		if (!XMLUtil.isNMToken(name))
+			throw new IOException("XML name "+name+" is not valid for value '"+value+"'");
+
+		newLevelIfRequired();
+		value = XMLUtil.escapeXML(value, charset, noLines);
+
+		if (attributes == null) 
+			attributes = new String[][] {{name, value}};
+		else {
+			String[][] newattr = new String[attributes.length+1][];
+			for (int i = 0; i < attributes.length; i++) {
+				condition(!attributes[i][0].equals(name), "attempt to define attribute with name "+name+" more than once for value '"+value+"'");
+				newattr[i] = attributes[i];
+			}
+			attributes = newattr;
+			attributes[attributes.length-1] = new String[] {name, value};
+		}
+	}
+
+	protected String getAttribute(String name) {
+		if (attributes != null) {
+			for (int i = 0; i < attributes.length; i++) {
+				if (attributes[i][0].equals(name)) {
+					return attributes[i][1];
+				}
+			}			
+		}
+		return null;
+	}
+	
+	protected void setAttribute(String name, String value) throws IOException {
+		newLevelIfRequired();
+		if (attributes == null) 
+			addAttribute(name, value, false);
+		else {
+			for (int i = 0; i < attributes.length; i++) {
+				if (attributes[i][0].equals(name)) {
+					attributes[i][1] = XMLUtil.escapeXML(value, charset, false);
+					return;
+				}
+			}
+			addAttribute(name, value);
+		}
+	}
+
+	protected void commitAttributes() throws IOException {
+		
+	}
+
+	
+	private boolean nameIsSpecial(String name) {
+		for (int i = 0; i < specialAttributeNames.length; i++) {
+			String n = specialAttributeNames[i];
+			if (n.equalsIgnoreCase(name))
+				return true;
+		}
+		return false;
+	}
+	
+	private void writeAttributes(int col) throws IOException {
+		commitAttributes();
+		if (attributes != null && sortAttributes)
+			sortAttributes();	
+		int c = col;
+		c = writeAttributeSet(true, c, col);
+		writeAttributeSet(false, c, col);
+		attributes = null;
+	}
+
+
+	private void sortAttributes() {
+		// bubble sort - look, it's easy
+		for (int i = 0; i < attributes.length - 1; i++) {
+			for (int j = 0; j < attributes.length - 1; j++) {
+				if (String.CASE_INSENSITIVE_ORDER.compare(attributes[j][0], attributes[j+1][0]) < 0) {
+					String[] t = attributes[j];
+					attributes[j] = attributes[j+1];
+					attributes[j+1] = t;
+				}
+			}
+		}
+		
+	}
+
+
+	private int writeAttributeSet(boolean special, int col, int wrap) throws IOException {
+		// first pass: name, id
+		if (attributes != null) {
+			for (int i=0; i < attributes.length; i++) {
+				String[] element = attributes[i];
+				if (nameIsSpecial(element[0]) == special) {
+					col = col + element[0].length()+element[1].length() + 4;
+					if (isPretty() && attributeLineWrap > 0 && col > attributeLineWrap && col > wrap) {
+						write(lineType == LINE_UNIX ? "\n" : "\r\n");
+						for (int j = 0; j < wrap; j++)
+							write(" ");
+						col = wrap;
+					}
+					write(' ');
+					write(element[0]);
+					write("=\"");
+					if (element[1] != null)
+						write(xmlEscape(element[1]));
+					write("\"");
+				}
+			}
+		}
+		return col;
+	}
+
+	 protected String xmlEscape(String s) {
+     StringBuilder b = new StringBuilder();
+     for (char c : s.toCharArray()) {
+       if (c < ' ') {
+         b.append("&#x");
+         b.append(Integer.toHexString(c).toUpperCase());
+         b.append(";");
+       } else
+         b.append(c);
+     }
+     return b.toString();
+   }
+
+	 /* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String, java.lang.String, boolean)
+	 */
+	@Override
+	public void attribute(String namespace, String name, String value, boolean onlyIfNotEmpty) throws IOException {
+		if (!onlyIfNotEmpty || value != null && !value.equals(""))
+			attribute(namespace, name, value);
+	}
+	
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void attribute(String namespace, String name, String value) throws IOException {
+
+		checkStarted();
+		if (namespace == null || namespace.equals("")) 
+			addAttribute(name, value);
+		else
+			addAttribute(getNSAbbreviation(namespace)+name, value);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String, boolean)
+	 */
+	@Override
+	public void attribute(String name, String value, boolean onlyIfNotEmpty) throws IOException {
+		if (!onlyIfNotEmpty || value != null && !value.equals(""))
+			attribute(name, value);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attribute(java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void attribute(String name, String value) throws IOException {
+		checkStarted();
+		addAttribute(name, value);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#attributeNoLines(java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void attributeNoLines(String name, String value) throws IOException {
+		checkStarted();
+		addAttribute(name, value, true);
+	}
+
+	// -- levels -------------------------------------------------
+
+	private XMLWriterStateStack levels = new XMLWriterStateStack();
+
+	private void newLevelIfRequired() throws IOException {
+		if (!pendingOpen) {
+			if (!levels.empty())
+				levels.current().seeChild();
+			XMLWriterState level = new XMLWriterState();
+			level.setPretty(isPretty());
+			levels.push(level);
+			pendingOpen = true;
+		}
+	}
+
+	// -- namespaces ---------------------------------------------
+
+
+	private void defineNamespace(String namespace, String abbrev) throws IOException {
+		checkStarted();
+		if (namespace != null && !namespace.equals("")) {
+			if ("".equals(abbrev))
+				abbrev = null;
+
+			newLevelIfRequired();
+
+			levels.current().addNamespaceDefn(namespace, abbrev);
+			if (abbrev == null)
+				addAttribute("xmlns", namespace);
+			else
+				addAttribute("xmlns:"+abbrev, namespace);
+		}
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#findByNamespace(java.lang.String)
+	 */
+	public XMLNamespace findByNamespace(String namespace) {
+		for (int i = levels.size() - 1; i >= 0; i--) {
+			XMLNamespace ns = levels.item(i).getDefnByNamespace(namespace);
+			if (ns != null)
+				return ns;
+		}
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#namespaceDefined(java.lang.String)
+	 */
+	@Override
+	public boolean namespaceDefined(String namespace) {
+		return namespace == null || namespace.equals("") || findByNamespace(namespace) != null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#findByAbbreviation(java.lang.String)
+	 */
+	public XMLNamespace findByAbbreviation(String abbreviation) {
+		for (int i = levels.size() - 1; i >= 0; i--) {
+			XMLNamespace ns = levels.item(i).getDefnByAbbreviation(abbreviation);
+			if (ns != null)
+				return ns;
+		}
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#abbreviationDefined(java.lang.String)
+	 */
+	@Override
+	public boolean abbreviationDefined(String abbreviation) {
+		return findByAbbreviation(abbreviation) != null;
+	}
+
+	protected XMLNamespace findDefaultNamespace() {
+		for (int i = levels.size() - 1; i >= 0; i--) {
+			XMLNamespace ns = levels.item(i).getDefaultNamespace();
+			if (ns != null)
+				return ns;
+		}
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#getDefaultNamespace()
+	 */
+	@Override
+	public String getDefaultNamespace() {
+		XMLNamespace ns = findDefaultNamespace();
+		if (ns == null)
+			return null;
+		else
+			return ns.getNamespace();
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#namespace(java.lang.String)
+	 */
+	@Override
+	public void namespace(String namespace) throws IOException {
+		if (!namespaceDefined(namespace)) {
+			int index = 0;
+			while (abbreviationDefined("ns"+Integer.toString(index))) 
+				index++;
+			defineNamespace(namespace, "ns"+Integer.toString(index));
+		}
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#defaultNamespace(java.lang.String)
+	 * 
+	 * Replace defaultNamespace()
+	 */
+	@Override
+	public void setDefaultNamespace(String namespace) throws IOException {
+		if ((namespace == null && getDefaultNamespace() != null) ||
+				(namespace != null && !namespace.equals(getDefaultNamespace())))
+			defineNamespace(namespace, "");			
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#namespace(java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void namespace(String namespace, String abbreviation) throws IOException {
+		XMLNamespace ns = findByAbbreviation(abbreviation);
+		if (ns == null || !ns.getNamespace().equals(namespace))
+			defineNamespace(namespace, abbreviation);
+	}
+
+
+	private String getNSAbbreviation(String namespace) throws IOException {
+		if ("http://www.w3.org/XML/1998/namespace".equals(namespace))
+			return "xml:";
+		
+		if (namespace == null || "".equals(namespace) || "noNamespace".equals(namespace))
+			return "";
+		
+		XMLNamespace ns = findByNamespace(namespace);
+		if (ns == null)
+			throw new IOException("Namespace "+namespace+" is not defined");
+		else if (ns.getAbbreviation() == null)
+			return "";
+		else
+			return ns.getAbbreviation()+":";
+	}
+
+	// -- public API -----------------------------------------------------------
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#comment(java.lang.String, boolean)
+	 */
+	@Override
+	public void comment(String comment, boolean doPretty) throws IOException {
+		checkStarted();
+		if (pendingClose) { 
+			write('>');
+			writePendingComment();
+			pendingClose = false;
+		}
+		if (doPretty) {
+			writePretty();
+		}
+		if (levels.inComment())
+			write("  ");
+		if (doPretty && !isPretty())
+			writePretty();
+	}
+
+
+	private void writePendingComment() throws IOException {
+		if (pendingComment != null) {
+			if (isPretty())
+				write("   ");
+			if (levels.inComment())
+				write("");
+		}
+	}
+	
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#open(java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void enter(String namespace, String name) throws IOException {
+		enter(namespace, name, null);
+	}
+
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#open(java.lang.String, java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void enter(String namespace, String name, String comment) throws IOException {
+		if (name == null)
+			throw new Error("name == null");
+		if (!XMLUtil.isNMToken(name))
+			throw new IOException("XML name "+name+" is not valid");
+		checkStarted();
+		if (pendingClose) { 
+			write('>');
+			writePendingComment();
+			pendingClose = false;
+		}
+
+		if (name == null) {
+			throw new IOException("name is null");
+		}
+		newLevelIfRequired();
+		levels.current().setName(name);
+		levels.current().setNamespace(namespace);
+		int col = writePretty();
+		write('<');
+		if (namespace == null) {
+			write(name);
+			col = col + name.length()+1;
+		} else {
+			String n = getNSAbbreviation(namespace)+name;
+			write(n);
+			col = col + n.length()+1;
+		}
+		writeAttributes(col);
+		pendingOpen = false;
+		pendingClose = true;
+		pendingComment = comment;
+	}
+
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#close(java.lang.String)
+	 */
+	@Override
+	public void exit(String name) throws IOException {
+		checkStarted();
+		if (levels.empty())
+			throw new IOException("Unable to close null|"+name+", nothing to close");
+		if (levels.current().getNamespace() != null || !levels.current().getName().equals(name))
+			throw new IOException("Unable to close null|"+name+", found "+levels.current().getNamespace()+"|"+levels.current().getName());
+		exit();
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#close(java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void exit(String namespace, String name) throws IOException {
+		checkStarted();
+		if (levels.empty())
+			throw new IOException("Unable to close "+namespace+"|"+name+", nothing to close");
+		if (levels == null)
+			throw new Error("levels = null");
+		if (levels.current() == null)
+			throw new Error("levels.current() = null");
+		if (levels.current().getName() == null)
+			throw new Error("levels.current().getName() = null");
+		if (levels.current().getNamespace() == null)
+			throw new Error("levels.current().getNamespace() = null");
+		if (name == null)
+			throw new Error("name = null");
+		if (namespace == null)
+			throw new Error("namespace = null");
+		if (!levels.current().getNamespace().equals(namespace) || !levels.current().getName().equals(name))
+			throw new IOException("Unable to close "+namespace+"|"+name+", found "+levels.current().getNamespace()+"|"+levels.current().getName());
+		exit();
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#closeToLevel(int)
+	 */
+	@Override
+	public void exitToLevel(int count) throws IOException {
+    checkStarted();
+		while (levels.size() > count)
+			exit();		
+	}
+
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#close()
+	 */
+  @Override
+  public void close() throws IOException {
+    checkStarted();
+    if (!levels.empty()) 
+      throw new IOException("Called close before exiting all opened elements");
+     super.close();
+  }
+    
+  @Override
+  public void end() throws IOException {
+    checkStarted();
+    if (!levels.empty()) 
+      throw new IOException("Called end() before exiting all opened elements");
+     flush();
+  }
+	@Override
+	public void exit() throws IOException {
+		checkStarted();
+		if (levels.empty()) {
+			throw new IOException("Called exit one too many times");
+		} else {
+			if (pendingClose) { 
+				write("/>");
+				writePendingComment();
+				pendingClose = false;
+			} else {
+				if (levels.current().hasChildren())
+					writePretty();
+				write("');
+			}
+			levels.pop();
+		}
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#open(java.lang.String)
+	 */
+	@Override
+	public void enter(String name) throws IOException {
+		enter(null, name);
+	}
+
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, java.lang.String, boolean)
+	 */
+	@Override
+	public void element(String namespace, String name, String content, boolean onlyIfNotEmpty) throws IOException {
+		if (!onlyIfNotEmpty || content != null && !content.equals(""))
+			element(namespace, name, content);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void element(String namespace, String name, String content, String comment) throws IOException {
+		if (!XMLUtil.isNMToken(name))
+			throw new IOException("XML name "+name+" is not valid");
+		enter(namespace, name, comment);
+		text(content);
+		exit();
+	}
+	
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void element(String namespace, String name, String content) throws IOException {
+		if (!XMLUtil.isNMToken(name))
+			throw new IOException("XML name "+name+" is not valid");
+		enter(namespace, name);
+		text(content);
+		exit();
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String, boolean)
+	 */
+	@Override
+	public void element(String name, String content, boolean onlyIfNotEmpty) throws IOException {
+		if (!onlyIfNotEmpty || content != null && !content.equals(""))
+			element(null, name, content);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#element(java.lang.String, java.lang.String)
+	 */
+	@Override
+	public void element(String name, String content) throws IOException {
+		element(null, name, content);
+	}
+
+  @Override
+  public void element(String name) throws IOException {
+    element(null, name, null);
+  }
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#text(java.lang.String)
+	 */
+	@Override
+	public void text(String content) throws IOException {
+		text(content, false);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#text(java.lang.String, boolean)
+	 * 
+	 * Replace escapeText()
+	 */
+	@Override
+	public void text(String content, boolean dontEscape) throws IOException {
+		checkInElement();
+		if (content != null) {
+			if (pendingClose) { 
+				write(">");
+				writePendingComment();
+				pendingClose = false;
+			}
+			if (dontEscape)
+				write(content);
+			else
+				write(XMLUtil.escapeXML(content, charset, false));
+		}
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#cData(java.lang.String)
+	 */
+	@Override
+	public void cData(String text) throws IOException {
+		text("");		
+	}
+	
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#writeBytes(byte[])
+	 */
+	@Override
+	public void writeBytes(byte[] bytes) throws IOException {
+		checkInElement();
+		if (pendingClose) { 
+			write(">");
+			writePendingComment();
+			pendingClose = false;
+		}
+		flush();
+		stream.write(bytes);
+	}
+
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#isPretty()
+	 */
+	@Override
+	public boolean isPretty() throws IOException {
+		return (levels == null || levels.empty()) ? prettyBase : levels.current().isPretty();
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#setPretty(boolean)
+	 */
+	@Override
+	public void setPretty(boolean pretty) throws IOException {
+		if (levels == null || levels.empty())
+			this.prettyBase = pretty;
+		else 
+			levels.current().setPretty(pretty);
+	}
+
+	/* (non-Javadoc)
+	 * @see org.eclipse.ohf.utilities.xml.IXMLWriter#startCommentBlock()
+	 */
+	@Override
+	public void startCommentBlock() throws IOException {
+		if (levels.inComment())
+			throw new IOException("cannot nest comments");
+		levels.current().setInComment(true);
+		if (isPretty())
+			writePretty();
+		write("");
+		if (isPretty())
+			writePretty();		
+		levels.current().setInComment(false);
+	}
+
+	public boolean isSortAttributes() {
+		return sortAttributes;
+	}
+
+	public void setSortAttributes(boolean sortAttributes) {
+		this.sortAttributes = sortAttributes;
+	}
+
+
+	public boolean isPrettyHeader() {
+		return prettyHeader;
+	}
+
+	public void setPrettyHeader(boolean pretty) {
+		this.prettyHeader = pretty;
+	}
+
+	public int writePretty() throws IOException {
+		return writePretty(true);
+	}
+	
+	public int writePretty(boolean eoln) throws IOException {
+		if (isPretty()) {
+			if (eoln)
+				write(lineType == LINE_UNIX ? "\n" : "\r\n");
+			for (int i = 0; i < levels.size() - 1; i++)
+				write("  ");
+			return (levels.size() - 1) * 2;
+		} else
+			return 0;
+	}
+
+	public int getLineType() {
+		return lineType;
+	}
+
+	public void setLineType(int lineType) {
+		this.lineType = lineType;
+	}
+
+	public boolean isXmlHeader() {
+		return xmlHeader;
+	}
+
+	public void setXmlHeader(boolean xmlHeader) {
+		this.xmlHeader = xmlHeader;
+	}
+
+	public String[] getSpecialAttributeNames() {
+		return specialAttributeNames;
+	}
+
+	public void setSpecialAttributeNames(String[] specialAttributeNames) {
+		this.specialAttributeNames = specialAttributeNames;
+	}
+
+	public int getAttributeLineWrap() {
+		return attributeLineWrap;
+	}
+
+	public void setAttributeLineWrap(int attributeLineWrap) {
+		this.attributeLineWrap = attributeLineWrap;
+	}
+
+	@Override
+	public void escapedText(String content) throws IOException {
+		text("");
+		int i = content.length();
+		if (isPretty())
+		  while (i > 0 && (content.charAt(i-1) == '\r' || content.charAt(i-1) == '\n'))
+			 i--;
+		write(content.substring(0, i));
+	}
+
+  public void processingInstruction(String value) throws IOException {
+    write("");
+    if (isPrettyHeader())
+      write("\r\n");
+  }
+
+  @Override
+  public void link(String href) {
+    // ignore this
+    
+  }
+
+  @Override
+  public void anchor(String name) {
+    // ignore this    
+  }
+
+  @Override
+  public void decorate(ElementDecoration element) throws IOException {
+    // nothing...
+  }
+  @Override
+  public void setSchemaLocation(String ns, String loc) throws IOException {
+    namespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
+    attribute("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation", ns+" "+loc);
+    
+  }
+  @Override
+  public void externalLink(String ref) {
+    // ignore this    
+  }
+
+  @Override
+  public boolean canElide() { return false; }
+
+  @Override
+  public void attributeElide() {
+    // ignore this
+  }
+
+  @Override
+  public void elide() throws IOException {
+    // ignore this
+  }
+
 }
\ No newline at end of file
diff --git a/org.hl7.fhir.utilities/src/main/resources/Messages.properties b/org.hl7.fhir.utilities/src/main/resources/Messages.properties
index 35811c33e..4c4e156d9 100644
--- a/org.hl7.fhir.utilities/src/main/resources/Messages.properties
+++ b/org.hl7.fhir.utilities/src/main/resources/Messages.properties
@@ -13,7 +13,9 @@ Attempt_to_a_slice_an_element_that_does_not_repeat__from__in_ = Attempt to a sli
 Attempt_to_replace_element_name_for_a_nonchoice_type=Attempt to replace element name for a non-choice type
 Attempt_to_use_Terminology_server_when_no_Terminology_server_is_available = Attempt to use Terminology server when no Terminology server is available
 Attempt_to_use_a_snapshot_on_profile__as__before_it_is_generated = Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated
-BINDING_ADDITIONAL = {0} specified in an additional binding
+BINDING_ADDITIONAL_D = {0} specified in an additional binding
+BINDING_ADDITIONAL_UC = {0} specified in an additional binding which applies because {1}
+BINDING_ADDITIONAL_USAGE = {0} = {1}
 BINDING_MAX = {0} specified in the max binding
 BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE = Found {0} matches for ''{1}'' in the bundle ({2})
 BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT = Found {0} matches for fragment {2} in resource ''{1}'' in the bundle ({3})
@@ -1029,7 +1031,7 @@ VALUESET_SUPPLEMENT_MISSING_one = Required supplement not found: {1}
 VALUESET_SUPPLEMENT_MISSING_other = Required supplements not found: {1}
 VALUESET_TOO_COSTLY = The value set ''{0}'' expansion has too many codes to display ({1})
 VALUESET_TOO_COSTLY_COUNT = The value set ''{0}'' expansion has {2} codes, which is too many to display ({1})
-VALUESET_TOO_COSTLY_TIME = The value set ''{0}'' expansion took too long to process (>{1}sec)
+VALUESET_TOO_COSTLY_TIME = The value set ''{0}'' {2} took too long to process (>{1}sec)
 VALUESET_UNC_SYSTEM_WARNING = Unknown System ''{0}'' specified, so Concepts and Filters can''t be checked (Details: {1})
 VALUESET_UNC_SYSTEM_WARNING_VER = Unknown System/Version ''{0}'' specified, so Concepts and Filters can''t be checked (Details: {1})
 VALUESET_UNKNOWN_FILTER_PROPERTY = The property ''{0}'' is not known for the system ''{1}'', so may not be understood by the terminology ecosystem. Known properties for this system: {2}
@@ -1138,8 +1140,12 @@ TYPE_SPECIFIC_CHECKS_DT_XHTML_LITERAL_HREF = Hyperlink scheme ''{3}'' in ''{0}''
 SM_TARGET_TYPE_UNKNOWN = The type of the target variable is not known: {0}
 XHTML_XHTML_ATTRIBUTE_XML_SPACE = The attribute 'xml:space' is legal but has a fixed value of 'preserve'. It''s use is discouraged
 VALIDATION_HL7_PUBLISHER_MULTIPLE_WGS = This resource has more than workgroup extension (http://hl7.org/fhir/StructureDefinition/structuredefinition-wg)
-NO_VALID_DISPLAY_FOUND_NONE_FOR_LANG = Wrong Display Name ''{0}'' for {1}#{2}. There are no valid display names found for language(s) ''{3}''. Default display is ''{4}''
+NO_VALID_DISPLAY_FOUND_NONE_FOR_LANG_OK = There are no valid display names found for the code {1}#{2} for language(s) ''{3}''. The display is ''{4}'' the default language display
+NO_VALID_DISPLAY_FOUND_NONE_FOR_LANG_ERR = Wrong Display Name ''{0}'' for {1}#{2}. There are no valid display names found for language(s) ''{3}''. Default display is ''{4}''
 NO_VALID_DISPLAY_AT_ALL = Cannot validate display Name ''{0}'' for {1}#{2}: No displays are known
 SD_BASE_EXPERIMENTAL = The definition builds on ''{0}'' which is experimental, but this definition is not labeled as experimental
 SD_ED_EXPERIMENTAL_BINDING = The definition for the element ''{0}'' binds to the value set ''{1}'' which is experimental, but this structure is not labeled as experimental
 VALIDATION_NO_EXPERIMENTAL_CONTENT = Experimental content is not allowed in this context
+SD_ED_ADDITIONAL_BINDING_USAGE_UNKNOWN = The Usage Context {0}#{1} is not recognised and may not be correct
+SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_ELEMENT = The Usage Context {0}#{1} is a reference to an element that does not exist
+SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_TYPE = The Usage Context value must be of type {1} not {0}
diff --git a/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties b/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties
index 0147ecbe4..39aa5cab8 100644
--- a/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties
+++ b/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties
@@ -207,7 +207,8 @@ DATA_REND_COND = Condition
 DATA_REND_COUNT = Count {0}
 DATA_REND_DATA = Data: {0}
 DATA_REND_DETAILS = (Details: {0}  code 
-DATA_REND_DETAILS_STATED = (Details: {0} code {1} {2} {3} '', stated as '' {4} {5}
+DATA_REND_DETAILS_STATED = (Details: {0} code {1} = ''{2}'')
+DATA_REND_DETAILS_STATED_ND = (Details: {0} code {1})
 DATA_REND_DICOM = DICOM
 DATA_REND_DIM = Dimensions: {0}
 DATA_REND_DURATION = Duration {0}
diff --git a/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerLockTests.java b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerLockTests.java
index f1d71dda3..8fa981d88 100644
--- a/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerLockTests.java
+++ b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerLockTests.java
@@ -1,7 +1,7 @@
 package org.hl7.fhir.utilities.npm;
 
-import org.hl7.fhir.utilities.TextFile;
 import org.hl7.fhir.utilities.filesystem.ManagedFileAccess;
+import org.junit.jupiter.api.Assertions;
 import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
 
@@ -12,10 +12,12 @@ import java.nio.file.Path;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
 import java.util.concurrent.atomic.AtomicBoolean;
 import java.util.concurrent.atomic.AtomicInteger;
 
 import static org.assertj.core.api.Assertions.assertThat;
+import static org.junit.Assert.assertTrue;
 import static org.junit.jupiter.api.Assertions.assertThrows;
 
 public class FilesystemPackageManagerLockTests {
@@ -49,13 +51,13 @@ public class FilesystemPackageManagerLockTests {
     packageLock.doWriteWithLock(() -> {
       assertThat(packageLock.getLockFile()).exists();
       return null;
-    });
+    }, null);
     assertThat(packageLock.getLockFile()).doesNotExist();
 
     packageLock.doReadWithLock(() -> {
       assertThat(packageLock.getLockFile()).doesNotExist();
       return null;
-    });
+    }, null);
   }
 
   @Test void testNoPackageWriteOrReadWhileWholeCacheIsLocked() throws IOException, InterruptedException {
@@ -87,7 +89,7 @@ public class FilesystemPackageManagerLockTests {
           packageLock.doWriteWithLock(() -> {
             assertThat(cacheLockFinished.get()).isTrue();
             return null;
-          });
+          }, null);
         } catch (IOException e) {
           throw new RuntimeException(e);
         }
@@ -97,7 +99,7 @@ public class FilesystemPackageManagerLockTests {
           packageLock.doReadWithLock(() -> {
             assertThat(cacheLockFinished.get()).isTrue();
             return null;
-          });
+          }, null);
         } catch (IOException e) {
           throw new RuntimeException(e);
         }
@@ -116,6 +118,23 @@ public class FilesystemPackageManagerLockTests {
     }
   }
 
+  @Test void testWhenLockIsntHeld_canLockFileBeHeldByThisProcessIsTrue() throws IOException {
+    File lockFile = getPackageLockFile();
+    lockFile.createNewFile();
+    Assertions.assertTrue(filesystemPackageCacheLockManager.getCacheLock().canLockFileBeHeldByThisProcess(lockFile));
+  }
+
+  @Test void testWhenLockIsHelp_canLockFileBeHeldByThisProcessIsFalse() throws InterruptedException, TimeoutException, IOException {
+    File lockFile = getPackageLockFile();
+    Thread lockThread = LockfileTestProcessUtility.lockWaitAndDeleteInNewProcess(cachePath, DUMMY_PACKAGE + ".lock", 2);
+
+    LockfileTestUtility.waitForLockfileCreation(cacheDirectory.getAbsolutePath(), DUMMY_PACKAGE + ".lock");
+
+    Assertions.assertFalse(filesystemPackageCacheLockManager.getCacheLock().canLockFileBeHeldByThisProcess(lockFile));
+
+    lockThread.join();
+  }
+
   @Test void testSinglePackageWriteMultiPackageRead() throws IOException {
     final FilesystemPackageCacheManagerLocks.PackageLock packageLock = filesystemPackageCacheLockManager.getPackageLock(DUMMY_PACKAGE);
     AtomicInteger writeCounter = new AtomicInteger(0);
@@ -133,7 +152,7 @@ public class FilesystemPackageManagerLockTests {
             assertThat(writeCount).isEqualTo(1);
             writeCounter.decrementAndGet();
             return null;
-          });
+          }, null);
         } catch (IOException e) {
           throw new RuntimeException(e);
         }
@@ -156,7 +175,7 @@ public class FilesystemPackageManagerLockTests {
             }
             readCounter.decrementAndGet();
             return null;
-          });
+          }, null);
         } catch (IOException e) {
           throw new RuntimeException(e);
         }
@@ -179,49 +198,47 @@ public class FilesystemPackageManagerLockTests {
   }
 
   @Test
-  public void testReadWhenLockedByFileTimesOut() throws IOException {
-    FilesystemPackageCacheManagerLocks shorterTimeoutManager = filesystemPackageCacheLockManager.withLockTimeout(3L, TimeUnit.SECONDS);
+  public void testReadWhenLockedByFileTimesOut() throws InterruptedException, TimeoutException, IOException {
+    FilesystemPackageCacheManagerLocks shorterTimeoutManager = filesystemPackageCacheLockManager;
     final FilesystemPackageCacheManagerLocks.PackageLock packageLock = shorterTimeoutManager.getPackageLock(DUMMY_PACKAGE);
-    File lockFile = createPackageLockFile();
+    File lockFile = getPackageLockFile();
+    Thread lockThread = LockfileTestProcessUtility.lockWaitAndDeleteInNewProcess(cachePath, lockFile.getName(), 5);
+    LockfileTestUtility.waitForLockfileCreation(cachePath,lockFile.getName());
 
     Exception exception = assertThrows(IOException.class, () -> {
       packageLock.doReadWithLock(() -> {
         assertThat(lockFile).exists();
         return null;
-      });
+      }, new FilesystemPackageCacheManagerLocks.LockParameters(3L, TimeUnit.SECONDS));
     });
 
-    assertThat(exception.getMessage()).contains("Error reading package");
+    assertThat(exception.getMessage()).contains("Package cache timed out waiting for lock");
     assertThat(exception.getCause().getMessage()).contains("Timeout waiting for lock file deletion: " + lockFile.getName());
+
+    lockThread.join();
   }
 
-  @Test
-  public void testReadWhenLockFileIsDeleted() throws IOException {
-    FilesystemPackageCacheManagerLocks shorterTimeoutManager = filesystemPackageCacheLockManager.withLockTimeout(5L, TimeUnit.SECONDS);
-    final FilesystemPackageCacheManagerLocks.PackageLock packageLock = shorterTimeoutManager.getPackageLock(DUMMY_PACKAGE);
-    File lockFile = createPackageLockFile();
 
-    Thread t = new Thread(() -> {
-      try {
-        Thread.sleep(2000);
-      } catch (InterruptedException e) {
-        throw new RuntimeException(e);
-      }
-      lockFile.delete();
-    });
-    t.start();
+  @Test
+  public void testReadWhenLockFileIsDeleted() throws InterruptedException, TimeoutException, IOException {
+
+    final FilesystemPackageCacheManagerLocks.PackageLock packageLock = filesystemPackageCacheLockManager.getPackageLock(DUMMY_PACKAGE);
+
+    final File lockFile = getPackageLockFile();
+
+    Thread lockThread = LockfileTestProcessUtility.lockWaitAndDeleteInNewProcess(cachePath, lockFile.getName(), 5);
+    LockfileTestUtility.waitForLockfileCreation(cachePath,lockFile.getName());
 
     packageLock.doReadWithLock(() -> {
       assertThat(lockFile).doesNotExist();
       return null;
-    });
+    }, new FilesystemPackageCacheManagerLocks.LockParameters(10L, TimeUnit.SECONDS));
 
+    lockThread.join();
   }
 
-  private File createPackageLockFile() throws IOException {
-    File lockFile = Path.of(cachePath, DUMMY_PACKAGE + ".lock").toFile();
-    TextFile.stringToFile("", lockFile);
-    return lockFile;
+  private File getPackageLockFile() {
+    return Path.of(cachePath, DUMMY_PACKAGE + ".lock").toFile();
   }
 
 }
diff --git a/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerTests.java b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerTests.java
index eba7b198a..1221aeb66 100644
--- a/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerTests.java
+++ b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/FilesystemPackageManagerTests.java
@@ -2,6 +2,7 @@ package org.hl7.fhir.utilities.npm;
 
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
 
 import java.io.File;
 
@@ -13,6 +14,8 @@ import java.util.List;
 import java.util.Random;
 import java.util.UUID;
 import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
 import java.util.concurrent.atomic.AtomicInteger;
 import java.util.stream.Stream;
 
@@ -20,6 +23,7 @@ import javax.annotation.Nonnull;
 
 import org.hl7.fhir.utilities.IniFile;
 import org.hl7.fhir.utilities.filesystem.ManagedFileAccess;
+import org.junit.jupiter.api.Assertions;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.condition.DisabledOnOs;
 import org.junit.jupiter.api.condition.EnabledOnOs;
@@ -113,6 +117,97 @@ public class FilesystemPackageManagerTests {
     assertEquals( System.getenv("ProgramData") + "\\.fhir\\packages", folder.getAbsolutePath());
   }
 
+  @Test
+  public void testCorruptPackageCleanup() throws IOException {
+    File cacheDirectory = ManagedFileAccess.fromPath(Files.createTempDirectory("fpcm-multithreadingTest"));
+
+    File dummyPackage = createDummyPackage(cacheDirectory, "example.fhir.uv.myig", "1.2.3");
+    File dummyLockFile = createDummyLockFile(cacheDirectory, "example.fhir.uv.myig" , "1.2.3");
+
+    assertThat(dummyPackage).isDirectory();
+    assertThat(dummyPackage).exists();
+    assertThat(dummyLockFile).exists();
+
+    FilesystemPackageCacheManager filesystemPackageCacheManager = new FilesystemPackageCacheManager.Builder().withCacheFolder(cacheDirectory.getAbsolutePath()).build();
+
+    assertThat(dummyPackage).doesNotExist();
+    assertThat(dummyLockFile).doesNotExist();
+  }
+
+  @Test
+  public void testLockedPackageIsntCleanedUp() throws IOException, InterruptedException, TimeoutException {
+    File cacheDirectory = ManagedFileAccess.fromPath(Files.createTempDirectory("fpcm-multithreadingTest"));
+
+    File dummyPackage = createDummyPackage(cacheDirectory, "example.fhir.uv.myig", "1.2.3");
+
+    Thread lockThread = LockfileTestProcessUtility.lockWaitAndDeleteInNewProcess(cacheDirectory.getAbsolutePath(), "example.fhir.uv.myig#1.2.3.lock", 2);
+
+    LockfileTestUtility.waitForLockfileCreation(cacheDirectory.getAbsolutePath(), "example.fhir.uv.myig#1.2.3.lock");
+    File dummyLockFile = ManagedFileAccess.file(cacheDirectory.getAbsolutePath(), "example.fhir.uv.myig#1.2.3.lock");
+
+    assertThat(dummyPackage).isDirectory();
+    assertThat(dummyPackage).exists();
+    assertThat(dummyLockFile).exists();
+
+    FilesystemPackageCacheManager filesystemPackageCacheManager = new FilesystemPackageCacheManager.Builder().withCacheFolder(cacheDirectory.getAbsolutePath()).build();
+
+    assertThat(dummyPackage).exists();
+    assertThat(dummyLockFile).exists();
+
+    lockThread.join();
+  }
+
+  @Test
+  public void testTimeoutForLockedPackageRead() throws IOException, InterruptedException, TimeoutException {
+    String pcmPath = ManagedFileAccess.fromPath(Files.createTempDirectory("fpcm-multithreadingTest")).getAbsolutePath();
+
+    final FilesystemPackageCacheManager pcm = new FilesystemPackageCacheManager.Builder()
+      .withCacheFolder(pcmPath)
+      .withLockParameters(new FilesystemPackageCacheManagerLocks.LockParameters(5,TimeUnit.SECONDS))
+      .build();
+
+    Assertions.assertTrue(pcm.listPackages().isEmpty());
+
+    Thread lockThread = LockfileTestProcessUtility.lockWaitAndDeleteInNewProcess(pcmPath, "example.fhir.uv.myig#1.2.3.lock", 10);
+    File directory = ManagedFileAccess.file(pcmPath, "example.fhir.uv.myig#1.2.3" );
+    directory.mkdir();
+
+    LockfileTestUtility.waitForLockfileCreation(pcmPath, "example.fhir.uv.myig#1.2.3.lock");
+
+    IOException exception = assertThrows(IOException.class, () -> pcm.loadPackageFromCacheOnly("example.fhir.uv.myig", "1.2.3"));
+
+    assertThat(exception.getMessage()).contains("Package cache timed out waiting for lock");
+    assertThat(exception.getCause().getMessage()).contains("Timeout waiting for lock file deletion");
+    lockThread.join();
+  }
+
+  @Test
+  public void testReadFromCacheOnlyWaitsForLockDelete() throws IOException, InterruptedException, TimeoutException {
+    String pcmPath = ManagedFileAccess.fromPath(Files.createTempDirectory("fpcm-multithreadingTest")).getAbsolutePath();
+
+    final FilesystemPackageCacheManager pcm = new FilesystemPackageCacheManager.Builder().withCacheFolder(pcmPath).build();
+
+    Assertions.assertTrue(pcm.listPackages().isEmpty());
+
+    pcm.addPackageToCache("example.fhir.uv.myig", "1.2.3", this.getClass().getResourceAsStream("/npm/dummy-package.tgz"), "https://packages.fhir.org/example.fhir.uv.myig/1.2.3");
+
+    String packageAndVersion = "example.fhir.uv.myig#1.2.3";
+
+    //Now sneak in a new lock file and directory:
+
+    File directory = ManagedFileAccess.file(pcmPath, packageAndVersion);
+    directory.mkdir();
+
+    Thread lockThread = LockfileTestProcessUtility.lockWaitAndDeleteInNewProcess(pcmPath, "example.fhir.uv.myig#1.2.3.lock", 5);
+    LockfileTestUtility.waitForLockfileCreation(pcmPath, "example.fhir.uv.myig#1.2.3.lock");
+
+    NpmPackage npmPackage = pcm.loadPackageFromCacheOnly("example.fhir.uv.myig", "1.2.3");
+
+    assertThat(npmPackage.id()).isEqualTo("example.fhir.uv.myig");
+
+    lockThread.join();
+  }
+
   /**
     We repeat the same tests multiple times here, in order to catch very rare edge cases.
    */
@@ -126,16 +221,16 @@ public class FilesystemPackageManagerTests {
     return params.stream();
   }
 
-  private void createDummyTemp(File cacheDirectory, String lowerCase) throws IOException {
-    createDummyPackage(cacheDirectory, lowerCase);
+  private File createDummyTemp(File cacheDirectory, String lowerCase) throws IOException {
+    return createDummyPackage(cacheDirectory, lowerCase);
   }
 
-  private void createDummyPackage(File cacheDirectory, String packageName, String packageVersion) throws IOException {
+  private File createDummyPackage(File cacheDirectory, String packageName, String packageVersion) throws IOException {
     String directoryName = packageName + "#" + packageVersion;
-    createDummyPackage(cacheDirectory, directoryName);
+    return createDummyPackage(cacheDirectory, directoryName);
   }
 
-  private static void createDummyPackage(File cacheDirectory, String directoryName) throws IOException {
+  private static File createDummyPackage(File cacheDirectory, String directoryName) throws IOException {
     File packageDirectory = ManagedFileAccess.file(cacheDirectory.getAbsolutePath(), directoryName);
     packageDirectory.mkdirs();
 
@@ -144,6 +239,16 @@ public class FilesystemPackageManagerTests {
     wr.write("Ain't nobody here but us chickens");
     wr.flush();
     wr.close();
+    return packageDirectory;
+  }
+
+  private File createDummyLockFile(File cacheDirectory, String packageName, String packageVersion) throws IOException {
+    final File dummyLockFile = ManagedFileAccess.file(cacheDirectory.getAbsolutePath(), packageName + "#" + packageVersion + ".lock");
+    final FileWriter wr = new FileWriter(dummyLockFile);
+    wr.write("Ain't nobody here but us chickens");
+    wr.flush();
+    wr.close();
+    return dummyLockFile;
   }
 
   private void assertThatDummyTempExists(File cacheDirectory, String dummyTempPackage) throws IOException {
@@ -241,13 +346,13 @@ public class FilesystemPackageManagerTests {
   @MethodSource("packageCacheMultiThreadTestParams")
   @ParameterizedTest
   public void packageCacheMultiThreadTest(final int threadTotal, final int packageCacheManagerTotal) throws IOException {
-
     String pcmPath = ManagedFileAccess.fromPath(Files.createTempDirectory("fpcm-multithreadingTest")).getAbsolutePath();
+    System.out.println("Using temp pcm path: " + pcmPath);
     FilesystemPackageCacheManager[] packageCacheManagers = new FilesystemPackageCacheManager[packageCacheManagerTotal];
     Random rand = new Random();
 
     final AtomicInteger totalSuccessful = new AtomicInteger();
-    final ConcurrentHashMap successfulThreads = new ConcurrentHashMap();
+    final ConcurrentHashMap successfulThreads = new ConcurrentHashMap<>();
     List threads = new ArrayList<>();
     for (int i = 0; i < threadTotal; i++) {
       final int index = i;
@@ -256,22 +361,27 @@ public class FilesystemPackageManagerTests {
           System.out.println("Thread #" + index + ": " + Thread.currentThread().getId() + " started");
           final int randomPCM = rand.nextInt(packageCacheManagerTotal);
           final int randomOperation = rand.nextInt(4);
+          final String operationName;
           if (packageCacheManagers[randomPCM] == null) {
             packageCacheManagers[randomPCM] = new FilesystemPackageCacheManager.Builder().withCacheFolder(pcmPath).build();
           }
           FilesystemPackageCacheManager pcm = packageCacheManagers[randomPCM];
           if (randomOperation == 0) {
+            operationName = "addPackageToCache";
             pcm.addPackageToCache("example.fhir.uv.myig", "1.2.3", this.getClass().getResourceAsStream("/npm/dummy-package.tgz"), "https://packages.fhir.org/example.fhir.uv.myig/1.2.3");
           } else if (randomOperation == 1) {
+            operationName = "clear";
             pcm.clear();
           } else if (randomOperation == 2) {
+            operationName = "loadPackageFromCacheOnly";
             pcm.loadPackageFromCacheOnly("example.fhir.uv.myig", "1.2.3");
           } else {
+            operationName = "removePackage";
             pcm.removePackage("example.fhir.uv.myig", "1.2.3");
           }
           totalSuccessful.incrementAndGet();
           successfulThreads.put(Thread.currentThread().getId(), index);
-          System.out.println("Thread #" + index + ": " + Thread.currentThread().getId() + " completed");
+          System.out.println("Thread #" + index + ": " + Thread.currentThread().getId() + " completed. Ran: " + operationName);
         } catch (Exception e) {
           e.printStackTrace();
           System.err.println("Thread #" + index + ": " + Thread.currentThread().getId() + " failed");
diff --git a/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/LockfileTestProcessUtility.java b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/LockfileTestProcessUtility.java
new file mode 100644
index 000000000..d8f054f3d
--- /dev/null
+++ b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/LockfileTestProcessUtility.java
@@ -0,0 +1,122 @@
+package org.hl7.fhir.utilities.npm;
+
+import org.hl7.fhir.utilities.filesystem.ManagedFileAccess;
+
+import java.io.File;
+import java.io.IOException;
+import java.io.RandomAccessFile;
+import java.nio.ByteBuffer;
+import java.nio.channels.FileChannel;
+import java.nio.channels.FileLock;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Paths;
+
+/**
+ * FilesystemPackageCacheManagerLocks relies on the existence of .lock files to prevent access to packages being written
+ * by processes outside the current JVM. Testing this functionality means creating a process outside the JUnit test JVM,
+ * which is achieved by running a separate Java process.
+ * 

+ * Intended usage: + *

+ * The helper method {@link #lockWaitAndDeleteInNewProcess(String, String, int)} is the intended starting point for + * using this class. + *

+ * + * + * This class deliberately avoids using any dependencies outside java.*, which avoids having to construct a classpath + * for the separate process. + */ +public class LockfileTestProcessUtility { + /** + * Main method to allow running this class. + *

+ * This method calls the {@link #main(String[])} method in a new process. + * + * @param path The path to create the lockfile in + * @param lockFileName The name of the lockfile + * @param seconds The number of seconds to wait before deleting the lockfile + * @return The thread wrapping the process execution. This can be used to wait for the process to complete, so that + * System.out and System.err can be processed before tests return results. + */ + public static Thread lockWaitAndDeleteInNewProcess(String path, String lockFileName, int seconds) { + Thread t = new Thread(() -> { + ProcessBuilder processBuilder = new ProcessBuilder("java", "-cp", "target/test-classes", LockfileTestProcessUtility.class.getName(), path, lockFileName, Integer.toString(seconds)); + try { + Process process = processBuilder.start(); + process.getErrorStream().transferTo(System.err); + process.getInputStream().transferTo(System.out); + process.waitFor(); + } catch (IOException | InterruptedException e) { + throw new RuntimeException(e); + } + }); + t.start(); + return t; + } + + /** + * The actual logic to create a .lock file. + *

+ * This should match the logic in FilesystemPackageCacheManagerLocks + *

+ * + * @param path The path to create the lockfile in + * @param lockFileName The name of the lockfile + * @param seconds The number of seconds to wait before deleting the lockfile + * @throws InterruptedException If the thread is interrupted while waiting + * @throws IOException If there is an error accessing the file system + */ + /* TODO Eventually, this logic should exist in a Lockfile class so that it isn't duplicated between the main code and + the test code. + */ + private static void lockWaitAndDelete(String path, String lockFileName, int seconds) throws InterruptedException, IOException { + + File lockFile = Paths.get(path,lockFileName).toFile(); + + try (FileChannel channel = new RandomAccessFile(lockFile.getAbsolutePath(), "rw").getChannel()) { + FileLock fileLock = channel.tryLock(0, Long.MAX_VALUE, false); + if (fileLock != null) { + final ByteBuffer buff = ByteBuffer.wrap("Hello world".getBytes(StandardCharsets.UTF_8)); + channel.write(buff); + System.out.println("File "+lockFileName+" is locked. Waiting for " + seconds + " seconds to release. "); + Thread.sleep(seconds * 1000L); + + lockFile.renameTo(ManagedFileAccess.file(File.createTempFile(lockFile.getName(), ".lock-renamed").getAbsolutePath())); + + fileLock.release(); + channel.close(); + System.out.println(System.currentTimeMillis()); + System.out.println("File "+lockFileName+" is released."); + + lockFile.delete(); + }}finally { + if (lockFile.exists()) { + lockFile.delete(); + } + } + } +} diff --git a/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/LockfileTestUtility.java b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/LockfileTestUtility.java new file mode 100644 index 000000000..250e7bcb1 --- /dev/null +++ b/org.hl7.fhir.utilities/src/test/java/org/hl7/fhir/utilities/npm/LockfileTestUtility.java @@ -0,0 +1,78 @@ +package org.hl7.fhir.utilities.npm; + + +import org.apache.commons.io.monitor.FileAlterationListenerAdaptor; +import org.apache.commons.io.monitor.FileAlterationMonitor; +import org.apache.commons.io.monitor.FileAlterationObserver; + +import java.io.*; + +import java.nio.file.*; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; + + +public class LockfileTestUtility { + + + + /** + * Wait for the lock file to be created in the given path. + *

+ * Normally, within the same JVM, you could use a CountdownLatch for the same purpose, but since this the lock file is + * being created in a separate process, we need to use a mechanism that doesn't rely on shared threads. + * + * @param path The path containing the lock file + * @param lockFileName The name of the lock file + * @throws InterruptedException If the thread is interrupted while waiting + * @throws TimeoutException If the lock file is not created within 10 seconds + */ + public static void waitForLockfileCreation(String path, String lockFileName) throws InterruptedException, TimeoutException { + + CountDownLatch latch = new CountDownLatch(1); + FileAlterationMonitor monitor = new FileAlterationMonitor(100); + FileAlterationObserver observer = new FileAlterationObserver(path); + + observer.addListener(new FileAlterationListenerAdaptor(){ + + @Override + public void onStart(FileAlterationObserver observer) { + if (Files.exists(Paths.get(path, lockFileName))) { + latch.countDown(); + } + } + + @Override + public void onFileCreate(File file) { + System.out.println("File created: " + file.getName()); + latch.countDown(); + } + }); + monitor.addObserver(observer); + + try { + monitor.start(); + } catch (Exception e) { + throw new RuntimeException(e); + } + boolean success = latch.await(10, TimeUnit.SECONDS); + try { + monitor.stop(); + } catch (Exception e) { + throw new RuntimeException(e); + } + + if (!success) { + throw new TimeoutException("Timed out waiting for lock file creation: " + lockFileName); + } + // TODO This is a workaround for an edge condition that shows up with testing, where the lock is not reflected in + // the file system immediately. It is unlikely to appear in production environments. Should it occur, it will + // result in a lock file being erroneously reported as not having an owning process, and will cause a package to + // fail to be loaded from that cache until the lock is cleaned up by cache initialization. + Thread.sleep(100); + + } + + +} diff --git a/org.hl7.fhir.validation.cli/pom.xml b/org.hl7.fhir.validation.cli/pom.xml index de8286041..d802a4672 100644 --- a/org.hl7.fhir.validation.cli/pom.xml +++ b/org.hl7.fhir.validation.cli/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.validation/pom.xml b/org.hl7.fhir.validation/pom.xml index 19fe4ae82..92de2268c 100644 --- a/org.hl7.fhir.validation/pom.xml +++ b/org.hl7.fhir.validation/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/BaseValidator.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/BaseValidator.java index cee1ebf8f..13b4304ca 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/BaseValidator.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/BaseValidator.java @@ -1192,6 +1192,34 @@ public class BaseValidator implements IValidationContextResourceLoader, IMessagi } + protected int countFragmentMatches(Element element, String fragment, NodeStack stack) { + int count = countFragmentMatches(element, fragment); + if (count == 0 && element.isResource() && element.hasParentForValidator()) { + Element bnd = getElementBundle(element); + if (bnd != null) { + // in this case, we look into the parent - if there is one - and if it's a bundle, we look at the entries (but not in them) + for (Element be : bnd.getChildrenByName("entry")) { + String id = be.getIdBase(); + if (fragment.equals(id)) { + count++; + } + } + } + } + return count; + } + + private Element getElementBundle(Element element) { + Element p = element.getParentForValidator(); + if (p != null) { + Element b = p.getParentForValidator(); + if (b != null && b.fhirType().equals("Bundle")) { + return b; + } + } + return null; + } + protected int countFragmentMatches(Element element, String fragment) { int count = 0; if (fragment.equals(element.getIdBase())) { diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java index 418526071..a38b14fbb 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java @@ -130,7 +130,7 @@ public class CliContext { private boolean showTimes = false; @JsonProperty("locale") - private String locale = Locale.ENGLISH.getDisplayLanguage(); + private String locale = Locale.ENGLISH.toLanguageTag(); @JsonProperty("locations") private Map locations = new HashMap(); diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/services/ValidationService.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/services/ValidationService.java index 82abdff63..a764d18d8 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/services/ValidationService.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/services/ValidationService.java @@ -529,14 +529,18 @@ public class ValidationService { } @Nonnull - protected ValidationEngine buildValidationEngine( CliContext cliContext, String definitions, TimeTracker timeTracker) throws IOException, URISyntaxException { + protected ValidationEngine buildValidationEngine(CliContext cliContext, String definitions, TimeTracker timeTracker) throws IOException, URISyntaxException { System.out.print(" Load FHIR v" + cliContext.getSv() + " from " + definitions); ValidationEngine validationEngine = getValidationEngineBuilder().withTHO(false).withVersion(cliContext.getSv()).withTimeTracker(timeTracker).withUserAgent(Common.getValidatorUserAgent()).fromSource(definitions); System.out.println(" - " + validationEngine.getContext().countAllCaches() + " resources (" + timeTracker.milestone() + ")"); loadIgsAndExtensions(validationEngine, cliContext, timeTracker); - if (validationEngine.getContext().getTxCache() == null) { + if (cliContext.getTxCache() != null) { + TerminologyCache cache = new TerminologyCache(new Object(), cliContext.getTxCache()); + validationEngine.getContext().initTxCache(cache); + } + if (validationEngine.getContext().getTxCache() == null || validationEngine.getContext().getTxCache().getFolder() == null) { System.out.println(" No Terminology Cache"); } else { System.out.println(" Terminology Cache at "+validationEngine.getContext().getTxCache().getFolder()); diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java index 5c191c7c9..9ea21787d 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java @@ -217,6 +217,7 @@ import org.hl7.fhir.validation.instance.type.ValueSetValidator; import org.hl7.fhir.validation.instance.utils.*; import org.w3c.dom.Document; + /** * Thinking of using this in a java program? Don't! * You should use one of the wrappers instead. Either in HAPI, or use ValidationEngine @@ -1356,19 +1357,20 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat BindingStrength strength = binding.getStrength(); Extension maxVS = binding.getExtensionByUrl(ToolingExtensions.EXT_MAX_VALUESET); - checkDisp = validateBindingCodeableConcept(errors, path, element, profile, stack, bh, checkDisp, checked, cc, vsRef, valueset, strength, maxVS, true); + checkDisp = validateBindingCodeableConcept(errors, path, element, profile, stack, bh, checkDisp, checked, cc, vsRef, valueset, strength, maxVS, true, null); // } else if (binding.hasValueSet()) { // hint(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_CANTCHECK); } else if (!noBindingMsgSuppressed) { hint(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_NOSOURCE, path); } for (ElementDefinitionBindingAdditionalComponent ab : binding.getAdditional()) { - if (isTestableBinding(ab) && isInScope(ab)) { + StringBuilder b = new StringBuilder(); + if (isTestableBinding(ab) && isInScope(ab, profile, getResource(stack), b)) { String vsRef = ab.getValueSet(); ValueSet valueset = resolveBindingReference(profile, vsRef, profile.getUrl(), profile); BindingStrength strength = convertPurposeToStrength(ab.getPurpose()); - checkDisp = validateBindingCodeableConcept(errors, path, element, profile, stack, bh, checkDisp, checked, cc, vsRef, valueset, strength, null, false) && checkDisp; + checkDisp = validateBindingCodeableConcept(errors, path, element, profile, stack, bh, checkDisp, checked, cc, vsRef, valueset, strength, null, false, b.toString()) && checkDisp; } } } catch (CheckCodeOnServerException e) { @@ -1394,25 +1396,186 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat return checkDisp; } - private boolean isInScope(ElementDefinitionBindingAdditionalComponent ab) { + private boolean isInScope(ElementDefinitionBindingAdditionalComponent ab, StructureDefinition profile, Element resource, StringBuilder b) { + if (ab.getUsage().isEmpty()) { + return true; + } + boolean ok = true; for (UsageContext usage : ab.getUsage()) { - if (isInScope(usage)) { + if (!isInScope(usage, profile, resource, b)) { + ok = false; + } + } + return ok; + } + + private boolean isInScope(UsageContext usage, StructureDefinition profile, Element resource, StringBuilder b) { + if (isKnownUsage(usage)) { + return true; + } + if (usage.getCode().hasSystem() && (usage.getCode().getSystem().equals(profile.getUrl()) || usage.getCode().getSystem().equals(profile.getVersionedUrl()))) { + // if it's not a defined usage from external sources, it might match something in the data content + List items = findDataValue(resource, usage.getCode().getCode()); + if (matchesUsage(items, usage.getValue())) { + b.append(context.formatMessage(I18nConstants.BINDING_ADDITIONAL_USAGE, displayCoding(usage.getCode()), display(usage.getValue()))); return true; } } - return ab.getUsage().isEmpty(); + return false; } - private boolean isInScope(UsageContext usage) { - if (isKnownUsage(usage)) { + private String displayCoding(Coding value) { + return value.getCode(); + } + + private String displayCodeableConcept(CodeableConcept value) { + for (Coding c : value.getCoding()) { + String s = displayCoding(c); + if (s != null) { + return s; + } + } + return value.getText(); + } + + private String display(DataType value) { + switch (value.fhirType()) { + case "Coding" : return displayCoding((Coding) value); + case "CodeableConcept" : return displayCodeableConcept((CodeableConcept) value); + } + return value.fhirType(); + } + + private boolean matchesUsage(List items, DataType value) { + for (Element item : items) { + if (matchesUsage(item, value)) { + return true; + } + } + return false; + } + + + + private String display(List items) { + CommaSeparatedStringBuilder b = new CommaSeparatedStringBuilder(); + for (Element item : items) { + display(b, item); + } + return b.toString(); + } + + private void display(CommaSeparatedStringBuilder b, Element item) { + if (item.isPrimitive()) { + b.append(item.primitiveValue()); + } else if (item.fhirType().equals("CodeableConcept")) { + for (Element c : item.getChildren("coding")) { + b.append(c.getNamedChildValue("code")); + } + } else { + b.append(item.toString()); + } + + } + + private boolean matchesUsage(Element item, DataType value) { + switch (value.fhirType()) { + case "CodeableConcept": return matchesUsageCodeableConcept(item, (CodeableConcept) value); + case "Quantity": return false; + case "Range": return false; + case "Reference": return false; + default: return false; + } + } + + private boolean matchesUsageCodeableConcept(Element item, CodeableConcept value) { + switch (item.fhirType()) { + case "CodeableConcept": return matchesUsageCodeableConceptCodeableConcept(item, value); + case "Coding": return matchesUsageCodeableConceptCoding(item, value); + default: return false; + } + } + + private boolean matchesUsageCodeableConceptCoding(Element item, CodeableConcept value) { + String system = item.getNamedChildValue("system"); + String version = item.getNamedChildValue("version"); + String code = item.getNamedChildValue("code"); + for (Coding c : value.getCoding()) { + if (system == null || !system.equals(c.getSystem())) { + return false; + } + if (code == null || !code.equals(c.getCode())) { + return false; + } + if (c.hasVersion()) { + if (version == null || !version.equals(c.getVersion())) { + return false; + } + } return true; } return false; } + private boolean matchesUsageCodeableConceptCodeableConcept(Element item, CodeableConcept value) { + for (Element code : item.getChildren("coding")) { + if (matchesUsageCodeableConceptCoding(code, value)) { + return true; + } + } + return false; + } + + private List findDataValue(Element resource, String code) { + List items = new ArrayList(); + if (resource != null) { + findDataValues(items, resource, code); + } + return items; + } + + private void findDataValues(List items, Element element, String path) { + if (element.getPath() == null) { + return; + } + if (pathMatches(element.getPath(), path)) { + items.add(element); + } else if (element.hasChildren() && path.startsWith(element.getPath())) { + for (Element child : element.getChildren()) { + findDataValues(items, child, path); + } + } + } + + private boolean pathMatches(String actualPath, String pathSpec) { + String[] ap = actualPath.split("\\."); + String[] ps = pathSpec.split("\\."); + if (ap.length != ps.length) { + return false; + } + for (int i = 0; i < ap.length; i++) { + if (!pathSegmentMatches(ap[i], ps[i])) { + return false; + } + } + return true; + } + + private boolean pathSegmentMatches(String ap, String ps) { + if (ps.contains("[")) { + return ap.equals(ps); + } else { + if (ap.contains("[")) { + ap = ap.substring(0, ap.indexOf("[")); + } + return ap.equals(ps); + } + } + private BindingStrength convertPurposeToStrength(AdditionalBindingPurposeVS purpose) { switch (purpose) { case MAXIMUM: return BindingStrength.REQUIRED; + case EXTENSIBLE: return BindingStrength.EXTENSIBLE; case PREFERRED: return BindingStrength.PREFERRED; case REQUIRED: return BindingStrength.REQUIRED; default: return null; @@ -1424,7 +1587,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } private boolean validateBindingCodeableConcept(List errors, String path, Element element, StructureDefinition profile, NodeStack stack, BooleanHolder bh, boolean checkDisp, BooleanHolder checked, - CodeableConcept cc, String vsRef, ValueSet valueset, BindingStrength strength, Extension maxVS, boolean base) throws CheckCodeOnServerException { + CodeableConcept cc, String vsRef, ValueSet valueset, BindingStrength strength, Extension maxVS, boolean base, String usageNote) throws CheckCodeOnServerException { if (valueset == null) { CodeSystem cs = context.fetchCodeSystem(vsRef); if (rule(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, cs == null, I18nConstants.TERMINOLOGY_TX_VALUESET_NOTFOUND_CS, describeReference(vsRef))) { @@ -1436,12 +1599,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat BindingContext bc = base ? BindingContext.BASE : BindingContext.ADDITIONAL; if (!cc.hasCoding()) { if (strength == BindingStrength.REQUIRED) - bh.see(rule(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CODE_VALUESET, describeReference(vsRef, valueset, bc))); + bh.see(rule(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CODE_VALUESET, describeReference(vsRef, valueset, bc, usageNote))); else if (strength == BindingStrength.EXTENSIBLE) { if (maxVS != null) bh.see(rule(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CODE_VALUESETMAX, describeReference(ToolingExtensions.readStringFromExtension(maxVS)), valueset.getVersionedUrl())); else if (!noExtensibleWarnings) { - warning(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CODE_VALUESET_EXT, describeReference(vsRef, valueset, bc)); + warning(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CODE_VALUESET_EXT, describeReference(vsRef, valueset, bc, usageNote)); } } } else { @@ -1491,17 +1654,17 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } } else if (vr.getErrorClass() != null && vr.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED) { // we've already handled the warnings / errors about this, and set the status correctly. We don't need to do anything more? - } else { + } else if (vr.getErrorClass() != TerminologyServiceErrorClass.SERVER_ERROR) { // (should have?) already handled server error if (strength == BindingStrength.REQUIRED) { - bh.see(txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_1_CC, describeReference(vsRef, valueset, bc), ccSummary(cc))); + bh.see(txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_1_CC, describeReference(vsRef, valueset, bc, usageNote), ccSummary(cc))); } else if (strength == BindingStrength.EXTENSIBLE) { if (maxVS != null) bh.see(checkMaxValueSet(errors, path, element, profile, ToolingExtensions.readStringFromExtension(maxVS), cc, stack)); if (!noExtensibleWarnings) - txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_2_CC, describeReference(vsRef, valueset, bc), ccSummary(cc)); + txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_2_CC, describeReference(vsRef, valueset, bc, usageNote), ccSummary(cc)); } else if (strength == BindingStrength.PREFERRED) { if (baseOnly) { - txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_3_CC, describeReference(vsRef, valueset, bc), ccSummary(cc)); + txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_3_CC, describeReference(vsRef, valueset, bc, usageNote), ccSummary(cc)); } } } @@ -1648,7 +1811,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat BindingStrength strength = binding.getStrength(); Extension vsMax = binding.getExtensionByUrl(ToolingExtensions.EXT_MAX_VALUESET); - validateBindingCodeableConcept(errors, path, element, profile, stack, ok, false, new BooleanHolder(), cc, vsRef, valueset, strength, vsMax, true); + validateBindingCodeableConcept(errors, path, element, profile, stack, ok, false, new BooleanHolder(), cc, vsRef, valueset, strength, vsMax, true, null); // special case: if the logical model has both CodeableConcept and Coding mappings, we'll also check the first coding. if (getMapping("http://hl7.org/fhir/terminology-pattern", logical, logical.getSnapshot().getElementFirstRep()).contains("Coding")) { @@ -1660,11 +1823,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat hint(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_NOSOURCE, path); } for (ElementDefinitionBindingAdditionalComponent ab : binding.getAdditional()) { - if (isTestableBinding(ab) && isInScope(ab)) { + StringBuilder b = new StringBuilder(); + if (isTestableBinding(ab) && isInScope(ab, profile, getResource(stack), b)) { String vsRef = ab.getValueSet(); ValueSet valueset = resolveBindingReference(profile, vsRef, profile.getUrl(), profile); BindingStrength strength = convertPurposeToStrength(ab.getPurpose()); - validateBindingCodeableConcept(errors, path, element, profile, stack, ok, false, new BooleanHolder(), cc, vsRef, valueset, strength, null, false); + validateBindingCodeableConcept(errors, path, element, profile, stack, ok, false, new BooleanHolder(), cc, vsRef, valueset, strength, null, false, b.toString()); } } } @@ -1698,18 +1862,19 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat BindingStrength strength = binding.getStrength(); Extension vsMax = binding.getExtensionByUrl(ToolingExtensions.EXT_MAX_VALUESET); - ok = validateBindingTerminologyCoding(errors, path, element, profile, stack, ok, c, code, system, display, vsRef, valueset, strength, vsMax, true); + ok = validateBindingTerminologyCoding(errors, path, element, profile, stack, ok, c, code, system, display, vsRef, valueset, strength, vsMax, true, null); } else if (binding.hasValueSet()) { hint(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_CANTCHECK); } else if (!inCodeableConcept && !noBindingMsgSuppressed) { hint(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_NOSOURCE, path); } for (ElementDefinitionBindingAdditionalComponent ab : binding.getAdditional()) { - if (isTestableBinding(ab) && isInScope(ab)) { + StringBuilder b = new StringBuilder(); + if (isTestableBinding(ab) && isInScope(ab, profile, getResource(stack), b)) { String vsRef = ab.getValueSet(); ValueSet valueset = resolveBindingReference(profile, vsRef, profile.getUrl(), profile); BindingStrength strength = convertPurposeToStrength(ab.getPurpose()); - ok = validateBindingTerminologyCoding(errors, path, element, profile, stack, ok, c, code, system, display, vsRef, valueset, strength, null, true) && ok; + ok = validateBindingTerminologyCoding(errors, path, element, profile, stack, ok, c, code, system, display, vsRef, valueset, strength, null, true, b.toString()) && ok; } } } @@ -1728,7 +1893,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat private boolean validateBindingTerminologyCoding(List errors, String path, Element element, StructureDefinition profile, NodeStack stack, boolean ok, Coding c, String code, String system, String display, - String vsRef, ValueSet valueset, BindingStrength strength, Extension vsMax, boolean base) { + String vsRef, ValueSet valueset, BindingStrength strength, Extension vsMax, boolean base, String usageNote) { if (valueset == null) { CodeSystem cs = context.fetchCodeSystem(vsRef); if (rule(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, cs == null, I18nConstants.TERMINOLOGY_TX_VALUESET_NOTFOUND_CS, describeReference(vsRef))) { @@ -1754,27 +1919,27 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_NOSERVER, system+"#"+code); else if (vr.getErrorClass() != null && vr.getErrorClass().isInfrastructure()) { if (strength == BindingStrength.REQUIRED) - txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_4a, describeReference(vsRef, valueset, bc), vr.getMessage(), system+"#"+code); + txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_4a, describeReference(vsRef, valueset, bc, usageNote), vr.getMessage(), system+"#"+code); else if (strength == BindingStrength.EXTENSIBLE) { if (vsMax != null) checkMaxValueSet(errors, path, element, profile, ToolingExtensions.readStringFromExtension(vsMax), c, stack); else if (!noExtensibleWarnings) - txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_5, describeReference(vsRef, valueset, bc)); + txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_5, describeReference(vsRef, valueset, bc, usageNote)); } else if (strength == BindingStrength.PREFERRED) { if (baseOnly) { - txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_6, describeReference(vsRef, valueset, bc)); + txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_6, describeReference(vsRef, valueset, bc, usageNote)); } } } else if (strength == BindingStrength.REQUIRED) - ok= txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_4, describeReference(vsRef, valueset, bc), (vr.getMessage() != null ? " (error message = " + vr.getMessage() + ")" : ""), system+"#"+code) && ok; + ok= txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_4, describeReference(vsRef, valueset, bc, usageNote), (vr.getMessage() != null ? " (error message = " + vr.getMessage() + ")" : ""), system+"#"+code) && ok; else if (strength == BindingStrength.EXTENSIBLE) { if (vsMax != null) ok = checkMaxValueSet(errors, path, element, profile, ToolingExtensions.readStringFromExtension(vsMax), c, stack) && ok; else - txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_5, describeReference(vsRef, valueset, bc), (vr.getMessage() != null ? " (error message = " + vr.getMessage() + ")" : ""), system+"#"+code); + txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_5, describeReference(vsRef, valueset, bc, usageNote), (vr.getMessage() != null ? " (error message = " + vr.getMessage() + ")" : ""), system+"#"+code); } else if (strength == BindingStrength.PREFERRED) { if (baseOnly) { - txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_6, describeReference(vsRef, valueset, bc), (vr.getMessage() != null ? " (error message = " + vr.getMessage() + ")" : ""), system+"#"+code); + txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_6, describeReference(vsRef, valueset, bc, usageNote), (vr.getMessage() != null ? " (error message = " + vr.getMessage() + ")" : ""), system+"#"+code); } } } else if (vr != null && vr.getMessage() != null){ @@ -1896,9 +2061,9 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat timeTracker.tx(t, "vc "+cc.toString()); if (!vr.isOk()) { if (vr.getErrorClass() != null && vr.getErrorClass().isInfrastructure()) - txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_7, describeReference(maxVSUrl, valueset, BindingContext.MAXVS), vr.getMessage()); + txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_7, describeReference(maxVSUrl, valueset, BindingContext.MAXVS, null), vr.getMessage()); else - ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_8, describeReference(maxVSUrl, valueset, BindingContext.MAXVS), ccSummary(cc)) && ok; + ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_8, describeReference(maxVSUrl, valueset, BindingContext.MAXVS, null), ccSummary(cc)) && ok; } } catch (CheckCodeOnServerException e) { if (STACK_TRACE) e.getCause().printStackTrace(); @@ -1936,9 +2101,9 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat timeTracker.tx(t, "vc "+c.getSystem()+"#"+c.getCode()+" '"+c.getDisplay()+"'"); if (!vr.isOk()) { if (vr.getErrorClass() != null && vr.getErrorClass().isInfrastructure()) - txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_9, describeReference(maxVSUrl, valueset, BindingContext.MAXVS), vr.getMessage(), c.getSystem()+"#"+c.getCode()); + txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_9, describeReference(maxVSUrl, valueset, BindingContext.MAXVS, null), vr.getMessage(), c.getSystem()+"#"+c.getCode()); else - ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_10, describeReference(maxVSUrl, valueset, BindingContext.MAXVS), c.getSystem(), c.getCode()) && ok; + ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_10, describeReference(maxVSUrl, valueset, BindingContext.MAXVS, null), c.getSystem(), c.getCode()) && ok; } } catch (Exception e) { if (STACK_TRACE) e.printStackTrace(); @@ -1966,9 +2131,9 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat timeTracker.tx(t, "vc "+value); if (!vr.isOk()) { if (vr.getErrorClass() != null && vr.getErrorClass().isInfrastructure()) - txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_9, describeReference(maxVSUrl, valueset, BindingContext.BASE), vr.getMessage(), value); + txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_9, describeReference(maxVSUrl, valueset, BindingContext.BASE, null), vr.getMessage(), value); else { - ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_11, describeReference(maxVSUrl, valueset, BindingContext.BASE), vr.getMessage()) && ok; + ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_11, describeReference(maxVSUrl, valueset, BindingContext.BASE, null), vr.getMessage()) && ok; } } } catch (Exception e) { @@ -2029,7 +2194,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat BindingStrength strength = binding.getStrength(); Extension vsMax = binding.getExtensionByUrl(ToolingExtensions.EXT_MAX_VALUESET); - ok = validateBindingCodedElement(errors, path, element, profile, stack, theCode, theSystem, ok, checked, c, vsRef, valueset, strength, vsMax, true); + ok = validateBindingCodedElement(errors, path, element, profile, stack, theCode, theSystem, ok, checked, c, vsRef, valueset, strength, vsMax, true, null); // } else if (binding.hasValueSet()) { // hint(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_CANTCHECK); @@ -2038,12 +2203,13 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } for (ElementDefinitionBindingAdditionalComponent ab : binding.getAdditional()) { - if (isTestableBinding(ab) && isInScope(ab)) { + StringBuilder b = new StringBuilder(); + if (isTestableBinding(ab) && isInScope(ab, profile, getResource(stack), b)) { String vsRef = ab.getValueSet(); ValueSet valueset = resolveBindingReference(profile, vsRef, profile.getUrl(), profile); BindingStrength strength = convertPurposeToStrength(ab.getPurpose()); - ok = validateBindingCodedElement(errors, path, element, profile, stack, theCode, theSystem, ok, checked, c, vsRef, valueset, strength, null, false) && ok; + ok = validateBindingCodedElement(errors, path, element, profile, stack, theCode, theSystem, ok, checked, c, vsRef, valueset, strength, null, false, b.toString()) && ok; } } } catch (Exception e) { @@ -2068,9 +2234,19 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat return ok; } + private Element getResource(NodeStack stack) { + if (stack.getElement().isResource()) { + return stack.getElement(); + } + if (stack.getParent() == null) { + return null; + } + return getResource(stack.getParent()); + } + private boolean validateBindingCodedElement(List errors, String path, Element element, StructureDefinition profile, NodeStack stack, String theCode, String theSystem, boolean ok, BooleanHolder checked, - Coding c, String vsRef, ValueSet valueset, BindingStrength strength, Extension vsMax, boolean base) { + Coding c, String vsRef, ValueSet valueset, BindingStrength strength, Extension vsMax, boolean base, String usageNote) { if (valueset == null) { CodeSystem cs = context.fetchCodeSystem(vsRef); if (rule(errors, NO_RULE_DATE, IssueType.CODEINVALID, element.line(), element.col(), path, cs == null, I18nConstants.TERMINOLOGY_TX_VALUESET_NOTFOUND_CS, describeReference(vsRef))) { @@ -2098,28 +2274,28 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_BINDING_NOSERVER, theSystem+"#"+theCode); else if (vr.getErrorClass() != null && !vr.getErrorClass().isInfrastructure()) { if (strength == BindingStrength.REQUIRED) - ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_4a, describeReference(vsRef, valueset, bc), vr.getMessage(), theSystem+"#"+theCode) && ok; + ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_4a, describeReference(vsRef, valueset, bc, usageNote), vr.getMessage(), theSystem+"#"+theCode) && ok; else if (strength == BindingStrength.EXTENSIBLE) { if (vsMax != null) checkMaxValueSet(errors, path, element, profile, ToolingExtensions.readStringFromExtension(vsMax), c, stack); else if (!noExtensibleWarnings) - txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_5, describeReference(vsRef, valueset, bc), theSystem+"#"+theCode); + txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_5, describeReference(vsRef, valueset, bc, usageNote), theSystem+"#"+theCode); } else if (strength == BindingStrength.PREFERRED) { if (baseOnly) { - txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_6, describeReference(vsRef, valueset, bc), theSystem+"#"+theCode); + txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_CONFIRM_6, describeReference(vsRef, valueset, bc, usageNote), theSystem+"#"+theCode); } } } else if (strength == BindingStrength.REQUIRED) - ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_12, describeReference(vsRef, valueset, bc), getErrorMessage(vr.getMessage()), theSystem+"#"+theCode) && ok; + ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_12, describeReference(vsRef, valueset, bc, usageNote), getErrorMessage(vr.getMessage()), theSystem+"#"+theCode) && ok; else if (strength == BindingStrength.EXTENSIBLE) { if (vsMax != null) ok = checkMaxValueSet(errors, path, element, profile, ToolingExtensions.readStringFromExtension(vsMax), c, stack) && ok; else if (!noExtensibleWarnings) { - txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_13, describeReference(vsRef, valueset, bc), getErrorMessage(vr.getMessage()), c.getSystem()+"#"+c.getCode()); + txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_13, describeReference(vsRef, valueset, bc, usageNote), getErrorMessage(vr.getMessage()), c.getSystem()+"#"+c.getCode()); } } else if (strength == BindingStrength.PREFERRED) { if (baseOnly) { - txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_14, describeReference(vsRef, valueset, bc), getErrorMessage(vr.getMessage()), theSystem+"#"+theCode); + txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_14, describeReference(vsRef, valueset, bc, usageNote), getErrorMessage(vr.getMessage()), theSystem+"#"+theCode); } } } else if (vr != null && vr.getMessage() != null) { @@ -3017,7 +3193,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat // check that no illegal elements and attributes have been used ok = checkInnerNames(errors, e, path, xhtml.getChildNodes(), false) && ok; ok = checkUrls(errors, e, path, xhtml.getChildNodes()) && ok; - ok = checkIdRefs(errors, e, path, xhtml, resource) && ok; + ok = checkIdRefs(errors, e, path, xhtml, resource, node) && ok; if (true) { ok = checkReferences(valContext, errors, e, path, "div", xhtml, resource) && ok; } @@ -3466,11 +3642,11 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat return ok; } - private boolean checkIdRefs(List errors, Element e, String path, XhtmlNode node, Element resource) { + private boolean checkIdRefs(List errors, Element e, String path, XhtmlNode node, Element resource, NodeStack stack) { boolean ok = true; if (node.getNodeType() == NodeType.Element && node.getAttribute("idref") != null) { String idref = node.getAttribute("idref"); - int count = countFragmentMatches(resource, idref); + int count = countFragmentMatches(resource, idref, stack); if (count == 0) { ok = warning(errors, "2023-12-01", IssueType.INVALID, e.line(), e.col(), path, idref == null, I18nConstants.XHTML_IDREF_NOT_FOUND, idref) && ok; } else if (count > 1) { @@ -3479,7 +3655,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } if (node.hasChildren()) { for (XhtmlNode child : node.getChildNodes()) { - checkIdRefs(errors, e, path, child, resource); + checkIdRefs(errors, e, path, child, resource, stack); } } return ok; @@ -3563,15 +3739,15 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } else if (vr.getErrorClass() != null && vr.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED) { txWarning(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, vr.getMessage()); } else if (binding.getStrength() == BindingStrength.REQUIRED) { - ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_16, value, describeReference(binding.getValueSet(), vs, BindingContext.BASE), getErrorMessage(vr.getMessage())) && ok; + ok = txRule(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_16, value, describeReference(binding.getValueSet(), vs, BindingContext.BASE, null), getErrorMessage(vr.getMessage())) && ok; } else if (binding.getStrength() == BindingStrength.EXTENSIBLE) { if (binding.hasExtension(ToolingExtensions.EXT_MAX_VALUESET)) ok = checkMaxValueSet(errors, path, element, profile, ToolingExtensions.readStringExtension(binding, ToolingExtensions.EXT_MAX_VALUESET), value, stack) && ok; else if (!noExtensibleWarnings && !isOkExtension(value, vs)) - txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_17, value, describeReference(binding.getValueSet(), vs, BindingContext.BASE), getErrorMessage(vr.getMessage())); + txWarningForLaterRemoval(element, errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_17, value, describeReference(binding.getValueSet(), vs, BindingContext.BASE, null), getErrorMessage(vr.getMessage())); } else if (binding.getStrength() == BindingStrength.PREFERRED) { if (baseOnly) { - txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_18, value, describeReference(binding.getValueSet(), vs, BindingContext.BASE), getErrorMessage(vr.getMessage())); + txHint(errors, NO_RULE_DATE, vr.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, false, I18nConstants.TERMINOLOGY_TX_NOVALID_18, value, describeReference(binding.getValueSet(), vs, BindingContext.BASE, null), getErrorMessage(vr.getMessage())); } } } else if (vr != null && vr.getMessage() != null){ @@ -4279,7 +4455,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat return false; } - private String describeReference(String reference, CanonicalResource target, BindingContext ctxt) { + private String describeReference(String reference, CanonicalResource target, BindingContext ctxt, String usageNote) { if (reference == null && target == null) return "null"; String res = null; @@ -4297,7 +4473,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } } switch (ctxt) { - case ADDITIONAL: return context.formatMessage(I18nConstants.BINDING_ADDITIONAL, res); + case ADDITIONAL: return context.formatMessage(Utilities.noString(usageNote) ? I18nConstants.BINDING_ADDITIONAL_D : I18nConstants.BINDING_ADDITIONAL_UC, res, usageNote); case MAXVS: return context.formatMessage(I18nConstants.BINDING_MAX, res); default: return res; } @@ -5891,20 +6067,22 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat Element div = text.getNamedChild("div", false); if (lang != null && div != null) { XhtmlNode xhtml = div.getXhtml(); - String l = xhtml.getAttribute("lang"); - String xl = xhtml.getAttribute("xml:lang"); - if (l == null && xl == null) { - warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_MISSING1); - } else { - if (l == null) { - warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_MISSING2); - } else if (!l.equals(lang)) { - warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_DIFFERENT1, lang, l); - } - if (xl == null) { - warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_MISSING3); - } else if (!xl.equals(lang)) { - warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_DIFFERENT2, lang, xl); + if (xhtml != null) { + String l = xhtml.getAttribute("lang"); + String xl = xhtml.getAttribute("xml:lang"); + if (l == null && xl == null) { + warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_MISSING1); + } else { + if (l == null) { + warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_MISSING2); + } else if (!l.equals(lang)) { + warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_DIFFERENT1, lang, l); + } + if (xl == null) { + warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_MISSING3); + } else if (!xl.equals(lang)) { + warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, div.line(), div.col(), stack.getLiteralPath(), false, I18nConstants.LANGUAGE_XHTML_LANG_DIFFERENT2, lang, xl); + } } } } @@ -7439,6 +7617,9 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } + public long timeNoTX() { + return (timeTracker.getOverall() - timeTracker.getTxTime()) / 1000000; + } public String reportTimes() { String s = String.format("Times (ms): overall = %d:4, tx = %d, sd = %d, load = %d, fpe = %d, spec = %d", timeTracker.getOverall() / 1000000, timeTracker.getTxTime() / 1000000, timeTracker.getSdTime() / 1000000, timeTracker.getLoadTime() / 1000000, timeTracker.getFpeTime() / 1000000, timeTracker.getSpecTime() / 1000000); timeTracker.reset(); @@ -7852,6 +8033,10 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat public void setNoExperimentalContent(boolean noExperimentalContent) { this.noExperimentalContent = noExperimentalContent; } + + public void resetTimes() { + timeTracker.reset(); + } } diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/type/StructureDefinitionValidator.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/type/StructureDefinitionValidator.java index 0df6dd68f..30bbdb9af 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/type/StructureDefinitionValidator.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/type/StructureDefinitionValidator.java @@ -191,7 +191,7 @@ public class StructureDefinitionValidator extends BaseValidator { } } } catch (Exception e) { - e.printStackTrace(); + //e.printStackTrace(); rule(errors, NO_RULE_DATE, IssueType.EXCEPTION, stack.getLiteralPath(), false, I18nConstants.ERROR_GENERATING_SNAPSHOT, e.getMessage()); ok = false; } @@ -525,7 +525,7 @@ public class StructureDefinitionValidator extends BaseValidator { ok = rule(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), characteristics.contains("can-bind") , I18nConstants.SD_ILLEGAL_CHARACTERISTICS, "Binding", typeCodes) && ok; } Element binding = element.getNamedChild("binding", false); - ok = validateBinding(errors, binding, stack.push(binding, -1, null, null), typeCodes, snapshot, path, experimental) && ok; + ok = validateBinding(errors, binding, stack.push(binding, -1, null, null), typeCodes, snapshot, path, experimental, sd) && ok; } else { // this is a good idea but there's plenty of cases where the rule isn't met; maybe one day it's worth investing the time to exclude these cases and bring this rule back // String bt = boundType(typeCodes); @@ -989,7 +989,7 @@ public class StructureDefinitionValidator extends BaseValidator { return null; } - private boolean validateBinding(List errors, Element binding, NodeStack stack, Set typeCodes, boolean snapshot, String path, boolean experimental) { + private boolean validateBinding(List errors, Element binding, NodeStack stack, Set typeCodes, boolean snapshot, String path, boolean experimental, StructureDefinition profile) { boolean ok = true; if (bindableType(typeCodes) == null) { ok = rule(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), !snapshot, I18nConstants.SD_ED_BIND_NO_BINDABLE, path, typeCodes.toString()) && ok; @@ -1019,9 +1019,122 @@ public class StructureDefinitionValidator extends BaseValidator { } } } + if (binding.hasChildren("additional")) { + int i = 0; + for (Element ab : binding.getChildren("additional")) { + ok = validateAdditionalBinding(errors, ab, stack.push(ab, i, null, null), snapshot, path, experimental) && ok; + i++; + } + } + if (binding.hasExtension(ToolingExtensions.EXT_BINDING_ADDITIONAL)) { + int i = 0; + for (Element ab : binding.getChildren("extension")) { + String url = ab.getNamedChildValue("url"); + if (ToolingExtensions.EXT_BINDING_ADDITIONAL.equals(url)) { + ok = validateAdditionalBindingExtension(errors, ab, stack.push(ab, i, null, null), snapshot, path, experimental, profile) && ok; + } + i++; + } + } + return ok; + } + + private boolean validateAdditionalBinding(List errors, Element binding, NodeStack stack, boolean snapshot, String path, boolean experimental) { + boolean ok = true; + + if (binding.hasChild("valueSet", false)) { + Element valueSet = binding.getNamedChild("valueSet", false); + String ref = valueSet.hasPrimitiveValue() ? valueSet.primitiveValue() : valueSet.getNamedChildValue("reference", false); + if (warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), !snapshot || ref != null, I18nConstants.SD_ED_SHOULD_BIND_WITH_VS, path)) { + Resource vs = context.fetchResource(Resource.class, ref); + + // just because we can't resolve it directly doesn't mean that terminology server can't. Check with it + + if (warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), vs != null || serverSupportsValueSet(ref), I18nConstants.SD_ED_BIND_UNKNOWN_VS, path, ref)) { + if (vs != null) { + if (rule(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), vs instanceof ValueSet, I18nConstants.SD_ED_BIND_NOT_VS, path, ref, vs.fhirType())) { + ValueSet vsr = (ValueSet) vs; + warning(errors, "2024-09-17", IssueType.BUSINESSRULE, stack.getLiteralPath(), !vsr.getExperimental() || experimental, I18nConstants.SD_ED_EXPERIMENTAL_BINDING, path, ref); + } else { + ok = false; + } + } + } + } + } + if (binding.hasChildren("usage")) { + for (Element usage : binding.getChildren("usage")) { + warning(errors, "2024-09-20", IssueType.BUSINESSRULE, stack.getLiteralPath(), false, "test"); + } + } return ok; } + private boolean validateAdditionalBindingExtension(List errors, Element binding, NodeStack stack, boolean snapshot, String path, boolean experimental, StructureDefinition profile) { + boolean ok = true; + + if (binding.hasExtension("valueSet")) { + Element valueSet = binding.getExtension("valueSet"); + Element vv = valueSet.getNamedChild("value"); + String ref = vv.hasPrimitiveValue() ? vv.primitiveValue() : vv.getNamedChildValue("reference", false); + if (warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), !snapshot || ref != null, I18nConstants.SD_ED_SHOULD_BIND_WITH_VS, path)) { + Resource vs = context.fetchResource(Resource.class, ref); + + // just because we can't resolve it directly doesn't mean that terminology server can't. Check with it + + if (warning(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), vs != null || serverSupportsValueSet(ref), I18nConstants.SD_ED_BIND_UNKNOWN_VS, path, ref)) { + if (vs != null) { + if (rule(errors, NO_RULE_DATE, IssueType.BUSINESSRULE, stack.getLiteralPath(), vs instanceof ValueSet, I18nConstants.SD_ED_BIND_NOT_VS, path, ref, vs.fhirType())) { + ValueSet vsr = (ValueSet) vs; + warning(errors, "2024-09-17", IssueType.BUSINESSRULE, stack.getLiteralPath(), !vsr.getExperimental() || experimental, I18nConstants.SD_ED_EXPERIMENTAL_BINDING, path, ref); + } else { + ok = false; + } + } + } + } + } + if (binding.hasExtension("usage")) { + int i = 0; + for (Element usage : binding.getChildren("extension")) { + String url = usage.getNamedChildValue("url"); + if ("usage".equals(url)) { + Element uv = usage.getNamedChild("value"); + ok = validateAdditionalBindingUsage(errors, uv, stack.push(uv, -1, null, null), path, profile) && ok; + } + i++; + } + } + return ok; + } + + private boolean validateAdditionalBindingUsage(List errors, Element usage, NodeStack stack, String path, StructureDefinition profile) { + boolean ok = true; + Element cc = usage.getNamedChild("code"); + if (cc != null) { + String system = cc.getNamedChildValue("system"); + String code = cc.getNamedChildValue("code"); + if (system != null && system.equals(profile.getUrl())) { + ElementDefinition ed = profile.getDifferential().getElementByPath(code); + if (ed == null) { + ed = profile.getSnapshot().getElementByPath(code); + } + if (ed == null) { + ok = false; + rule(errors, "2024-09-17", IssueType.BUSINESSRULE, stack.getLiteralPath(), false, I18nConstants.SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_ELEMENT, system, code); + } else { + if (usage.hasChild("value")) { + String t = usage.getNamedChild("value").fhirType(); + ok = rule(errors, "2024-09-20", IssueType.BUSINESSRULE, stack.getLiteralPath(), "CodeableConcept".equals(t), I18nConstants.SD_ED_ADDITIONAL_BINDING_USAGE_INVALID_TYPE, t, "CodeableConcept") && ok; + } + } + } else { + warning(errors, "2024-09-17", IssueType.BUSINESSRULE, stack.getLiteralPath(), false, I18nConstants.SD_ED_ADDITIONAL_BINDING_USAGE_UNKNOWN, system, code); + } + } + return ok; + } + private Set getListofBindableTypes(Set types) { Set res = new HashSet<>(); for (String s : types) { diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.terminologyCapabilities.local.fhir.org.r2.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.terminologyCapabilities.local.fhir.org.r2.cache new file mode 100644 index 000000000..e232d950f --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.terminologyCapabilities.local.fhir.org.r2.cache @@ -0,0 +1,2600 @@ +{ + "resourceType" : "TerminologyCapabilities", + "codeSystem" : [{ + "uri" : "http://acme.com/config/fhir/codesystems/cholesterol" + }, + { + "uri" : "http://fdasis.nlm.nih.gov" + }, + { + "uri" : "http://fhir.ohdsi.org/CodeSystem/concepts" + }, + { + "uri" : "http://healthit.gov/nhin/purposeofuse" + }, + { + "uri" : "http://hl7.org/fhir/account-status" + }, + { + "uri" : "http://hl7.org/fhir/actionlist" + }, + { + "uri" : "http://hl7.org/fhir/additionalmaterials" + }, + { + "uri" : "http://hl7.org/fhir/address-type" + }, + { + "uri" : "http://hl7.org/fhir/address-use" + }, + { + "uri" : "http://hl7.org/fhir/adjudication" + }, + { + "uri" : "http://hl7.org/fhir/adjudication-error" + }, + { + "uri" : "http://hl7.org/fhir/adjustment-reason" + }, + { + "uri" : "http://hl7.org/fhir/administrative-gender" + }, + { + "uri" : "http://hl7.org/fhir/admit-source" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-category" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-criticality" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-status" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-type" + }, + { + "uri" : "http://hl7.org/fhir/animal-breed" + }, + { + "uri" : "http://hl7.org/fhir/animal-genderstatus" + }, + { + "uri" : "http://hl7.org/fhir/animal-species" + }, + { + "uri" : "http://hl7.org/fhir/answer-format" + }, + { + "uri" : "http://hl7.org/fhir/appointmentstatus" + }, + { + "uri" : "http://hl7.org/fhir/appropriateness-score" + }, + { + "uri" : "http://hl7.org/fhir/assert-direction-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-operator-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-response-code-types" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-action" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-outcome" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-type" + }, + { + "uri" : "http://hl7.org/fhir/basic-resource-type" + }, + { + "uri" : "http://hl7.org/fhir/binding-strength" + }, + { + "uri" : "http://hl7.org/fhir/bundle-type" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-category" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-status" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-relationship" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-status" + }, + { + "uri" : "http://hl7.org/fhir/choice-list-orientation" + }, + { + "uri" : "http://hl7.org/fhir/claim-type-link" + }, + { + "uri" : "http://hl7.org/fhir/claim-use-link" + }, + { + "uri" : "http://hl7.org/fhir/classification-or-context" + }, + { + "uri" : "http://hl7.org/fhir/clinical-impression-status" + }, + { + "uri" : "http://hl7.org/fhir/communication-request-status" + }, + { + "uri" : "http://hl7.org/fhir/communication-status" + }, + { + "uri" : "http://hl7.org/fhir/composition-attestation-mode" + }, + { + "uri" : "http://hl7.org/fhir/composition-status" + }, + { + "uri" : "http://hl7.org/fhir/concept-map-equivalence" + }, + { + "uri" : "http://hl7.org/fhir/condition-category" + }, + { + "uri" : "http://hl7.org/fhir/condition-clinical" + }, + { + "uri" : "http://hl7.org/fhir/condition-state" + }, + { + "uri" : "http://hl7.org/fhir/condition-ver-status" + }, + { + "uri" : "http://hl7.org/fhir/conditional-delete-status" + }, + { + "uri" : "http://hl7.org/fhir/conformance-expectation" + }, + { + "uri" : "http://hl7.org/fhir/conformance-resource-status" + }, + { + "uri" : "http://hl7.org/fhir/conformance-statement-kind" + }, + { + "uri" : "http://hl7.org/fhir/constraint-severity" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-system" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-use" + }, + { + "uri" : "http://hl7.org/fhir/contactentity-type" + }, + { + "uri" : "http://hl7.org/fhir/content-type" + }, + { + "uri" : "http://hl7.org/fhir/contractsignertypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contractsubtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttermsubtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttermtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttypecodes" + }, + { + "uri" : "http://hl7.org/fhir/data-absent-reason" + }, + { + "uri" : "http://hl7.org/fhir/data-types" + }, + { + "uri" : "http://hl7.org/fhir/dataelement-stringency" + }, + { + "uri" : "http://hl7.org/fhir/days-of-week" + }, + { + "uri" : "http://hl7.org/fhir/detectedissue-severity" + }, + { + "uri" : "http://hl7.org/fhir/device-action" + }, + { + "uri" : "http://hl7.org/fhir/device-use-request-priority" + }, + { + "uri" : "http://hl7.org/fhir/device-use-request-status" + }, + { + "uri" : "http://hl7.org/fhir/devicestatus" + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-order-priority" + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-order-status" + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-report-status" + }, + { + "uri" : "http://hl7.org/fhir/diet" + }, + { + "uri" : "http://hl7.org/fhir/digital-media-type" + }, + { + "uri" : "http://hl7.org/fhir/discharge-disposition" + }, + { + "uri" : "http://hl7.org/fhir/document-mode" + }, + { + "uri" : "http://hl7.org/fhir/document-reference-status" + }, + { + "uri" : "http://hl7.org/fhir/document-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/encounter-class" + }, + { + "uri" : "http://hl7.org/fhir/encounter-location-status" + }, + { + "uri" : "http://hl7.org/fhir/encounter-priority" + }, + { + "uri" : "http://hl7.org/fhir/encounter-special-arrangements" + }, + { + "uri" : "http://hl7.org/fhir/encounter-state" + }, + { + "uri" : "http://hl7.org/fhir/encounter-type" + }, + { + "uri" : "http://hl7.org/fhir/entformula-additive" + }, + { + "uri" : "http://hl7.org/fhir/episode-of-care-status" + }, + { + "uri" : "http://hl7.org/fhir/ex-fdi" + }, + { + "uri" : "http://hl7.org/fhir/ex-oralprostho" + }, + { + "uri" : "http://hl7.org/fhir/ex-pharmaservice" + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceproduct" + }, + { + "uri" : "http://hl7.org/fhir/ex-surface" + }, + { + "uri" : "http://hl7.org/fhir/ex-udi" + }, + { + "uri" : "http://hl7.org/fhir/ex-USCLS" + }, + { + "uri" : "http://hl7.org/fhir/ex-visionprescriptionproduct" + }, + { + "uri" : "http://hl7.org/fhir/exception" + }, + { + "uri" : "http://hl7.org/fhir/extension-context" + }, + { + "uri" : "http://hl7.org/fhir/FDI-surface" + }, + { + "uri" : "http://hl7.org/fhir/filter-operator" + }, + { + "uri" : "http://hl7.org/fhir/flag-category" + }, + { + "uri" : "http://hl7.org/fhir/flag-priority-code" + }, + { + "uri" : "http://hl7.org/fhir/flag-status" + }, + { + "uri" : "http://hl7.org/fhir/flagCategory" + }, + { + "uri" : "http://hl7.org/fhir/fm-conditions" + }, + { + "uri" : "http://hl7.org/fhir/forms-codes" + }, + { + "uri" : "http://hl7.org/fhir/fundsreserve" + }, + { + "uri" : "http://hl7.org/fhir/goal-acceptance-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-category" + }, + { + "uri" : "http://hl7.org/fhir/goal-priority" + }, + { + "uri" : "http://hl7.org/fhir/goal-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/goal-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/group-special-type" + }, + { + "uri" : "http://hl7.org/fhir/group-type" + }, + { + "uri" : "http://hl7.org/fhir/guide-dependency-type" + }, + { + "uri" : "http://hl7.org/fhir/guide-page-kind" + }, + { + "uri" : "http://hl7.org/fhir/guide-resource-purpose" + }, + { + "uri" : "http://hl7.org/fhir/history-status" + }, + { + "uri" : "http://hl7.org/fhir/http-verb" + }, + { + "uri" : "http://hl7.org/fhir/identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/identifier-use" + }, + { + "uri" : "http://hl7.org/fhir/identity-assuranceLevel" + }, + { + "uri" : "http://hl7.org/fhir/immunization-recommendation-date-criterion" + }, + { + "uri" : "http://hl7.org/fhir/immunization-recommendation-status" + }, + { + "uri" : "http://hl7.org/fhir/intervention" + }, + { + "uri" : "http://hl7.org/fhir/issue-severity" + }, + { + "uri" : "http://hl7.org/fhir/issue-type" + }, + { + "uri" : "http://hl7.org/fhir/link-type" + }, + { + "uri" : "http://hl7.org/fhir/list-empty-reason" + }, + { + "uri" : "http://hl7.org/fhir/list-example-use-codes" + }, + { + "uri" : "http://hl7.org/fhir/list-mode" + }, + { + "uri" : "http://hl7.org/fhir/list-order" + }, + { + "uri" : "http://hl7.org/fhir/list-status" + }, + { + "uri" : "http://hl7.org/fhir/location-mode" + }, + { + "uri" : "http://hl7.org/fhir/location-physical-type" + }, + { + "uri" : "http://hl7.org/fhir/location-status" + }, + { + "uri" : "http://hl7.org/fhir/marital-status" + }, + { + "uri" : "http://hl7.org/fhir/measurement-principle" + }, + { + "uri" : "http://hl7.org/fhir/media-subtype" + }, + { + "uri" : "http://hl7.org/fhir/medication-admin-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-dispense-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-order-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/message-conformance-event-mode" + }, + { + "uri" : "http://hl7.org/fhir/message-events" + }, + { + "uri" : "http://hl7.org/fhir/message-reasons-encounter" + }, + { + "uri" : "http://hl7.org/fhir/message-significance-category" + }, + { + "uri" : "http://hl7.org/fhir/message-transport" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-state" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-type" + }, + { + "uri" : "http://hl7.org/fhir/metric-category" + }, + { + "uri" : "http://hl7.org/fhir/metric-color" + }, + { + "uri" : "http://hl7.org/fhir/metric-operational-status" + }, + { + "uri" : "http://hl7.org/fhir/missingtoothreason" + }, + { + "uri" : "http://hl7.org/fhir/modifiers" + }, + { + "uri" : "http://hl7.org/fhir/name-use" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-type" + }, + { + "uri" : "http://hl7.org/fhir/narrative-status" + }, + { + "uri" : "http://hl7.org/fhir/network-type" + }, + { + "uri" : "http://hl7.org/fhir/note-type" + }, + { + "uri" : "http://hl7.org/fhir/nutrition-order-status" + }, + { + "uri" : "http://hl7.org/fhir/object-lifecycle" + }, + { + "uri" : "http://hl7.org/fhir/object-role" + }, + { + "uri" : "http://hl7.org/fhir/object-type" + }, + { + "uri" : "http://hl7.org/fhir/obs-kind" + }, + { + "uri" : "http://hl7.org/fhir/observation-category" + }, + { + "uri" : "http://hl7.org/fhir/observation-relationshiptypes" + }, + { + "uri" : "http://hl7.org/fhir/observation-status" + }, + { + "uri" : "http://hl7.org/fhir/operation-kind" + }, + { + "uri" : "http://hl7.org/fhir/operation-outcome" + }, + { + "uri" : "http://hl7.org/fhir/operation-parameter-use" + }, + { + "uri" : "http://hl7.org/fhir/order-status" + }, + { + "uri" : "http://hl7.org/fhir/organization-type" + }, + { + "uri" : "http://hl7.org/fhir/participant-type" + }, + { + "uri" : "http://hl7.org/fhir/participantrequired" + }, + { + "uri" : "http://hl7.org/fhir/participantstatus" + }, + { + "uri" : "http://hl7.org/fhir/participationstatus" + }, + { + "uri" : "http://hl7.org/fhir/patient-contact-relationship" + }, + { + "uri" : "http://hl7.org/fhir/patient-mpi-match" + }, + { + "uri" : "http://hl7.org/fhir/payeetype" + }, + { + "uri" : "http://hl7.org/fhir/payment-type" + }, + { + "uri" : "http://hl7.org/fhir/paymentstatus" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-role" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-specialty" + }, + { + "uri" : "http://hl7.org/fhir/procedure-progress-status-code" + }, + { + "uri" : "http://hl7.org/fhir/procedure-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/procedure-request-priority" + }, + { + "uri" : "http://hl7.org/fhir/procedure-request-status" + }, + { + "uri" : "http://hl7.org/fhir/procedure-status" + }, + { + "uri" : "http://hl7.org/fhir/processoutcomecodes" + }, + { + "uri" : "http://hl7.org/fhir/processpriority" + }, + { + "uri" : "http://hl7.org/fhir/property-representation" + }, + { + "uri" : "http://hl7.org/fhir/provenance-entity-role" + }, + { + "uri" : "http://hl7.org/fhir/provenance-participant-role" + }, + { + "uri" : "http://hl7.org/fhir/provenance-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/qicore-adverseevent-category" + }, + { + "uri" : "http://hl7.org/fhir/qicore-adverseevent-type" + }, + { + "uri" : "http://hl7.org/fhir/qicore-communication-medium" + }, + { + "uri" : "http://hl7.org/fhir/qicore-condition-criticality" + }, + { + "uri" : "http://hl7.org/fhir/qicore-diagnosticorder-precondition" + }, + { + "uri" : "http://hl7.org/fhir/qicore-military-service" + }, + { + "uri" : "http://hl7.org/fhir/qicore-observation-verification-method" + }, + { + "uri" : "http://hl7.org/fhir/quantity-comparator" + }, + { + "uri" : "http://hl7.org/fhir/question-max-occurs" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-answers-status" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-question-control" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-status" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-certainty" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-severity" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-given" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-not-given" + }, + { + "uri" : "http://hl7.org/fhir/referencerange-meaning" + }, + { + "uri" : "http://hl7.org/fhir/referralstatus" + }, + { + "uri" : "http://hl7.org/fhir/relationship" + }, + { + "uri" : "http://hl7.org/fhir/remittance-outcome" + }, + { + "uri" : "http://hl7.org/fhir/resource-aggregation-mode" + }, + { + "uri" : "http://hl7.org/fhir/resource-slicing-rules" + }, + { + "uri" : "http://hl7.org/fhir/resource-types" + }, + { + "uri" : "http://hl7.org/fhir/resource-validation-mode" + }, + { + "uri" : "http://hl7.org/fhir/response-code" + }, + { + "uri" : "http://hl7.org/fhir/restful-conformance-mode" + }, + { + "uri" : "http://hl7.org/fhir/restful-interaction" + }, + { + "uri" : "http://hl7.org/fhir/restful-security-service" + }, + { + "uri" : "http://hl7.org/fhir/risk-probability" + }, + { + "uri" : "http://hl7.org/fhir/ruleset" + }, + { + "uri" : "http://hl7.org/fhir/search-entry-mode" + }, + { + "uri" : "http://hl7.org/fhir/search-modifier-code" + }, + { + "uri" : "http://hl7.org/fhir/search-param-type" + }, + { + "uri" : "http://hl7.org/fhir/search-xpath-usage" + }, + { + "uri" : "http://hl7.org/fhir/security-source-type" + }, + { + "uri" : "http://hl7.org/fhir/service-provision-conditions" + }, + { + "uri" : "http://hl7.org/fhir/service-referral-method" + }, + { + "uri" : "http://hl7.org/fhir/sid/ndc" + }, + { + "uri" : "http://hl7.org/fhir/slotstatus" + }, + { + "uri" : "http://hl7.org/fhir/special-values" + }, + { + "uri" : "http://hl7.org/fhir/specimen-status" + }, + { + "uri" : "http://hl7.org/fhir/structure-definition-kind" + }, + { + "uri" : "http://hl7.org/fhir/subscription-channel-type" + }, + { + "uri" : "http://hl7.org/fhir/subscription-status" + }, + { + "uri" : "http://hl7.org/fhir/subscription-tag" + }, + { + "uri" : "http://hl7.org/fhir/substance-category" + }, + { + "uri" : "http://hl7.org/fhir/supply-item-type" + }, + { + "uri" : "http://hl7.org/fhir/supply-kind" + }, + { + "uri" : "http://hl7.org/fhir/supplydelivery-status" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-reason" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-status" + }, + { + "uri" : "http://hl7.org/fhir/testscript-operation-codes" + }, + { + "uri" : "http://hl7.org/fhir/timing-abbreviation" + }, + { + "uri" : "http://hl7.org/fhir/transaction-mode" + }, + { + "uri" : "http://hl7.org/fhir/unknown-content-code" + }, + { + "uri" : "http://hl7.org/fhir/uslab-event" + }, + { + "uri" : "http://hl7.org/fhir/v2/0001" + }, + { + "uri" : "http://hl7.org/fhir/v2/0002" + }, + { + "uri" : "http://hl7.org/fhir/v2/0003" + }, + { + "uri" : "http://hl7.org/fhir/v2/0004" + }, + { + "uri" : "http://hl7.org/fhir/v2/0006/2.1" + }, + { + "uri" : "http://hl7.org/fhir/v2/0006/2.4" + }, + { + "uri" : "http://hl7.org/fhir/v2/0007" + }, + { + "uri" : "http://hl7.org/fhir/v2/0008" + }, + { + "uri" : "http://hl7.org/fhir/v2/0009" + }, + { + "uri" : "http://hl7.org/fhir/v2/0012" + }, + { + "uri" : "http://hl7.org/fhir/v2/0017" + }, + { + "uri" : "http://hl7.org/fhir/v2/0023" + }, + { + "uri" : "http://hl7.org/fhir/v2/0027" + }, + { + "uri" : "http://hl7.org/fhir/v2/0033" + }, + { + "uri" : "http://hl7.org/fhir/v2/0034" + }, + { + "uri" : "http://hl7.org/fhir/v2/0038" + }, + { + "uri" : "http://hl7.org/fhir/v2/0043" + }, + { + "uri" : "http://hl7.org/fhir/v2/0048" + }, + { + "uri" : "http://hl7.org/fhir/v2/0052" + }, + { + "uri" : "http://hl7.org/fhir/v2/0061" + }, + { + "uri" : "http://hl7.org/fhir/v2/0062" + }, + { + "uri" : "http://hl7.org/fhir/v2/0063" + }, + { + "uri" : "http://hl7.org/fhir/v2/0065" + }, + { + "uri" : "http://hl7.org/fhir/v2/0066" + }, + { + "uri" : "http://hl7.org/fhir/v2/0069" + }, + { + "uri" : "http://hl7.org/fhir/v2/0070" + }, + { + "uri" : "http://hl7.org/fhir/v2/0074" + }, + { + "uri" : "http://hl7.org/fhir/v2/0076" + }, + { + "uri" : "http://hl7.org/fhir/v2/0078" + }, + { + "uri" : "http://hl7.org/fhir/v2/0080" + }, + { + "uri" : "http://hl7.org/fhir/v2/0083" + }, + { + "uri" : "http://hl7.org/fhir/v2/0085" + }, + { + "uri" : "http://hl7.org/fhir/v2/0091" + }, + { + "uri" : "http://hl7.org/fhir/v2/0092" + }, + { + "uri" : "http://hl7.org/fhir/v2/0098" + }, + { + "uri" : "http://hl7.org/fhir/v2/0100" + }, + { + "uri" : "http://hl7.org/fhir/v2/0102" + }, + { + "uri" : "http://hl7.org/fhir/v2/0103" + }, + { + "uri" : "http://hl7.org/fhir/v2/0104" + }, + { + "uri" : "http://hl7.org/fhir/v2/0105" + }, + { + "uri" : "http://hl7.org/fhir/v2/0106" + }, + { + "uri" : "http://hl7.org/fhir/v2/0107" + }, + { + "uri" : "http://hl7.org/fhir/v2/0108" + }, + { + "uri" : "http://hl7.org/fhir/v2/0109" + }, + { + "uri" : "http://hl7.org/fhir/v2/0116" + }, + { + "uri" : "http://hl7.org/fhir/v2/0119" + }, + { + "uri" : "http://hl7.org/fhir/v2/0121" + }, + { + "uri" : "http://hl7.org/fhir/v2/0122" + }, + { + "uri" : "http://hl7.org/fhir/v2/0123" + }, + { + "uri" : "http://hl7.org/fhir/v2/0124" + }, + { + "uri" : "http://hl7.org/fhir/v2/0126" + }, + { + "uri" : "http://hl7.org/fhir/v2/0127" + }, + { + "uri" : "http://hl7.org/fhir/v2/0128" + }, + { + "uri" : "http://hl7.org/fhir/v2/0130" + }, + { + "uri" : "http://hl7.org/fhir/v2/0131" + }, + { + "uri" : "http://hl7.org/fhir/v2/0133" + }, + { + "uri" : "http://hl7.org/fhir/v2/0135" + }, + { + "uri" : "http://hl7.org/fhir/v2/0136" + }, + { + "uri" : "http://hl7.org/fhir/v2/0137" + }, + { + "uri" : "http://hl7.org/fhir/v2/0140" + }, + { + "uri" : "http://hl7.org/fhir/v2/0141" + }, + { + "uri" : "http://hl7.org/fhir/v2/0142" + }, + { + "uri" : "http://hl7.org/fhir/v2/0144" + }, + { + "uri" : "http://hl7.org/fhir/v2/0145" + }, + { + "uri" : "http://hl7.org/fhir/v2/0146" + }, + { + "uri" : "http://hl7.org/fhir/v2/0147" + }, + { + "uri" : "http://hl7.org/fhir/v2/0148" + }, + { + "uri" : "http://hl7.org/fhir/v2/0149" + }, + { + "uri" : "http://hl7.org/fhir/v2/0150" + }, + { + "uri" : "http://hl7.org/fhir/v2/0153" + }, + { + "uri" : "http://hl7.org/fhir/v2/0155" + }, + { + "uri" : "http://hl7.org/fhir/v2/0156" + }, + { + "uri" : "http://hl7.org/fhir/v2/0157" + }, + { + "uri" : "http://hl7.org/fhir/v2/0158" + }, + { + "uri" : "http://hl7.org/fhir/v2/0159" + }, + { + "uri" : "http://hl7.org/fhir/v2/0160" + }, + { + "uri" : "http://hl7.org/fhir/v2/0161" + }, + { + "uri" : "http://hl7.org/fhir/v2/0162" + }, + { + "uri" : "http://hl7.org/fhir/v2/0163" + }, + { + "uri" : "http://hl7.org/fhir/v2/0164" + }, + { + "uri" : "http://hl7.org/fhir/v2/0165" + }, + { + "uri" : "http://hl7.org/fhir/v2/0166" + }, + { + "uri" : "http://hl7.org/fhir/v2/0167" + }, + { + "uri" : "http://hl7.org/fhir/v2/0168" + }, + { + "uri" : "http://hl7.org/fhir/v2/0169" + }, + { + "uri" : "http://hl7.org/fhir/v2/0170" + }, + { + "uri" : "http://hl7.org/fhir/v2/0173" + }, + { + "uri" : "http://hl7.org/fhir/v2/0174" + }, + { + "uri" : "http://hl7.org/fhir/v2/0175" + }, + { + "uri" : "http://hl7.org/fhir/v2/0177" + }, + { + "uri" : "http://hl7.org/fhir/v2/0178" + }, + { + "uri" : "http://hl7.org/fhir/v2/0179" + }, + { + "uri" : "http://hl7.org/fhir/v2/0180" + }, + { + "uri" : "http://hl7.org/fhir/v2/0181" + }, + { + "uri" : "http://hl7.org/fhir/v2/0183" + }, + { + "uri" : "http://hl7.org/fhir/v2/0185" + }, + { + "uri" : "http://hl7.org/fhir/v2/0187" + }, + { + "uri" : "http://hl7.org/fhir/v2/0189" + }, + { + "uri" : "http://hl7.org/fhir/v2/0190" + }, + { + "uri" : "http://hl7.org/fhir/v2/0191" + }, + { + "uri" : "http://hl7.org/fhir/v2/0193" + }, + { + "uri" : "http://hl7.org/fhir/v2/0200" + }, + { + "uri" : "http://hl7.org/fhir/v2/0201" + }, + { + "uri" : "http://hl7.org/fhir/v2/0202" + }, + { + "uri" : "http://hl7.org/fhir/v2/0203" + }, + { + "uri" : "http://hl7.org/fhir/v2/0204" + }, + { + "uri" : "http://hl7.org/fhir/v2/0205" + }, + { + "uri" : "http://hl7.org/fhir/v2/0206" + }, + { + "uri" : "http://hl7.org/fhir/v2/0207" + }, + { + "uri" : "http://hl7.org/fhir/v2/0208" + }, + { + "uri" : "http://hl7.org/fhir/v2/0209" + }, + { + "uri" : "http://hl7.org/fhir/v2/0210" + }, + { + "uri" : "http://hl7.org/fhir/v2/0211" + }, + { + "uri" : "http://hl7.org/fhir/v2/0213" + }, + { + "uri" : "http://hl7.org/fhir/v2/0214" + }, + { + "uri" : "http://hl7.org/fhir/v2/0215" + }, + { + "uri" : "http://hl7.org/fhir/v2/0216" + }, + { + "uri" : "http://hl7.org/fhir/v2/0217" + }, + { + "uri" : "http://hl7.org/fhir/v2/0220" + }, + { + "uri" : "http://hl7.org/fhir/v2/0223" + }, + { + "uri" : "http://hl7.org/fhir/v2/0224" + }, + { + "uri" : "http://hl7.org/fhir/v2/0225" + }, + { + "uri" : "http://hl7.org/fhir/v2/0227" + }, + { + "uri" : "http://hl7.org/fhir/v2/0228" + }, + { + "uri" : "http://hl7.org/fhir/v2/0229" + }, + { + "uri" : "http://hl7.org/fhir/v2/0230" + }, + { + "uri" : "http://hl7.org/fhir/v2/0231" + }, + { + "uri" : "http://hl7.org/fhir/v2/0232" + }, + { + "uri" : "http://hl7.org/fhir/v2/0234" + }, + { + "uri" : "http://hl7.org/fhir/v2/0235" + }, + { + "uri" : "http://hl7.org/fhir/v2/0236" + }, + { + "uri" : "http://hl7.org/fhir/v2/0237" + }, + { + "uri" : "http://hl7.org/fhir/v2/0238" + }, + { + "uri" : "http://hl7.org/fhir/v2/0239" + }, + { + "uri" : "http://hl7.org/fhir/v2/0240" + }, + { + "uri" : "http://hl7.org/fhir/v2/0241" + }, + { + "uri" : "http://hl7.org/fhir/v2/0242" + }, + { + "uri" : "http://hl7.org/fhir/v2/0243" + }, + { + "uri" : "http://hl7.org/fhir/v2/0247" + }, + { + "uri" : "http://hl7.org/fhir/v2/0248" + }, + { + "uri" : "http://hl7.org/fhir/v2/0250" + }, + { + "uri" : "http://hl7.org/fhir/v2/0251" + }, + { + "uri" : "http://hl7.org/fhir/v2/0252" + }, + { + "uri" : "http://hl7.org/fhir/v2/0253" + }, + { + "uri" : "http://hl7.org/fhir/v2/0254" + }, + { + "uri" : "http://hl7.org/fhir/v2/0255" + }, + { + "uri" : "http://hl7.org/fhir/v2/0256" + }, + { + "uri" : "http://hl7.org/fhir/v2/0257" + }, + { + "uri" : "http://hl7.org/fhir/v2/0258" + }, + { + "uri" : "http://hl7.org/fhir/v2/0259" + }, + { + "uri" : "http://hl7.org/fhir/v2/0260" + }, + { + "uri" : "http://hl7.org/fhir/v2/0261" + }, + { + "uri" : "http://hl7.org/fhir/v2/0262" + }, + { + "uri" : "http://hl7.org/fhir/v2/0263" + }, + { + "uri" : "http://hl7.org/fhir/v2/0265" + }, + { + "uri" : "http://hl7.org/fhir/v2/0267" + }, + { + "uri" : "http://hl7.org/fhir/v2/0268" + }, + { + "uri" : "http://hl7.org/fhir/v2/0269" + }, + { + "uri" : "http://hl7.org/fhir/v2/0270" + }, + { + "uri" : "http://hl7.org/fhir/v2/0271" + }, + { + "uri" : "http://hl7.org/fhir/v2/0272" + }, + { + "uri" : "http://hl7.org/fhir/v2/0273" + }, + { + "uri" : "http://hl7.org/fhir/v2/0275" + }, + { + "uri" : "http://hl7.org/fhir/v2/0276" + }, + { + "uri" : "http://hl7.org/fhir/v2/0277" + }, + { + "uri" : "http://hl7.org/fhir/v2/0278" + }, + { + "uri" : "http://hl7.org/fhir/v2/0279" + }, + { + "uri" : "http://hl7.org/fhir/v2/0280" + }, + { + "uri" : "http://hl7.org/fhir/v2/0281" + }, + { + "uri" : "http://hl7.org/fhir/v2/0282" + }, + { + "uri" : "http://hl7.org/fhir/v2/0283" + }, + { + "uri" : "http://hl7.org/fhir/v2/0284" + }, + { + "uri" : "http://hl7.org/fhir/v2/0286" + }, + { + "uri" : "http://hl7.org/fhir/v2/0287" + }, + { + "uri" : "http://hl7.org/fhir/v2/0290" + }, + { + "uri" : "http://hl7.org/fhir/v2/0291" + }, + { + "uri" : "http://hl7.org/fhir/v2/0292" + }, + { + "uri" : "http://hl7.org/fhir/v2/0294" + }, + { + "uri" : "http://hl7.org/fhir/v2/0298" + }, + { + "uri" : "http://hl7.org/fhir/v2/0299" + }, + { + "uri" : "http://hl7.org/fhir/v2/0301" + }, + { + "uri" : "http://hl7.org/fhir/v2/0305" + }, + { + "uri" : "http://hl7.org/fhir/v2/0309" + }, + { + "uri" : "http://hl7.org/fhir/v2/0311" + }, + { + "uri" : "http://hl7.org/fhir/v2/0315" + }, + { + "uri" : "http://hl7.org/fhir/v2/0316" + }, + { + "uri" : "http://hl7.org/fhir/v2/0317" + }, + { + "uri" : "http://hl7.org/fhir/v2/0321" + }, + { + "uri" : "http://hl7.org/fhir/v2/0322" + }, + { + "uri" : "http://hl7.org/fhir/v2/0323" + }, + { + "uri" : "http://hl7.org/fhir/v2/0324" + }, + { + "uri" : "http://hl7.org/fhir/v2/0325" + }, + { + "uri" : "http://hl7.org/fhir/v2/0326" + }, + { + "uri" : "http://hl7.org/fhir/v2/0329" + }, + { + "uri" : "http://hl7.org/fhir/v2/0330" + }, + { + "uri" : "http://hl7.org/fhir/v2/0331" + }, + { + "uri" : "http://hl7.org/fhir/v2/0332" + }, + { + "uri" : "http://hl7.org/fhir/v2/0334" + }, + { + "uri" : "http://hl7.org/fhir/v2/0335" + }, + { + "uri" : "http://hl7.org/fhir/v2/0336" + }, + { + "uri" : "http://hl7.org/fhir/v2/0337" + }, + { + "uri" : "http://hl7.org/fhir/v2/0338" + }, + { + "uri" : "http://hl7.org/fhir/v2/0339" + }, + { + "uri" : "http://hl7.org/fhir/v2/0344" + }, + { + "uri" : "http://hl7.org/fhir/v2/0350" + }, + { + "uri" : "http://hl7.org/fhir/v2/0351" + }, + { + "uri" : "http://hl7.org/fhir/v2/0353" + }, + { + "uri" : "http://hl7.org/fhir/v2/0354" + }, + { + "uri" : "http://hl7.org/fhir/v2/0355" + }, + { + "uri" : "http://hl7.org/fhir/v2/0356" + }, + { + "uri" : "http://hl7.org/fhir/v2/0357" + }, + { + "uri" : "http://hl7.org/fhir/v2/0359" + }, + { + "uri" : "http://hl7.org/fhir/v2/0360/2.3.1" + }, + { + "uri" : "http://hl7.org/fhir/v2/0360/2.7" + }, + { + "uri" : "http://hl7.org/fhir/v2/0363" + }, + { + "uri" : "http://hl7.org/fhir/v2/0364" + }, + { + "uri" : "http://hl7.org/fhir/v2/0365" + }, + { + "uri" : "http://hl7.org/fhir/v2/0366" + }, + { + "uri" : "http://hl7.org/fhir/v2/0367" + }, + { + "uri" : "http://hl7.org/fhir/v2/0368" + }, + { + "uri" : "http://hl7.org/fhir/v2/0369" + }, + { + "uri" : "http://hl7.org/fhir/v2/0370" + }, + { + "uri" : "http://hl7.org/fhir/v2/0371" + }, + { + "uri" : "http://hl7.org/fhir/v2/0372" + }, + { + "uri" : "http://hl7.org/fhir/v2/0373" + }, + { + "uri" : "http://hl7.org/fhir/v2/0374" + }, + { + "uri" : "http://hl7.org/fhir/v2/0375" + }, + { + "uri" : "http://hl7.org/fhir/v2/0376" + }, + { + "uri" : "http://hl7.org/fhir/v2/0377" + }, + { + "uri" : "http://hl7.org/fhir/v2/0383" + }, + { + "uri" : "http://hl7.org/fhir/v2/0384" + }, + { + "uri" : "http://hl7.org/fhir/v2/0387" + }, + { + "uri" : "http://hl7.org/fhir/v2/0388" + }, + { + "uri" : "http://hl7.org/fhir/v2/0389" + }, + { + "uri" : "http://hl7.org/fhir/v2/0391/2.4" + }, + { + "uri" : "http://hl7.org/fhir/v2/0391/2.6" + }, + { + "uri" : "http://hl7.org/fhir/v2/0392" + }, + { + "uri" : "http://hl7.org/fhir/v2/0393" + }, + { + "uri" : "http://hl7.org/fhir/v2/0394" + }, + { + "uri" : "http://hl7.org/fhir/v2/0395" + }, + { + "uri" : "http://hl7.org/fhir/v2/0396" + }, + { + "uri" : "http://hl7.org/fhir/v2/0397" + }, + { + "uri" : "http://hl7.org/fhir/v2/0398" + }, + { + "uri" : "http://hl7.org/fhir/v2/0401" + }, + { + "uri" : "http://hl7.org/fhir/v2/0402" + }, + { + "uri" : "http://hl7.org/fhir/v2/0403" + }, + { + "uri" : "http://hl7.org/fhir/v2/0404" + }, + { + "uri" : "http://hl7.org/fhir/v2/0406" + }, + { + "uri" : "http://hl7.org/fhir/v2/0409" + }, + { + "uri" : "http://hl7.org/fhir/v2/0411" + }, + { + "uri" : "http://hl7.org/fhir/v2/0415" + }, + { + "uri" : "http://hl7.org/fhir/v2/0416" + }, + { + "uri" : "http://hl7.org/fhir/v2/0417" + }, + { + "uri" : "http://hl7.org/fhir/v2/0418" + }, + { + "uri" : "http://hl7.org/fhir/v2/0421" + }, + { + "uri" : "http://hl7.org/fhir/v2/0422" + }, + { + "uri" : "http://hl7.org/fhir/v2/0423" + }, + { + "uri" : "http://hl7.org/fhir/v2/0424" + }, + { + "uri" : "http://hl7.org/fhir/v2/0425" + }, + { + "uri" : "http://hl7.org/fhir/v2/0426" + }, + { + "uri" : "http://hl7.org/fhir/v2/0427" + }, + { + "uri" : "http://hl7.org/fhir/v2/0428" + }, + { + "uri" : "http://hl7.org/fhir/v2/0429" + }, + { + "uri" : "http://hl7.org/fhir/v2/0430" + }, + { + "uri" : "http://hl7.org/fhir/v2/0431" + }, + { + "uri" : "http://hl7.org/fhir/v2/0432" + }, + { + "uri" : "http://hl7.org/fhir/v2/0433" + }, + { + "uri" : "http://hl7.org/fhir/v2/0434" + }, + { + "uri" : "http://hl7.org/fhir/v2/0435" + }, + { + "uri" : "http://hl7.org/fhir/v2/0436" + }, + { + "uri" : "http://hl7.org/fhir/v2/0437" + }, + { + "uri" : "http://hl7.org/fhir/v2/0438" + }, + { + "uri" : "http://hl7.org/fhir/v2/0440" + }, + { + "uri" : "http://hl7.org/fhir/v2/0441" + }, + { + "uri" : "http://hl7.org/fhir/v2/0442" + }, + { + "uri" : "http://hl7.org/fhir/v2/0443" + }, + { + "uri" : "http://hl7.org/fhir/v2/0444" + }, + { + "uri" : "http://hl7.org/fhir/v2/0445" + }, + { + "uri" : "http://hl7.org/fhir/v2/0450" + }, + { + "uri" : "http://hl7.org/fhir/v2/0452" + }, + { + "uri" : "http://hl7.org/fhir/v2/0453" + }, + { + "uri" : "http://hl7.org/fhir/v2/0454" + }, + { + "uri" : "http://hl7.org/fhir/v2/0455" + }, + { + "uri" : "http://hl7.org/fhir/v2/0456" + }, + { + "uri" : "http://hl7.org/fhir/v2/0457" + }, + { + "uri" : "http://hl7.org/fhir/v2/0459" + }, + { + "uri" : "http://hl7.org/fhir/v2/0460" + }, + { + "uri" : "http://hl7.org/fhir/v2/0465" + }, + { + "uri" : "http://hl7.org/fhir/v2/0466" + }, + { + "uri" : "http://hl7.org/fhir/v2/0468" + }, + { + "uri" : "http://hl7.org/fhir/v2/0469" + }, + { + "uri" : "http://hl7.org/fhir/v2/0470" + }, + { + "uri" : "http://hl7.org/fhir/v2/0472" + }, + { + "uri" : "http://hl7.org/fhir/v2/0473" + }, + { + "uri" : "http://hl7.org/fhir/v2/0474" + }, + { + "uri" : "http://hl7.org/fhir/v2/0475" + }, + { + "uri" : "http://hl7.org/fhir/v2/0477" + }, + { + "uri" : "http://hl7.org/fhir/v2/0478" + }, + { + "uri" : "http://hl7.org/fhir/v2/0480" + }, + { + "uri" : "http://hl7.org/fhir/v2/0482" + }, + { + "uri" : "http://hl7.org/fhir/v2/0483" + }, + { + "uri" : "http://hl7.org/fhir/v2/0484" + }, + { + "uri" : "http://hl7.org/fhir/v2/0485" + }, + { + "uri" : "http://hl7.org/fhir/v2/0487" + }, + { + "uri" : "http://hl7.org/fhir/v2/0488" + }, + { + "uri" : "http://hl7.org/fhir/v2/0489" + }, + { + "uri" : "http://hl7.org/fhir/v2/0490" + }, + { + "uri" : "http://hl7.org/fhir/v2/0491" + }, + { + "uri" : "http://hl7.org/fhir/v2/0492" + }, + { + "uri" : "http://hl7.org/fhir/v2/0493" + }, + { + "uri" : "http://hl7.org/fhir/v2/0494" + }, + { + "uri" : "http://hl7.org/fhir/v2/0495" + }, + { + "uri" : "http://hl7.org/fhir/v2/0496" + }, + { + "uri" : "http://hl7.org/fhir/v2/0497" + }, + { + "uri" : "http://hl7.org/fhir/v2/0498" + }, + { + "uri" : "http://hl7.org/fhir/v2/0499" + }, + { + "uri" : "http://hl7.org/fhir/v2/0500" + }, + { + "uri" : "http://hl7.org/fhir/v2/0501" + }, + { + "uri" : "http://hl7.org/fhir/v2/0502" + }, + { + "uri" : "http://hl7.org/fhir/v2/0503" + }, + { + "uri" : "http://hl7.org/fhir/v2/0504" + }, + { + "uri" : "http://hl7.org/fhir/v2/0505" + }, + { + "uri" : "http://hl7.org/fhir/v2/0506" + }, + { + "uri" : "http://hl7.org/fhir/v2/0507" + }, + { + "uri" : "http://hl7.org/fhir/v2/0508" + }, + { + "uri" : "http://hl7.org/fhir/v2/0510" + }, + { + "uri" : "http://hl7.org/fhir/v2/0511" + }, + { + "uri" : "http://hl7.org/fhir/v2/0513" + }, + { + "uri" : "http://hl7.org/fhir/v2/0514" + }, + { + "uri" : "http://hl7.org/fhir/v2/0516" + }, + { + "uri" : "http://hl7.org/fhir/v2/0517" + }, + { + "uri" : "http://hl7.org/fhir/v2/0518" + }, + { + "uri" : "http://hl7.org/fhir/v2/0520" + }, + { + "uri" : "http://hl7.org/fhir/v2/0523" + }, + { + "uri" : "http://hl7.org/fhir/v2/0524" + }, + { + "uri" : "http://hl7.org/fhir/v2/0527" + }, + { + "uri" : "http://hl7.org/fhir/v2/0528" + }, + { + "uri" : "http://hl7.org/fhir/v2/0529" + }, + { + "uri" : "http://hl7.org/fhir/v2/0530" + }, + { + "uri" : "http://hl7.org/fhir/v2/0534" + }, + { + "uri" : "http://hl7.org/fhir/v2/0535" + }, + { + "uri" : "http://hl7.org/fhir/v2/0536" + }, + { + "uri" : "http://hl7.org/fhir/v2/0538" + }, + { + "uri" : "http://hl7.org/fhir/v2/0540" + }, + { + "uri" : "http://hl7.org/fhir/v2/0544" + }, + { + "uri" : "http://hl7.org/fhir/v2/0547" + }, + { + "uri" : "http://hl7.org/fhir/v2/0548" + }, + { + "uri" : "http://hl7.org/fhir/v2/0550" + }, + { + "uri" : "http://hl7.org/fhir/v2/0552" + }, + { + "uri" : "http://hl7.org/fhir/v2/0553" + }, + { + "uri" : "http://hl7.org/fhir/v2/0554" + }, + { + "uri" : "http://hl7.org/fhir/v2/0555" + }, + { + "uri" : "http://hl7.org/fhir/v2/0556" + }, + { + "uri" : "http://hl7.org/fhir/v2/0557" + }, + { + "uri" : "http://hl7.org/fhir/v2/0558" + }, + { + "uri" : "http://hl7.org/fhir/v2/0559" + }, + { + "uri" : "http://hl7.org/fhir/v2/0561" + }, + { + "uri" : "http://hl7.org/fhir/v2/0562" + }, + { + "uri" : "http://hl7.org/fhir/v2/0564" + }, + { + "uri" : "http://hl7.org/fhir/v2/0565" + }, + { + "uri" : "http://hl7.org/fhir/v2/0566" + }, + { + "uri" : "http://hl7.org/fhir/v2/0569" + }, + { + "uri" : "http://hl7.org/fhir/v2/0570" + }, + { + "uri" : "http://hl7.org/fhir/v2/0571" + }, + { + "uri" : "http://hl7.org/fhir/v2/0572" + }, + { + "uri" : "http://hl7.org/fhir/v2/0615" + }, + { + "uri" : "http://hl7.org/fhir/v2/0616" + }, + { + "uri" : "http://hl7.org/fhir/v2/0617" + }, + { + "uri" : "http://hl7.org/fhir/v2/0618" + }, + { + "uri" : "http://hl7.org/fhir/v2/0625" + }, + { + "uri" : "http://hl7.org/fhir/v2/0634" + }, + { + "uri" : "http://hl7.org/fhir/v2/0642" + }, + { + "uri" : "http://hl7.org/fhir/v2/0651" + }, + { + "uri" : "http://hl7.org/fhir/v2/0653" + }, + { + "uri" : "http://hl7.org/fhir/v2/0657" + }, + { + "uri" : "http://hl7.org/fhir/v2/0659" + }, + { + "uri" : "http://hl7.org/fhir/v2/0667" + }, + { + "uri" : "http://hl7.org/fhir/v2/0669" + }, + { + "uri" : "http://hl7.org/fhir/v2/0682" + }, + { + "uri" : "http://hl7.org/fhir/v2/0702" + }, + { + "uri" : "http://hl7.org/fhir/v2/0717" + }, + { + "uri" : "http://hl7.org/fhir/v2/0719" + }, + { + "uri" : "http://hl7.org/fhir/v2/0725" + }, + { + "uri" : "http://hl7.org/fhir/v2/0728" + }, + { + "uri" : "http://hl7.org/fhir/v2/0731" + }, + { + "uri" : "http://hl7.org/fhir/v2/0734" + }, + { + "uri" : "http://hl7.org/fhir/v2/0739" + }, + { + "uri" : "http://hl7.org/fhir/v2/0742" + }, + { + "uri" : "http://hl7.org/fhir/v2/0749" + }, + { + "uri" : "http://hl7.org/fhir/v2/0755" + }, + { + "uri" : "http://hl7.org/fhir/v2/0757" + }, + { + "uri" : "http://hl7.org/fhir/v2/0759" + }, + { + "uri" : "http://hl7.org/fhir/v2/0761" + }, + { + "uri" : "http://hl7.org/fhir/v2/0763" + }, + { + "uri" : "http://hl7.org/fhir/v2/0776" + }, + { + "uri" : "http://hl7.org/fhir/v2/0778" + }, + { + "uri" : "http://hl7.org/fhir/v2/0790" + }, + { + "uri" : "http://hl7.org/fhir/v2/0793" + }, + { + "uri" : "http://hl7.org/fhir/v2/0806" + }, + { + "uri" : "http://hl7.org/fhir/v2/0818" + }, + { + "uri" : "http://hl7.org/fhir/v2/0834" + }, + { + "uri" : "http://hl7.org/fhir/v2/0868" + }, + { + "uri" : "http://hl7.org/fhir/v2/0871" + }, + { + "uri" : "http://hl7.org/fhir/v2/0881" + }, + { + "uri" : "http://hl7.org/fhir/v2/0882" + }, + { + "uri" : "http://hl7.org/fhir/v2/0894" + }, + { + "uri" : "http://hl7.org/fhir/v2/0895" + }, + { + "uri" : "http://hl7.org/fhir/v2/0904" + }, + { + "uri" : "http://hl7.org/fhir/v2/0905" + }, + { + "uri" : "http://hl7.org/fhir/v2/0906" + }, + { + "uri" : "http://hl7.org/fhir/v2/0907" + }, + { + "uri" : "http://hl7.org/fhir/v2/0909" + }, + { + "uri" : "http://hl7.org/fhir/v2/0912" + }, + { + "uri" : "http://hl7.org/fhir/v2/0914" + }, + { + "uri" : "http://hl7.org/fhir/v2/0916" + }, + { + "uri" : "http://hl7.org/fhir/v2/0917" + }, + { + "uri" : "http://hl7.org/fhir/v2/0918" + }, + { + "uri" : "http://hl7.org/fhir/v2/0919" + }, + { + "uri" : "http://hl7.org/fhir/v2/0920" + }, + { + "uri" : "http://hl7.org/fhir/v2/0921" + }, + { + "uri" : "http://hl7.org/fhir/v2/0922" + }, + { + "uri" : "http://hl7.org/fhir/v2/0923" + }, + { + "uri" : "http://hl7.org/fhir/v2/0924" + }, + { + "uri" : "http://hl7.org/fhir/v2/0925" + }, + { + "uri" : "http://hl7.org/fhir/v2/0926" + }, + { + "uri" : "http://hl7.org/fhir/v2/0927" + }, + { + "uri" : "http://hl7.org/fhir/v2/0933" + }, + { + "uri" : "http://hl7.org/fhir/v2/0935" + }, + { + "uri" : "http://hl7.org/fhir/v2/4000" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementCondition" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementDetailCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementDetailType" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActExposureLevelCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActInvoiceElementModifier" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActMood" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActReason" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipCheckpoint" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipJoin" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipSplit" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipSubset" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActSite" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActUncertainty" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActUSPrivacyLaw" + }, + { + "uri" : "http://hl7.org/fhir/v3/AddressPartType" + }, + { + "uri" : "http://hl7.org/fhir/v3/AddressUse" + }, + { + "uri" : "http://hl7.org/fhir/v3/AdministrativeGender" + }, + { + "uri" : "http://hl7.org/fhir/v3/AmericanIndianAlaskaNativeLanguages" + }, + { + "uri" : "http://hl7.org/fhir/v3/Calendar" + }, + { + "uri" : "http://hl7.org/fhir/v3/CalendarCycle" + }, + { + "uri" : "http://hl7.org/fhir/v3/CalendarType" + }, + { + "uri" : "http://hl7.org/fhir/v3/Charset" + }, + { + "uri" : "http://hl7.org/fhir/v3/CodingRationale" + }, + { + "uri" : "http://hl7.org/fhir/v3/CommunicationFunctionType" + }, + { + "uri" : "http://hl7.org/fhir/v3/CompressionAlgorithm" + }, + { + "uri" : "http://hl7.org/fhir/v3/Confidentiality" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContainerCap" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContainerSeparator" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContentProcessingMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContextControl" + }, + { + "uri" : "http://hl7.org/fhir/v3/DataOperation" + }, + { + "uri" : "http://hl7.org/fhir/v3/DeviceAlertLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/DocumentCompletion" + }, + { + "uri" : "http://hl7.org/fhir/v3/DocumentStorage" + }, + { + "uri" : "http://hl7.org/fhir/v3/EducationLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/EmployeeJobClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/EncounterAdmissionSource" + }, + { + "uri" : "http://hl7.org/fhir/v3/EncounterSpecialCourtesy" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityDeterminer" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityHandling" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartQualifier" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartQualifierR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartType" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartTypeR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNameUse" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNameUseR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityRisk" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/EquipmentAlertLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/Ethnicity" + }, + { + "uri" : "http://hl7.org/fhir/v3/ExposureMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/GenderStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/GTSAbbreviation" + }, + { + "uri" : "http://hl7.org/fhir/v3/hl7Realm" + }, + { + "uri" : "http://hl7.org/fhir/v3/HL7UpdateMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/hl7V3Conformance" + }, + { + "uri" : "http://hl7.org/fhir/v3/HtmlLinkType" + }, + { + "uri" : "http://hl7.org/fhir/v3/IdentifierReliability" + }, + { + "uri" : "http://hl7.org/fhir/v3/IdentifierScope" + }, + { + "uri" : "http://hl7.org/fhir/v3/IntegrityCheckAlgorithm" + }, + { + "uri" : "http://hl7.org/fhir/v3/LanguageAbilityMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/LanguageAbilityProficiency" + }, + { + "uri" : "http://hl7.org/fhir/v3/LivingArrangement" + }, + { + "uri" : "http://hl7.org/fhir/v3/LocalMarkupIgnore" + }, + { + "uri" : "http://hl7.org/fhir/v3/LocalRemoteControlState" + }, + { + "uri" : "http://hl7.org/fhir/v3/ManagedParticipationStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/MapRelationship" + }, + { + "uri" : "http://hl7.org/fhir/v3/MaritalStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/MessageWaitingPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/ModifyIndicator" + }, + { + "uri" : "http://hl7.org/fhir/v3/NullFlavor" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationInterpretation" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationMethod" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationValue" + }, + { + "uri" : "http://hl7.org/fhir/v3/orderableDrugForm" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationFunction" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationSignature" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationType" + }, + { + "uri" : "http://hl7.org/fhir/v3/PatientImportance" + }, + { + "uri" : "http://hl7.org/fhir/v3/PaymentTerms" + }, + { + "uri" : "http://hl7.org/fhir/v3/PersonDisabilityType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProbabilityDistributionType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProcessingID" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProcessingMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryParameterValue" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryRequestLimit" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryResponse" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryStatusCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/Race" + }, + { + "uri" : "http://hl7.org/fhir/v3/RelationalOperator" + }, + { + "uri" : "http://hl7.org/fhir/v3/RelationshipConjunction" + }, + { + "uri" : "http://hl7.org/fhir/v3/ReligiousAffiliation" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseModality" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleLinkStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleLinkType" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/RouteOfAdministration" + }, + { + "uri" : "http://hl7.org/fhir/v3/Sequencing" + }, + { + "uri" : "http://hl7.org/fhir/v3/SetOperator" + }, + { + "uri" : "http://hl7.org/fhir/v3/SpecimenType" + }, + { + "uri" : "http://hl7.org/fhir/v3/substanceAdminSubstitution" + }, + { + "uri" : "http://hl7.org/fhir/v3/SubstitutionCondition" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellHorizontalAlign" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellScope" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellVerticalAlign" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableFrame" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableRules" + }, + { + "uri" : "http://hl7.org/fhir/v3/TargetAwareness" + }, + { + "uri" : "http://hl7.org/fhir/v3/TelecommunicationCapabilities" + }, + { + "uri" : "http://hl7.org/fhir/v3/TimingEvent" + }, + { + "uri" : "http://hl7.org/fhir/v3/TransmissionRelationshipTypeCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/TribalEntityUS" + }, + { + "uri" : "http://hl7.org/fhir/v3/VaccineManufacturer" + }, + { + "uri" : "http://hl7.org/fhir/vaccination-protocol-dose-status" + }, + { + "uri" : "http://hl7.org/fhir/vaccination-protocol-dose-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/valueset-signature-type" + }, + { + "uri" : "http://hl7.org/fhir/versioning-policy" + }, + { + "uri" : "http://hl7.org/fhir/vision-base-codes" + }, + { + "uri" : "http://hl7.org/fhir/vision-eye-codes" + }, + { + "uri" : "http://hl7.org/fhir/xds-relationship-type" + }, + { + "uri" : "http://loinc.org" + }, + { + "uri" : "http://loinc.org/vs/LL2654-3" + }, + { + "uri" : "http://nema.org/dicom/dicm" + }, + { + "uri" : "http://snomed.info/sct" + }, + { + "uri" : "http://unitsofmeasure.org" + }, + { + "uri" : "http://unstats.un.org/unsd/methods/m49/m49.htm" + }, + { + "uri" : "http://varnomen.hgvs.org" + }, + { + "uri" : "http://www.abs.gov.au/ausstats/abs@.nsf/mf/1220.0" + }, + { + "uri" : "http://www.ama-assn.org/go/cpt" + }, + { + "uri" : "http://www.hl7.org/fhir/contractaction" + }, + { + "uri" : "http://www.hl7.org/fhir/contractactorrole" + }, + { + "uri" : "http://www.nlm.nih.gov/research/umls/rxnorm" + }, + { + "uri" : "https://www.usps.com/" + }, + { + "uri" : "urn:ietf:bcp:13" + }, + { + "uri" : "urn:ietf:bcp:47" + }, + { + "uri" : "urn:ietf:rfc:3986" + }, + { + "uri" : "urn:iso:std:iso:3166" + }, + { + "uri" : "urn:iso:std:iso:4217" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1001.101.104.16592" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1005.17" + }], + "expansion" : { + "parameter" : [{ + "name" : "cache-id" + }, + { + "name" : "tx-resource" + }, + { + "name" : "_incomplete" + }, + { + "name" : "abstract" + }, + { + "name" : "activeOnly" + }, + { + "name" : "check-system-version" + }, + { + "name" : "count" + }, + { + "name" : "default-to-latest-version" + }, + { + "name" : "displayLanguage" + }, + { + "name" : "excludeNested" + }, + { + "name" : "excludeNotForUI" + }, + { + "name" : "excludePostCoordinated" + }, + { + "name" : "force-system-version" + }, + { + "name" : "inactive" + }, + { + "name" : "includeAlternateCodes" + }, + { + "name" : "includeDefinition" + }, + { + "name" : "includeDesignations" + }, + { + "name" : "incomplete-ok" + }, + { + "name" : "limitedExpansion" + }, + { + "name" : "mode" + }, + { + "name" : "no-cache" + }, + { + "name" : "offset" + }, + { + "name" : "profile" + }, + { + "name" : "property" + }, + { + "name" : "system-version" + }, + { + "name" : "valueSetMode" + }] + } +} \ No newline at end of file diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/servers.ini b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/servers.ini index 5c2b3f97a..ea43c1050 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/servers.ini +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/servers.ini @@ -1,3 +1,4 @@ [servers] tx-dev.fhir.org.r2 = http://tx-dev.fhir.org/r2 +local.fhir.org.r2 = http://local.fhir.org/r2 diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.terminologyCapabilities.local.fhir.org.r3.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.terminologyCapabilities.local.fhir.org.r3.cache new file mode 100644 index 000000000..39ea92d1e --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.terminologyCapabilities.local.fhir.org.r3.cache @@ -0,0 +1,5510 @@ +{ + "resourceType" : "TerminologyCapabilities", + "codeSystem" : [{ + "uri" : "http://devices.fhir.org/CodeSystem/MDC-concept-status" + }, + { + "uri" : "http://devices.fhir.org/CodeSystem/MDC-designation-use" + }, + { + "uri" : "http://dicom.nema.org/resources/ontology/DCM" + }, + { + "uri" : "http://fdasis.nlm.nih.gov" + }, + { + "uri" : "http://fhir.ohdsi.org/CodeSystem/concepts" + }, + { + "uri" : "http://healthit.gov/nhin/purposeofuse" + }, + { + "uri" : "http://hl7.org/fhir/abstract-types" + }, + { + "uri" : "http://hl7.org/fhir/account-status" + }, + { + "uri" : "http://hl7.org/fhir/action-cardinality-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-condition-kind" + }, + { + "uri" : "http://hl7.org/fhir/action-grouping-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/action-precheck-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/action-required-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-selection-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-type" + }, + { + "uri" : "http://hl7.org/fhir/actionlist" + }, + { + "uri" : "http://hl7.org/fhir/activity-definition-category" + }, + { + "uri" : "http://hl7.org/fhir/additionalmaterials" + }, + { + "uri" : "http://hl7.org/fhir/address-type" + }, + { + "uri" : "http://hl7.org/fhir/address-use" + }, + { + "uri" : "http://hl7.org/fhir/adjudication" + }, + { + "uri" : "http://hl7.org/fhir/adjudication-error" + }, + { + "uri" : "http://hl7.org/fhir/adjudication-reason" + }, + { + "uri" : "http://hl7.org/fhir/administrative-gender" + }, + { + "uri" : "http://hl7.org/fhir/admit-source" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-category" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality-assess" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality-method" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality-result" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-outcome" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-seriousness" + }, + { + "uri" : "http://hl7.org/fhir/allerg-intol-substance-exp-risk" + }, + { + "uri" : "http://hl7.org/fhir/allergy-clinical-status" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-category" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-criticality" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-type" + }, + { + "uri" : "http://hl7.org/fhir/allergy-verification-status" + }, + { + "uri" : "http://hl7.org/fhir/animal-genderstatus" + }, + { + "uri" : "http://hl7.org/fhir/animal-species" + }, + { + "uri" : "http://hl7.org/fhir/appointmentstatus" + }, + { + "uri" : "http://hl7.org/fhir/assert-direction-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-operator-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-response-code-types" + }, + { + "uri" : "http://hl7.org/fhir/audit-entity-type" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-action" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-outcome" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-type" + }, + { + "uri" : "http://hl7.org/fhir/basic-resource-type" + }, + { + "uri" : "http://hl7.org/fhir/benefit-category" + }, + { + "uri" : "http://hl7.org/fhir/benefit-network" + }, + { + "uri" : "http://hl7.org/fhir/benefit-subcategory" + }, + { + "uri" : "http://hl7.org/fhir/benefit-term" + }, + { + "uri" : "http://hl7.org/fhir/benefit-type" + }, + { + "uri" : "http://hl7.org/fhir/benefit-unit" + }, + { + "uri" : "http://hl7.org/fhir/binding-strength" + }, + { + "uri" : "http://hl7.org/fhir/bundle-type" + }, + { + "uri" : "http://hl7.org/fhir/capability-statement-kind" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-category" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-status" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-intent" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-status" + }, + { + "uri" : "http://hl7.org/fhir/care-team-category" + }, + { + "uri" : "http://hl7.org/fhir/care-team-status" + }, + { + "uri" : "http://hl7.org/fhir/chargeitem-billingcodes" + }, + { + "uri" : "http://hl7.org/fhir/chargeitem-status" + }, + { + "uri" : "http://hl7.org/fhir/choice-list-orientation" + }, + { + "uri" : "http://hl7.org/fhir/chromosome-human" + }, + { + "uri" : "http://hl7.org/fhir/claim-exception" + }, + { + "uri" : "http://hl7.org/fhir/claim-use" + }, + { + "uri" : "http://hl7.org/fhir/claimcareteamrole" + }, + { + "uri" : "http://hl7.org/fhir/claiminformationcategory" + }, + { + "uri" : "http://hl7.org/fhir/classification-or-context" + }, + { + "uri" : "http://hl7.org/fhir/clinical-impression-status" + }, + { + "uri" : "http://hl7.org/fhir/codesystem-content-mode" + }, + { + "uri" : "http://hl7.org/fhir/codesystem-hierarchy-meaning" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/example" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/summary" + }, + { + "uri" : "http://hl7.org/fhir/common-tags" + }, + { + "uri" : "http://hl7.org/fhir/communication-category" + }, + { + "uri" : "http://hl7.org/fhir/communication-not-done-reason" + }, + { + "uri" : "http://hl7.org/fhir/compartment-type" + }, + { + "uri" : "http://hl7.org/fhir/composite-measure-scoring" + }, + { + "uri" : "http://hl7.org/fhir/composition-attestation-mode" + }, + { + "uri" : "http://hl7.org/fhir/composition-status" + }, + { + "uri" : "http://hl7.org/fhir/concept-map-equivalence" + }, + { + "uri" : "http://hl7.org/fhir/concept-properties" + }, + { + "uri" : "http://hl7.org/fhir/concept-property-type" + }, + { + "uri" : "http://hl7.org/fhir/conceptmap-unmapped-mode" + }, + { + "uri" : "http://hl7.org/fhir/condition-category" + }, + { + "uri" : "http://hl7.org/fhir/condition-clinical" + }, + { + "uri" : "http://hl7.org/fhir/condition-state" + }, + { + "uri" : "http://hl7.org/fhir/condition-ver-status" + }, + { + "uri" : "http://hl7.org/fhir/conditional-delete-status" + }, + { + "uri" : "http://hl7.org/fhir/conditional-read-status" + }, + { + "uri" : "http://hl7.org/fhir/conformance-expectation" + }, + { + "uri" : "http://hl7.org/fhir/consent-data-meaning" + }, + { + "uri" : "http://hl7.org/fhir/consent-except-type" + }, + { + "uri" : "http://hl7.org/fhir/consent-state-codes" + }, + { + "uri" : "http://hl7.org/fhir/consentaction" + }, + { + "uri" : "http://hl7.org/fhir/consentcategorycodes" + }, + { + "uri" : "http://hl7.org/fhir/constraint-severity" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-system" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-use" + }, + { + "uri" : "http://hl7.org/fhir/contactentity-type" + }, + { + "uri" : "http://hl7.org/fhir/content-type" + }, + { + "uri" : "http://hl7.org/fhir/contract-content-derivative" + }, + { + "uri" : "http://hl7.org/fhir/contract-status" + }, + { + "uri" : "http://hl7.org/fhir/contractsubtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttermsubtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttermtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contributor-type" + }, + { + "uri" : "http://hl7.org/fhir/copy-number-event" + }, + { + "uri" : "http://hl7.org/fhir/coverage-level" + }, + { + "uri" : "http://hl7.org/fhir/coverage-selfpay" + }, + { + "uri" : "http://hl7.org/fhir/data-absent-reason" + }, + { + "uri" : "http://hl7.org/fhir/data-types" + }, + { + "uri" : "http://hl7.org/fhir/dataelement-stringency" + }, + { + "uri" : "http://hl7.org/fhir/days-of-week" + }, + { + "uri" : "http://hl7.org/fhir/definition-status" + }, + { + "uri" : "http://hl7.org/fhir/definition-topic" + }, + { + "uri" : "http://hl7.org/fhir/detectedissue-severity" + }, + { + "uri" : "http://hl7.org/fhir/device-action" + }, + { + "uri" : "http://hl7.org/fhir/device-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/device-status" + }, + { + "uri" : "http://hl7.org/fhir/diagnosis-role" + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-report-status" + }, + { + "uri" : "http://hl7.org/fhir/dicom-audit-lifecycle" + }, + { + "uri" : "http://hl7.org/fhir/diet" + }, + { + "uri" : "http://hl7.org/fhir/digital-media-type" + }, + { + "uri" : "http://hl7.org/fhir/discharge-disposition" + }, + { + "uri" : "http://hl7.org/fhir/discriminator-type" + }, + { + "uri" : "http://hl7.org/fhir/document-mode" + }, + { + "uri" : "http://hl7.org/fhir/document-reference-status" + }, + { + "uri" : "http://hl7.org/fhir/document-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/encounter-location-status" + }, + { + "uri" : "http://hl7.org/fhir/encounter-special-arrangements" + }, + { + "uri" : "http://hl7.org/fhir/encounter-status" + }, + { + "uri" : "http://hl7.org/fhir/encounter-type" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-connection-type" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-payload-type" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-status" + }, + { + "uri" : "http://hl7.org/fhir/entformula-additive" + }, + { + "uri" : "http://hl7.org/fhir/episode-of-care-status" + }, + { + "uri" : "http://hl7.org/fhir/episodeofcare-type" + }, + { + "uri" : "http://hl7.org/fhir/event-capability-mode" + }, + { + "uri" : "http://hl7.org/fhir/event-status" + }, + { + "uri" : "http://hl7.org/fhir/event-timing" + }, + { + "uri" : "http://hl7.org/fhir/evidence-quality" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimitemtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimsubtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-diagnosisrelatedgroup" + }, + { + "uri" : "http://hl7.org/fhir/ex-diagnosistype" + }, + { + "uri" : "http://hl7.org/fhir/ex-fdi" + }, + { + "uri" : "http://hl7.org/fhir/ex-onsettype" + }, + { + "uri" : "http://hl7.org/fhir/ex-oralprostho" + }, + { + "uri" : "http://hl7.org/fhir/ex-payee-resource-type" + }, + { + "uri" : "http://hl7.org/fhir/ex-paymenttype" + }, + { + "uri" : "http://hl7.org/fhir/ex-pharmaservice" + }, + { + "uri" : "http://hl7.org/fhir/ex-programcode" + }, + { + "uri" : "http://hl7.org/fhir/ex-providerqualification" + }, + { + "uri" : "http://hl7.org/fhir/ex-relatedclaimrelationship" + }, + { + "uri" : "http://hl7.org/fhir/ex-revenue-center" + }, + { + "uri" : "http://hl7.org/fhir/ex-servicemodifier" + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceplace" + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceproduct" + }, + { + "uri" : "http://hl7.org/fhir/ex-tooth" + }, + { + "uri" : "http://hl7.org/fhir/ex-udi" + }, + { + "uri" : "http://hl7.org/fhir/ex-USCLS" + }, + { + "uri" : "http://hl7.org/fhir/ex-visionprescriptionproduct" + }, + { + "uri" : "http://hl7.org/fhir/explanationofbenefit-status" + }, + { + "uri" : "http://hl7.org/fhir/extension-context" + }, + { + "uri" : "http://hl7.org/fhir/extra-activity-type" + }, + { + "uri" : "http://hl7.org/fhir/extra-security-role-type" + }, + { + "uri" : "http://hl7.org/fhir/FDI-surface" + }, + { + "uri" : "http://hl7.org/fhir/filter-operator" + }, + { + "uri" : "http://hl7.org/fhir/flag-category" + }, + { + "uri" : "http://hl7.org/fhir/flag-priority-code" + }, + { + "uri" : "http://hl7.org/fhir/flag-status" + }, + { + "uri" : "http://hl7.org/fhir/fm-conditions" + }, + { + "uri" : "http://hl7.org/fhir/fm-status" + }, + { + "uri" : "http://hl7.org/fhir/forms-codes" + }, + { + "uri" : "http://hl7.org/fhir/fundsreserve" + }, + { + "uri" : "http://hl7.org/fhir/goal-acceptance-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-category" + }, + { + "uri" : "http://hl7.org/fhir/goal-priority" + }, + { + "uri" : "http://hl7.org/fhir/goal-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/goal-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/graph-compartment-rule" + }, + { + "uri" : "http://hl7.org/fhir/group-type" + }, + { + "uri" : "http://hl7.org/fhir/guidance-response-status" + }, + { + "uri" : "http://hl7.org/fhir/guide-dependency-type" + }, + { + "uri" : "http://hl7.org/fhir/guide-page-kind" + }, + { + "uri" : "http://hl7.org/fhir/history-not-done-reason" + }, + { + "uri" : "http://hl7.org/fhir/history-status" + }, + { + "uri" : "http://hl7.org/fhir/hl7-work-group" + }, + { + "uri" : "http://hl7.org/fhir/http-operations" + }, + { + "uri" : "http://hl7.org/fhir/http-verb" + }, + { + "uri" : "http://hl7.org/fhir/identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/identifier-use" + }, + { + "uri" : "http://hl7.org/fhir/identity-assuranceLevel" + }, + { + "uri" : "http://hl7.org/fhir/immunization-origin" + }, + { + "uri" : "http://hl7.org/fhir/immunization-recommendation-date-criterion" + }, + { + "uri" : "http://hl7.org/fhir/immunization-recommendation-status" + }, + { + "uri" : "http://hl7.org/fhir/implant-status" + }, + { + "uri" : "http://hl7.org/fhir/intervention" + }, + { + "uri" : "http://hl7.org/fhir/iso-21089-lifecycle" + }, + { + "uri" : "http://hl7.org/fhir/issue-severity" + }, + { + "uri" : "http://hl7.org/fhir/issue-type" + }, + { + "uri" : "http://hl7.org/fhir/item-type" + }, + { + "uri" : "http://hl7.org/fhir/library-type" + }, + { + "uri" : "http://hl7.org/fhir/link-type" + }, + { + "uri" : "http://hl7.org/fhir/linkage-type" + }, + { + "uri" : "http://hl7.org/fhir/list-empty-reason" + }, + { + "uri" : "http://hl7.org/fhir/list-example-use-codes" + }, + { + "uri" : "http://hl7.org/fhir/list-mode" + }, + { + "uri" : "http://hl7.org/fhir/list-order" + }, + { + "uri" : "http://hl7.org/fhir/list-status" + }, + { + "uri" : "http://hl7.org/fhir/location-mode" + }, + { + "uri" : "http://hl7.org/fhir/location-physical-type" + }, + { + "uri" : "http://hl7.org/fhir/location-status" + }, + { + "uri" : "http://hl7.org/fhir/map-context-type" + }, + { + "uri" : "http://hl7.org/fhir/map-group-type-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-input-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-model-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-source-list-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-target-list-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-transform" + }, + { + "uri" : "http://hl7.org/fhir/marital-status" + }, + { + "uri" : "http://hl7.org/fhir/match-grade" + }, + { + "uri" : "http://hl7.org/fhir/measure-data-usage" + }, + { + "uri" : "http://hl7.org/fhir/measure-population" + }, + { + "uri" : "http://hl7.org/fhir/measure-report-status" + }, + { + "uri" : "http://hl7.org/fhir/measure-report-type" + }, + { + "uri" : "http://hl7.org/fhir/measure-scoring" + }, + { + "uri" : "http://hl7.org/fhir/measure-type" + }, + { + "uri" : "http://hl7.org/fhir/measurement-principle" + }, + { + "uri" : "http://hl7.org/fhir/media-subtype" + }, + { + "uri" : "http://hl7.org/fhir/medication-admin-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-admin-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-dispense-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-dispense-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-package-form" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-intent" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-priority" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-taken" + }, + { + "uri" : "http://hl7.org/fhir/medication-status" + }, + { + "uri" : "http://hl7.org/fhir/message-events" + }, + { + "uri" : "http://hl7.org/fhir/message-reasons-encounter" + }, + { + "uri" : "http://hl7.org/fhir/message-significance-category" + }, + { + "uri" : "http://hl7.org/fhir/message-transport" + }, + { + "uri" : "http://hl7.org/fhir/messageheader-response-request" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-state" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-type" + }, + { + "uri" : "http://hl7.org/fhir/metric-category" + }, + { + "uri" : "http://hl7.org/fhir/metric-color" + }, + { + "uri" : "http://hl7.org/fhir/metric-operational-status" + }, + { + "uri" : "http://hl7.org/fhir/missingtoothreason" + }, + { + "uri" : "http://hl7.org/fhir/modifiers" + }, + { + "uri" : "http://hl7.org/fhir/name-assembly-order" + }, + { + "uri" : "http://hl7.org/fhir/name-use" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-type" + }, + { + "uri" : "http://hl7.org/fhir/narrative-status" + }, + { + "uri" : "http://hl7.org/fhir/network-type" + }, + { + "uri" : "http://hl7.org/fhir/note-type" + }, + { + "uri" : "http://hl7.org/fhir/nutrition-request-status" + }, + { + "uri" : "http://hl7.org/fhir/object-role" + }, + { + "uri" : "http://hl7.org/fhir/observation-category" + }, + { + "uri" : "http://hl7.org/fhir/observation-relationshiptypes" + }, + { + "uri" : "http://hl7.org/fhir/observation-statistics" + }, + { + "uri" : "http://hl7.org/fhir/observation-status" + }, + { + "uri" : "http://hl7.org/fhir/operation-kind" + }, + { + "uri" : "http://hl7.org/fhir/operation-outcome" + }, + { + "uri" : "http://hl7.org/fhir/operation-parameter-use" + }, + { + "uri" : "http://hl7.org/fhir/operational-status" + }, + { + "uri" : "http://hl7.org/fhir/organization-type" + }, + { + "uri" : "http://hl7.org/fhir/parameter-group" + }, + { + "uri" : "http://hl7.org/fhir/participant-type" + }, + { + "uri" : "http://hl7.org/fhir/participantrequired" + }, + { + "uri" : "http://hl7.org/fhir/participationstatus" + }, + { + "uri" : "http://hl7.org/fhir/payeetype" + }, + { + "uri" : "http://hl7.org/fhir/payment-adjustment-reason" + }, + { + "uri" : "http://hl7.org/fhir/payment-type" + }, + { + "uri" : "http://hl7.org/fhir/paymentstatus" + }, + { + "uri" : "http://hl7.org/fhir/plan-definition-type" + }, + { + "uri" : "http://hl7.org/fhir/policyholder-relationship" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-role" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-specialty" + }, + { + "uri" : "http://hl7.org/fhir/procedure-progress-status-code" + }, + { + "uri" : "http://hl7.org/fhir/processoutcomecodes" + }, + { + "uri" : "http://hl7.org/fhir/processpriority" + }, + { + "uri" : "http://hl7.org/fhir/property-representation" + }, + { + "uri" : "http://hl7.org/fhir/provenance-entity-role" + }, + { + "uri" : "http://hl7.org/fhir/publication-status" + }, + { + "uri" : "http://hl7.org/fhir/quality-type" + }, + { + "uri" : "http://hl7.org/fhir/quantity-comparator" + }, + { + "uri" : "http://hl7.org/fhir/question-max-occurs" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-answers-status" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-display-category" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-item-control" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-usage-mode" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-certainty" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-severity" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-given" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-not-given" + }, + { + "uri" : "http://hl7.org/fhir/recommendation-strength" + }, + { + "uri" : "http://hl7.org/fhir/reference-handling-policy" + }, + { + "uri" : "http://hl7.org/fhir/reference-version-rules" + }, + { + "uri" : "http://hl7.org/fhir/referencerange-meaning" + }, + { + "uri" : "http://hl7.org/fhir/related-artifact-type" + }, + { + "uri" : "http://hl7.org/fhir/relationship" + }, + { + "uri" : "http://hl7.org/fhir/remittance-outcome" + }, + { + "uri" : "http://hl7.org/fhir/report-action-result-codes" + }, + { + "uri" : "http://hl7.org/fhir/report-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/report-result-codes" + }, + { + "uri" : "http://hl7.org/fhir/report-status-codes" + }, + { + "uri" : "http://hl7.org/fhir/repository-type" + }, + { + "uri" : "http://hl7.org/fhir/request-intent" + }, + { + "uri" : "http://hl7.org/fhir/request-priority" + }, + { + "uri" : "http://hl7.org/fhir/request-status" + }, + { + "uri" : "http://hl7.org/fhir/research-study-status" + }, + { + "uri" : "http://hl7.org/fhir/research-subject-status" + }, + { + "uri" : "http://hl7.org/fhir/resource-aggregation-mode" + }, + { + "uri" : "http://hl7.org/fhir/resource-slicing-rules" + }, + { + "uri" : "http://hl7.org/fhir/resource-type-link" + }, + { + "uri" : "http://hl7.org/fhir/resource-types" + }, + { + "uri" : "http://hl7.org/fhir/resource-validation-mode" + }, + { + "uri" : "http://hl7.org/fhir/response-code" + }, + { + "uri" : "http://hl7.org/fhir/restful-capability-mode" + }, + { + "uri" : "http://hl7.org/fhir/restful-interaction" + }, + { + "uri" : "http://hl7.org/fhir/restful-security-service" + }, + { + "uri" : "http://hl7.org/fhir/risk-probability" + }, + { + "uri" : "http://hl7.org/fhir/search-comparator" + }, + { + "uri" : "http://hl7.org/fhir/search-entry-mode" + }, + { + "uri" : "http://hl7.org/fhir/search-modifier-code" + }, + { + "uri" : "http://hl7.org/fhir/search-param-type" + }, + { + "uri" : "http://hl7.org/fhir/search-xpath-usage" + }, + { + "uri" : "http://hl7.org/fhir/security-source-type" + }, + { + "uri" : "http://hl7.org/fhir/sequence-type" + }, + { + "uri" : "http://hl7.org/fhir/service-category" + }, + { + "uri" : "http://hl7.org/fhir/service-provision-conditions" + }, + { + "uri" : "http://hl7.org/fhir/service-referral-method" + }, + { + "uri" : "http://hl7.org/fhir/service-type" + }, + { + "uri" : "http://hl7.org/fhir/sid/cvx" + }, + { + "uri" : "http://hl7.org/fhir/sid/ex-icd-10-procedures" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10-cm" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-9-cm" + }, + { + "uri" : "http://hl7.org/fhir/sid/mvx" + }, + { + "uri" : "http://hl7.org/fhir/sid/ndc" + }, + { + "uri" : "http://hl7.org/fhir/slotstatus" + }, + { + "uri" : "http://hl7.org/fhir/spdx-license" + }, + { + "uri" : "http://hl7.org/fhir/special-values" + }, + { + "uri" : "http://hl7.org/fhir/specification-type" + }, + { + "uri" : "http://hl7.org/fhir/specimen-status" + }, + { + "uri" : "http://hl7.org/fhir/structure-definition-kind" + }, + { + "uri" : "http://hl7.org/fhir/subscription-channel-type" + }, + { + "uri" : "http://hl7.org/fhir/subscription-status" + }, + { + "uri" : "http://hl7.org/fhir/subscription-tag" + }, + { + "uri" : "http://hl7.org/fhir/substance-category" + }, + { + "uri" : "http://hl7.org/fhir/substance-status" + }, + { + "uri" : "http://hl7.org/fhir/supply-item-type" + }, + { + "uri" : "http://hl7.org/fhir/supply-kind" + }, + { + "uri" : "http://hl7.org/fhir/supplydelivery-status" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-reason" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-status" + }, + { + "uri" : "http://hl7.org/fhir/system-version-processing-mode" + }, + { + "uri" : "http://hl7.org/fhir/task-performer-type" + }, + { + "uri" : "http://hl7.org/fhir/task-status" + }, + { + "uri" : "http://hl7.org/fhir/testscript-operation-codes" + }, + { + "uri" : "http://hl7.org/fhir/testscript-profile-destination-types" + }, + { + "uri" : "http://hl7.org/fhir/testscript-profile-origin-types" + }, + { + "uri" : "http://hl7.org/fhir/transaction-mode" + }, + { + "uri" : "http://hl7.org/fhir/trigger-type" + }, + { + "uri" : "http://hl7.org/fhir/type-derivation-rule" + }, + { + "uri" : "http://hl7.org/fhir/udi-entry-type" + }, + { + "uri" : "http://hl7.org/fhir/unknown-content-code" + }, + { + "uri" : "http://hl7.org/fhir/usage-context-type" + }, + { + "uri" : "http://hl7.org/fhir/v2/0001" + }, + { + "uri" : "http://hl7.org/fhir/v2/0002" + }, + { + "uri" : "http://hl7.org/fhir/v2/0003" + }, + { + "uri" : "http://hl7.org/fhir/v2/0004" + }, + { + "uri" : "http://hl7.org/fhir/v2/0006/2.1" + }, + { + "uri" : "http://hl7.org/fhir/v2/0006/2.4" + }, + { + "uri" : "http://hl7.org/fhir/v2/0007" + }, + { + "uri" : "http://hl7.org/fhir/v2/0008" + }, + { + "uri" : "http://hl7.org/fhir/v2/0009" + }, + { + "uri" : "http://hl7.org/fhir/v2/0012" + }, + { + "uri" : "http://hl7.org/fhir/v2/0017" + }, + { + "uri" : "http://hl7.org/fhir/v2/0023" + }, + { + "uri" : "http://hl7.org/fhir/v2/0027" + }, + { + "uri" : "http://hl7.org/fhir/v2/0033" + }, + { + "uri" : "http://hl7.org/fhir/v2/0034" + }, + { + "uri" : "http://hl7.org/fhir/v2/0038" + }, + { + "uri" : "http://hl7.org/fhir/v2/0043" + }, + { + "uri" : "http://hl7.org/fhir/v2/0048" + }, + { + "uri" : "http://hl7.org/fhir/v2/0052" + }, + { + "uri" : "http://hl7.org/fhir/v2/0061" + }, + { + "uri" : "http://hl7.org/fhir/v2/0062" + }, + { + "uri" : "http://hl7.org/fhir/v2/0063" + }, + { + "uri" : "http://hl7.org/fhir/v2/0065" + }, + { + "uri" : "http://hl7.org/fhir/v2/0066" + }, + { + "uri" : "http://hl7.org/fhir/v2/0069" + }, + { + "uri" : "http://hl7.org/fhir/v2/0070" + }, + { + "uri" : "http://hl7.org/fhir/v2/0074" + }, + { + "uri" : "http://hl7.org/fhir/v2/0076" + }, + { + "uri" : "http://hl7.org/fhir/v2/0078" + }, + { + "uri" : "http://hl7.org/fhir/v2/0080" + }, + { + "uri" : "http://hl7.org/fhir/v2/0083" + }, + { + "uri" : "http://hl7.org/fhir/v2/0085" + }, + { + "uri" : "http://hl7.org/fhir/v2/0091" + }, + { + "uri" : "http://hl7.org/fhir/v2/0092" + }, + { + "uri" : "http://hl7.org/fhir/v2/0098" + }, + { + "uri" : "http://hl7.org/fhir/v2/0100" + }, + { + "uri" : "http://hl7.org/fhir/v2/0102" + }, + { + "uri" : "http://hl7.org/fhir/v2/0103" + }, + { + "uri" : "http://hl7.org/fhir/v2/0104" + }, + { + "uri" : "http://hl7.org/fhir/v2/0105" + }, + { + "uri" : "http://hl7.org/fhir/v2/0106" + }, + { + "uri" : "http://hl7.org/fhir/v2/0107" + }, + { + "uri" : "http://hl7.org/fhir/v2/0108" + }, + { + "uri" : "http://hl7.org/fhir/v2/0109" + }, + { + "uri" : "http://hl7.org/fhir/v2/0116" + }, + { + "uri" : "http://hl7.org/fhir/v2/0119" + }, + { + "uri" : "http://hl7.org/fhir/v2/0121" + }, + { + "uri" : "http://hl7.org/fhir/v2/0122" + }, + { + "uri" : "http://hl7.org/fhir/v2/0123" + }, + { + "uri" : "http://hl7.org/fhir/v2/0124" + }, + { + "uri" : "http://hl7.org/fhir/v2/0126" + }, + { + "uri" : "http://hl7.org/fhir/v2/0127" + }, + { + "uri" : "http://hl7.org/fhir/v2/0128" + }, + { + "uri" : "http://hl7.org/fhir/v2/0130" + }, + { + "uri" : "http://hl7.org/fhir/v2/0131" + }, + { + "uri" : "http://hl7.org/fhir/v2/0133" + }, + { + "uri" : "http://hl7.org/fhir/v2/0135" + }, + { + "uri" : "http://hl7.org/fhir/v2/0136" + }, + { + "uri" : "http://hl7.org/fhir/v2/0137" + }, + { + "uri" : "http://hl7.org/fhir/v2/0140" + }, + { + "uri" : "http://hl7.org/fhir/v2/0141" + }, + { + "uri" : "http://hl7.org/fhir/v2/0142" + }, + { + "uri" : "http://hl7.org/fhir/v2/0144" + }, + { + "uri" : "http://hl7.org/fhir/v2/0145" + }, + { + "uri" : "http://hl7.org/fhir/v2/0146" + }, + { + "uri" : "http://hl7.org/fhir/v2/0147" + }, + { + "uri" : "http://hl7.org/fhir/v2/0148" + }, + { + "uri" : "http://hl7.org/fhir/v2/0149" + }, + { + "uri" : "http://hl7.org/fhir/v2/0150" + }, + { + "uri" : "http://hl7.org/fhir/v2/0153" + }, + { + "uri" : "http://hl7.org/fhir/v2/0155" + }, + { + "uri" : "http://hl7.org/fhir/v2/0156" + }, + { + "uri" : "http://hl7.org/fhir/v2/0157" + }, + { + "uri" : "http://hl7.org/fhir/v2/0158" + }, + { + "uri" : "http://hl7.org/fhir/v2/0159" + }, + { + "uri" : "http://hl7.org/fhir/v2/0160" + }, + { + "uri" : "http://hl7.org/fhir/v2/0161" + }, + { + "uri" : "http://hl7.org/fhir/v2/0162" + }, + { + "uri" : "http://hl7.org/fhir/v2/0163" + }, + { + "uri" : "http://hl7.org/fhir/v2/0164" + }, + { + "uri" : "http://hl7.org/fhir/v2/0165" + }, + { + "uri" : "http://hl7.org/fhir/v2/0166" + }, + { + "uri" : "http://hl7.org/fhir/v2/0167" + }, + { + "uri" : "http://hl7.org/fhir/v2/0168" + }, + { + "uri" : "http://hl7.org/fhir/v2/0169" + }, + { + "uri" : "http://hl7.org/fhir/v2/0170" + }, + { + "uri" : "http://hl7.org/fhir/v2/0173" + }, + { + "uri" : "http://hl7.org/fhir/v2/0174" + }, + { + "uri" : "http://hl7.org/fhir/v2/0175" + }, + { + "uri" : "http://hl7.org/fhir/v2/0177" + }, + { + "uri" : "http://hl7.org/fhir/v2/0178" + }, + { + "uri" : "http://hl7.org/fhir/v2/0179" + }, + { + "uri" : "http://hl7.org/fhir/v2/0180" + }, + { + "uri" : "http://hl7.org/fhir/v2/0181" + }, + { + "uri" : "http://hl7.org/fhir/v2/0183" + }, + { + "uri" : "http://hl7.org/fhir/v2/0185" + }, + { + "uri" : "http://hl7.org/fhir/v2/0187" + }, + { + "uri" : "http://hl7.org/fhir/v2/0189" + }, + { + "uri" : "http://hl7.org/fhir/v2/0190" + }, + { + "uri" : "http://hl7.org/fhir/v2/0191" + }, + { + "uri" : "http://hl7.org/fhir/v2/0193" + }, + { + "uri" : "http://hl7.org/fhir/v2/0200" + }, + { + "uri" : "http://hl7.org/fhir/v2/0201" + }, + { + "uri" : "http://hl7.org/fhir/v2/0202" + }, + { + "uri" : "http://hl7.org/fhir/v2/0203" + }, + { + "uri" : "http://hl7.org/fhir/v2/0204" + }, + { + "uri" : "http://hl7.org/fhir/v2/0205" + }, + { + "uri" : "http://hl7.org/fhir/v2/0206" + }, + { + "uri" : "http://hl7.org/fhir/v2/0207" + }, + { + "uri" : "http://hl7.org/fhir/v2/0208" + }, + { + "uri" : "http://hl7.org/fhir/v2/0209" + }, + { + "uri" : "http://hl7.org/fhir/v2/0210" + }, + { + "uri" : "http://hl7.org/fhir/v2/0211" + }, + { + "uri" : "http://hl7.org/fhir/v2/0213" + }, + { + "uri" : "http://hl7.org/fhir/v2/0214" + }, + { + "uri" : "http://hl7.org/fhir/v2/0215" + }, + { + "uri" : "http://hl7.org/fhir/v2/0216" + }, + { + "uri" : "http://hl7.org/fhir/v2/0217" + }, + { + "uri" : "http://hl7.org/fhir/v2/0220" + }, + { + "uri" : "http://hl7.org/fhir/v2/0223" + }, + { + "uri" : "http://hl7.org/fhir/v2/0224" + }, + { + "uri" : "http://hl7.org/fhir/v2/0225" + }, + { + "uri" : "http://hl7.org/fhir/v2/0227" + }, + { + "uri" : "http://hl7.org/fhir/v2/0228" + }, + { + "uri" : "http://hl7.org/fhir/v2/0229" + }, + { + "uri" : "http://hl7.org/fhir/v2/0230" + }, + { + "uri" : "http://hl7.org/fhir/v2/0231" + }, + { + "uri" : "http://hl7.org/fhir/v2/0232" + }, + { + "uri" : "http://hl7.org/fhir/v2/0234" + }, + { + "uri" : "http://hl7.org/fhir/v2/0235" + }, + { + "uri" : "http://hl7.org/fhir/v2/0236" + }, + { + "uri" : "http://hl7.org/fhir/v2/0237" + }, + { + "uri" : "http://hl7.org/fhir/v2/0238" + }, + { + "uri" : "http://hl7.org/fhir/v2/0239" + }, + { + "uri" : "http://hl7.org/fhir/v2/0240" + }, + { + "uri" : "http://hl7.org/fhir/v2/0241" + }, + { + "uri" : "http://hl7.org/fhir/v2/0242" + }, + { + "uri" : "http://hl7.org/fhir/v2/0243" + }, + { + "uri" : "http://hl7.org/fhir/v2/0247" + }, + { + "uri" : "http://hl7.org/fhir/v2/0248" + }, + { + "uri" : "http://hl7.org/fhir/v2/0250" + }, + { + "uri" : "http://hl7.org/fhir/v2/0251" + }, + { + "uri" : "http://hl7.org/fhir/v2/0252" + }, + { + "uri" : "http://hl7.org/fhir/v2/0253" + }, + { + "uri" : "http://hl7.org/fhir/v2/0254" + }, + { + "uri" : "http://hl7.org/fhir/v2/0255" + }, + { + "uri" : "http://hl7.org/fhir/v2/0256" + }, + { + "uri" : "http://hl7.org/fhir/v2/0257" + }, + { + "uri" : "http://hl7.org/fhir/v2/0258" + }, + { + "uri" : "http://hl7.org/fhir/v2/0259" + }, + { + "uri" : "http://hl7.org/fhir/v2/0260" + }, + { + "uri" : "http://hl7.org/fhir/v2/0261" + }, + { + "uri" : "http://hl7.org/fhir/v2/0262" + }, + { + "uri" : "http://hl7.org/fhir/v2/0263" + }, + { + "uri" : "http://hl7.org/fhir/v2/0265" + }, + { + "uri" : "http://hl7.org/fhir/v2/0267" + }, + { + "uri" : "http://hl7.org/fhir/v2/0268" + }, + { + "uri" : "http://hl7.org/fhir/v2/0269" + }, + { + "uri" : "http://hl7.org/fhir/v2/0270" + }, + { + "uri" : "http://hl7.org/fhir/v2/0271" + }, + { + "uri" : "http://hl7.org/fhir/v2/0272" + }, + { + "uri" : "http://hl7.org/fhir/v2/0273" + }, + { + "uri" : "http://hl7.org/fhir/v2/0275" + }, + { + "uri" : "http://hl7.org/fhir/v2/0276" + }, + { + "uri" : "http://hl7.org/fhir/v2/0277" + }, + { + "uri" : "http://hl7.org/fhir/v2/0278" + }, + { + "uri" : "http://hl7.org/fhir/v2/0279" + }, + { + "uri" : "http://hl7.org/fhir/v2/0280" + }, + { + "uri" : "http://hl7.org/fhir/v2/0281" + }, + { + "uri" : "http://hl7.org/fhir/v2/0282" + }, + { + "uri" : "http://hl7.org/fhir/v2/0283" + }, + { + "uri" : "http://hl7.org/fhir/v2/0284" + }, + { + "uri" : "http://hl7.org/fhir/v2/0286" + }, + { + "uri" : "http://hl7.org/fhir/v2/0287" + }, + { + "uri" : "http://hl7.org/fhir/v2/0290" + }, + { + "uri" : "http://hl7.org/fhir/v2/0291" + }, + { + "uri" : "http://hl7.org/fhir/v2/0292" + }, + { + "uri" : "http://hl7.org/fhir/v2/0294" + }, + { + "uri" : "http://hl7.org/fhir/v2/0298" + }, + { + "uri" : "http://hl7.org/fhir/v2/0299" + }, + { + "uri" : "http://hl7.org/fhir/v2/0301" + }, + { + "uri" : "http://hl7.org/fhir/v2/0305" + }, + { + "uri" : "http://hl7.org/fhir/v2/0309" + }, + { + "uri" : "http://hl7.org/fhir/v2/0311" + }, + { + "uri" : "http://hl7.org/fhir/v2/0315" + }, + { + "uri" : "http://hl7.org/fhir/v2/0316" + }, + { + "uri" : "http://hl7.org/fhir/v2/0317" + }, + { + "uri" : "http://hl7.org/fhir/v2/0321" + }, + { + "uri" : "http://hl7.org/fhir/v2/0322" + }, + { + "uri" : "http://hl7.org/fhir/v2/0323" + }, + { + "uri" : "http://hl7.org/fhir/v2/0324" + }, + { + "uri" : "http://hl7.org/fhir/v2/0325" + }, + { + "uri" : "http://hl7.org/fhir/v2/0326" + }, + { + "uri" : "http://hl7.org/fhir/v2/0329" + }, + { + "uri" : "http://hl7.org/fhir/v2/0330" + }, + { + "uri" : "http://hl7.org/fhir/v2/0331" + }, + { + "uri" : "http://hl7.org/fhir/v2/0332" + }, + { + "uri" : "http://hl7.org/fhir/v2/0334" + }, + { + "uri" : "http://hl7.org/fhir/v2/0335" + }, + { + "uri" : "http://hl7.org/fhir/v2/0336" + }, + { + "uri" : "http://hl7.org/fhir/v2/0337" + }, + { + "uri" : "http://hl7.org/fhir/v2/0338" + }, + { + "uri" : "http://hl7.org/fhir/v2/0339" + }, + { + "uri" : "http://hl7.org/fhir/v2/0344" + }, + { + "uri" : "http://hl7.org/fhir/v2/0350" + }, + { + "uri" : "http://hl7.org/fhir/v2/0351" + }, + { + "uri" : "http://hl7.org/fhir/v2/0354" + }, + { + "uri" : "http://hl7.org/fhir/v2/0355" + }, + { + "uri" : "http://hl7.org/fhir/v2/0356" + }, + { + "uri" : "http://hl7.org/fhir/v2/0357" + }, + { + "uri" : "http://hl7.org/fhir/v2/0359" + }, + { + "uri" : "http://hl7.org/fhir/v2/0360/2.3.1" + }, + { + "uri" : "http://hl7.org/fhir/v2/0360/2.7" + }, + { + "uri" : "http://hl7.org/fhir/v2/0363" + }, + { + "uri" : "http://hl7.org/fhir/v2/0364" + }, + { + "uri" : "http://hl7.org/fhir/v2/0365" + }, + { + "uri" : "http://hl7.org/fhir/v2/0366" + }, + { + "uri" : "http://hl7.org/fhir/v2/0367" + }, + { + "uri" : "http://hl7.org/fhir/v2/0368" + }, + { + "uri" : "http://hl7.org/fhir/v2/0369" + }, + { + "uri" : "http://hl7.org/fhir/v2/0370" + }, + { + "uri" : "http://hl7.org/fhir/v2/0371" + }, + { + "uri" : "http://hl7.org/fhir/v2/0372" + }, + { + "uri" : "http://hl7.org/fhir/v2/0373" + }, + { + "uri" : "http://hl7.org/fhir/v2/0374" + }, + { + "uri" : "http://hl7.org/fhir/v2/0375" + }, + { + "uri" : "http://hl7.org/fhir/v2/0376" + }, + { + "uri" : "http://hl7.org/fhir/v2/0377" + }, + { + "uri" : "http://hl7.org/fhir/v2/0383" + }, + { + "uri" : "http://hl7.org/fhir/v2/0384" + }, + { + "uri" : "http://hl7.org/fhir/v2/0387" + }, + { + "uri" : "http://hl7.org/fhir/v2/0388" + }, + { + "uri" : "http://hl7.org/fhir/v2/0389" + }, + { + "uri" : "http://hl7.org/fhir/v2/0391/2.4" + }, + { + "uri" : "http://hl7.org/fhir/v2/0391/2.6" + }, + { + "uri" : "http://hl7.org/fhir/v2/0392" + }, + { + "uri" : "http://hl7.org/fhir/v2/0393" + }, + { + "uri" : "http://hl7.org/fhir/v2/0394" + }, + { + "uri" : "http://hl7.org/fhir/v2/0395" + }, + { + "uri" : "http://hl7.org/fhir/v2/0396" + }, + { + "uri" : "http://hl7.org/fhir/v2/0397" + }, + { + "uri" : "http://hl7.org/fhir/v2/0398" + }, + { + "uri" : "http://hl7.org/fhir/v2/0401" + }, + { + "uri" : "http://hl7.org/fhir/v2/0402" + }, + { + "uri" : "http://hl7.org/fhir/v2/0403" + }, + { + "uri" : "http://hl7.org/fhir/v2/0404" + }, + { + "uri" : "http://hl7.org/fhir/v2/0406" + }, + { + "uri" : "http://hl7.org/fhir/v2/0409" + }, + { + "uri" : "http://hl7.org/fhir/v2/0411" + }, + { + "uri" : "http://hl7.org/fhir/v2/0415" + }, + { + "uri" : "http://hl7.org/fhir/v2/0416" + }, + { + "uri" : "http://hl7.org/fhir/v2/0417" + }, + { + "uri" : "http://hl7.org/fhir/v2/0418" + }, + { + "uri" : "http://hl7.org/fhir/v2/0421" + }, + { + "uri" : "http://hl7.org/fhir/v2/0422" + }, + { + "uri" : "http://hl7.org/fhir/v2/0423" + }, + { + "uri" : "http://hl7.org/fhir/v2/0424" + }, + { + "uri" : "http://hl7.org/fhir/v2/0425" + }, + { + "uri" : "http://hl7.org/fhir/v2/0426" + }, + { + "uri" : "http://hl7.org/fhir/v2/0427" + }, + { + "uri" : "http://hl7.org/fhir/v2/0428" + }, + { + "uri" : "http://hl7.org/fhir/v2/0429" + }, + { + "uri" : "http://hl7.org/fhir/v2/0430" + }, + { + "uri" : "http://hl7.org/fhir/v2/0431" + }, + { + "uri" : "http://hl7.org/fhir/v2/0432" + }, + { + "uri" : "http://hl7.org/fhir/v2/0433" + }, + { + "uri" : "http://hl7.org/fhir/v2/0434" + }, + { + "uri" : "http://hl7.org/fhir/v2/0435" + }, + { + "uri" : "http://hl7.org/fhir/v2/0436" + }, + { + "uri" : "http://hl7.org/fhir/v2/0437" + }, + { + "uri" : "http://hl7.org/fhir/v2/0438" + }, + { + "uri" : "http://hl7.org/fhir/v2/0440" + }, + { + "uri" : "http://hl7.org/fhir/v2/0441" + }, + { + "uri" : "http://hl7.org/fhir/v2/0442" + }, + { + "uri" : "http://hl7.org/fhir/v2/0443" + }, + { + "uri" : "http://hl7.org/fhir/v2/0444" + }, + { + "uri" : "http://hl7.org/fhir/v2/0445" + }, + { + "uri" : "http://hl7.org/fhir/v2/0450" + }, + { + "uri" : "http://hl7.org/fhir/v2/0455" + }, + { + "uri" : "http://hl7.org/fhir/v2/0456" + }, + { + "uri" : "http://hl7.org/fhir/v2/0457" + }, + { + "uri" : "http://hl7.org/fhir/v2/0459" + }, + { + "uri" : "http://hl7.org/fhir/v2/0460" + }, + { + "uri" : "http://hl7.org/fhir/v2/0465" + }, + { + "uri" : "http://hl7.org/fhir/v2/0466" + }, + { + "uri" : "http://hl7.org/fhir/v2/0468" + }, + { + "uri" : "http://hl7.org/fhir/v2/0469" + }, + { + "uri" : "http://hl7.org/fhir/v2/0470" + }, + { + "uri" : "http://hl7.org/fhir/v2/0472" + }, + { + "uri" : "http://hl7.org/fhir/v2/0473" + }, + { + "uri" : "http://hl7.org/fhir/v2/0474" + }, + { + "uri" : "http://hl7.org/fhir/v2/0475" + }, + { + "uri" : "http://hl7.org/fhir/v2/0477" + }, + { + "uri" : "http://hl7.org/fhir/v2/0478" + }, + { + "uri" : "http://hl7.org/fhir/v2/0480" + }, + { + "uri" : "http://hl7.org/fhir/v2/0482" + }, + { + "uri" : "http://hl7.org/fhir/v2/0483" + }, + { + "uri" : "http://hl7.org/fhir/v2/0484" + }, + { + "uri" : "http://hl7.org/fhir/v2/0485" + }, + { + "uri" : "http://hl7.org/fhir/v2/0487" + }, + { + "uri" : "http://hl7.org/fhir/v2/0488" + }, + { + "uri" : "http://hl7.org/fhir/v2/0489" + }, + { + "uri" : "http://hl7.org/fhir/v2/0490" + }, + { + "uri" : "http://hl7.org/fhir/v2/0491" + }, + { + "uri" : "http://hl7.org/fhir/v2/0492" + }, + { + "uri" : "http://hl7.org/fhir/v2/0493" + }, + { + "uri" : "http://hl7.org/fhir/v2/0494" + }, + { + "uri" : "http://hl7.org/fhir/v2/0495" + }, + { + "uri" : "http://hl7.org/fhir/v2/0496" + }, + { + "uri" : "http://hl7.org/fhir/v2/0497" + }, + { + "uri" : "http://hl7.org/fhir/v2/0498" + }, + { + "uri" : "http://hl7.org/fhir/v2/0499" + }, + { + "uri" : "http://hl7.org/fhir/v2/0500" + }, + { + "uri" : "http://hl7.org/fhir/v2/0501" + }, + { + "uri" : "http://hl7.org/fhir/v2/0502" + }, + { + "uri" : "http://hl7.org/fhir/v2/0503" + }, + { + "uri" : "http://hl7.org/fhir/v2/0504" + }, + { + "uri" : "http://hl7.org/fhir/v2/0505" + }, + { + "uri" : "http://hl7.org/fhir/v2/0506" + }, + { + "uri" : "http://hl7.org/fhir/v2/0507" + }, + { + "uri" : "http://hl7.org/fhir/v2/0508" + }, + { + "uri" : "http://hl7.org/fhir/v2/0510" + }, + { + "uri" : "http://hl7.org/fhir/v2/0511" + }, + { + "uri" : "http://hl7.org/fhir/v2/0513" + }, + { + "uri" : "http://hl7.org/fhir/v2/0514" + }, + { + "uri" : "http://hl7.org/fhir/v2/0516" + }, + { + "uri" : "http://hl7.org/fhir/v2/0517" + }, + { + "uri" : "http://hl7.org/fhir/v2/0518" + }, + { + "uri" : "http://hl7.org/fhir/v2/0520" + }, + { + "uri" : "http://hl7.org/fhir/v2/0523" + }, + { + "uri" : "http://hl7.org/fhir/v2/0524" + }, + { + "uri" : "http://hl7.org/fhir/v2/0527" + }, + { + "uri" : "http://hl7.org/fhir/v2/0528" + }, + { + "uri" : "http://hl7.org/fhir/v2/0529" + }, + { + "uri" : "http://hl7.org/fhir/v2/0530" + }, + { + "uri" : "http://hl7.org/fhir/v2/0534" + }, + { + "uri" : "http://hl7.org/fhir/v2/0535" + }, + { + "uri" : "http://hl7.org/fhir/v2/0536" + }, + { + "uri" : "http://hl7.org/fhir/v2/0538" + }, + { + "uri" : "http://hl7.org/fhir/v2/0540" + }, + { + "uri" : "http://hl7.org/fhir/v2/0544" + }, + { + "uri" : "http://hl7.org/fhir/v2/0547" + }, + { + "uri" : "http://hl7.org/fhir/v2/0548" + }, + { + "uri" : "http://hl7.org/fhir/v2/0550" + }, + { + "uri" : "http://hl7.org/fhir/v2/0553" + }, + { + "uri" : "http://hl7.org/fhir/v2/0554" + }, + { + "uri" : "http://hl7.org/fhir/v2/0555" + }, + { + "uri" : "http://hl7.org/fhir/v2/0556" + }, + { + "uri" : "http://hl7.org/fhir/v2/0557" + }, + { + "uri" : "http://hl7.org/fhir/v2/0558" + }, + { + "uri" : "http://hl7.org/fhir/v2/0559" + }, + { + "uri" : "http://hl7.org/fhir/v2/0561" + }, + { + "uri" : "http://hl7.org/fhir/v2/0562" + }, + { + "uri" : "http://hl7.org/fhir/v2/0564" + }, + { + "uri" : "http://hl7.org/fhir/v2/0565" + }, + { + "uri" : "http://hl7.org/fhir/v2/0566" + }, + { + "uri" : "http://hl7.org/fhir/v2/0569" + }, + { + "uri" : "http://hl7.org/fhir/v2/0570" + }, + { + "uri" : "http://hl7.org/fhir/v2/0571" + }, + { + "uri" : "http://hl7.org/fhir/v2/0572" + }, + { + "uri" : "http://hl7.org/fhir/v2/0615" + }, + { + "uri" : "http://hl7.org/fhir/v2/0616" + }, + { + "uri" : "http://hl7.org/fhir/v2/0617" + }, + { + "uri" : "http://hl7.org/fhir/v2/0618" + }, + { + "uri" : "http://hl7.org/fhir/v2/0625" + }, + { + "uri" : "http://hl7.org/fhir/v2/0634" + }, + { + "uri" : "http://hl7.org/fhir/v2/0642" + }, + { + "uri" : "http://hl7.org/fhir/v2/0651" + }, + { + "uri" : "http://hl7.org/fhir/v2/0653" + }, + { + "uri" : "http://hl7.org/fhir/v2/0657" + }, + { + "uri" : "http://hl7.org/fhir/v2/0659" + }, + { + "uri" : "http://hl7.org/fhir/v2/0667" + }, + { + "uri" : "http://hl7.org/fhir/v2/0669" + }, + { + "uri" : "http://hl7.org/fhir/v2/0682" + }, + { + "uri" : "http://hl7.org/fhir/v2/0702" + }, + { + "uri" : "http://hl7.org/fhir/v2/0717" + }, + { + "uri" : "http://hl7.org/fhir/v2/0719" + }, + { + "uri" : "http://hl7.org/fhir/v2/0725" + }, + { + "uri" : "http://hl7.org/fhir/v2/0728" + }, + { + "uri" : "http://hl7.org/fhir/v2/0731" + }, + { + "uri" : "http://hl7.org/fhir/v2/0734" + }, + { + "uri" : "http://hl7.org/fhir/v2/0739" + }, + { + "uri" : "http://hl7.org/fhir/v2/0742" + }, + { + "uri" : "http://hl7.org/fhir/v2/0749" + }, + { + "uri" : "http://hl7.org/fhir/v2/0755" + }, + { + "uri" : "http://hl7.org/fhir/v2/0757" + }, + { + "uri" : "http://hl7.org/fhir/v2/0759" + }, + { + "uri" : "http://hl7.org/fhir/v2/0761" + }, + { + "uri" : "http://hl7.org/fhir/v2/0763" + }, + { + "uri" : "http://hl7.org/fhir/v2/0776" + }, + { + "uri" : "http://hl7.org/fhir/v2/0778" + }, + { + "uri" : "http://hl7.org/fhir/v2/0790" + }, + { + "uri" : "http://hl7.org/fhir/v2/0793" + }, + { + "uri" : "http://hl7.org/fhir/v2/0806" + }, + { + "uri" : "http://hl7.org/fhir/v2/0818" + }, + { + "uri" : "http://hl7.org/fhir/v2/0834" + }, + { + "uri" : "http://hl7.org/fhir/v2/0868" + }, + { + "uri" : "http://hl7.org/fhir/v2/0871" + }, + { + "uri" : "http://hl7.org/fhir/v2/0881" + }, + { + "uri" : "http://hl7.org/fhir/v2/0882" + }, + { + "uri" : "http://hl7.org/fhir/v2/0894" + }, + { + "uri" : "http://hl7.org/fhir/v2/0895" + }, + { + "uri" : "http://hl7.org/fhir/v2/0904" + }, + { + "uri" : "http://hl7.org/fhir/v2/0905" + }, + { + "uri" : "http://hl7.org/fhir/v2/0906" + }, + { + "uri" : "http://hl7.org/fhir/v2/0907" + }, + { + "uri" : "http://hl7.org/fhir/v2/0909" + }, + { + "uri" : "http://hl7.org/fhir/v2/0912" + }, + { + "uri" : "http://hl7.org/fhir/v2/0914" + }, + { + "uri" : "http://hl7.org/fhir/v2/0916" + }, + { + "uri" : "http://hl7.org/fhir/v2/0917" + }, + { + "uri" : "http://hl7.org/fhir/v2/0918" + }, + { + "uri" : "http://hl7.org/fhir/v2/0919" + }, + { + "uri" : "http://hl7.org/fhir/v2/0920" + }, + { + "uri" : "http://hl7.org/fhir/v2/0921" + }, + { + "uri" : "http://hl7.org/fhir/v2/0922" + }, + { + "uri" : "http://hl7.org/fhir/v2/0923" + }, + { + "uri" : "http://hl7.org/fhir/v2/0924" + }, + { + "uri" : "http://hl7.org/fhir/v2/0925" + }, + { + "uri" : "http://hl7.org/fhir/v2/0926" + }, + { + "uri" : "http://hl7.org/fhir/v2/0927" + }, + { + "uri" : "http://hl7.org/fhir/v2/0933" + }, + { + "uri" : "http://hl7.org/fhir/v2/0935" + }, + { + "uri" : "http://hl7.org/fhir/v2/4000" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementCondition" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementDetailCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementDetailType" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActExposureLevelCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActInvoiceElementModifier" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActMood" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActReason" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipCheckpoint" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipJoin" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipSplit" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipSubset" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActSite" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActUncertainty" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActUSPrivacyLaw" + }, + { + "uri" : "http://hl7.org/fhir/v3/AddressPartType" + }, + { + "uri" : "http://hl7.org/fhir/v3/AddressUse" + }, + { + "uri" : "http://hl7.org/fhir/v3/AdministrativeGender" + }, + { + "uri" : "http://hl7.org/fhir/v3/AmericanIndianAlaskaNativeLanguages" + }, + { + "uri" : "http://hl7.org/fhir/v3/Calendar" + }, + { + "uri" : "http://hl7.org/fhir/v3/CalendarCycle" + }, + { + "uri" : "http://hl7.org/fhir/v3/CalendarType" + }, + { + "uri" : "http://hl7.org/fhir/v3/Charset" + }, + { + "uri" : "http://hl7.org/fhir/v3/CodingRationale" + }, + { + "uri" : "http://hl7.org/fhir/v3/CommunicationFunctionType" + }, + { + "uri" : "http://hl7.org/fhir/v3/CompressionAlgorithm" + }, + { + "uri" : "http://hl7.org/fhir/v3/Confidentiality" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContainerCap" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContainerSeparator" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContentProcessingMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContextControl" + }, + { + "uri" : "http://hl7.org/fhir/v3/DataOperation" + }, + { + "uri" : "http://hl7.org/fhir/v3/DeviceAlertLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/DocumentCompletion" + }, + { + "uri" : "http://hl7.org/fhir/v3/DocumentStorage" + }, + { + "uri" : "http://hl7.org/fhir/v3/EducationLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/EmployeeJobClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/EncounterAdmissionSource" + }, + { + "uri" : "http://hl7.org/fhir/v3/EncounterSpecialCourtesy" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityDeterminer" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityHandling" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartQualifier" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartQualifierR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartType" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartTypeR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNameUse" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNameUseR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityRisk" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/EquipmentAlertLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/Ethnicity" + }, + { + "uri" : "http://hl7.org/fhir/v3/ExposureMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/GenderStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/GTSAbbreviation" + }, + { + "uri" : "http://hl7.org/fhir/v3/hl7Realm" + }, + { + "uri" : "http://hl7.org/fhir/v3/HL7UpdateMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/hl7V3Conformance" + }, + { + "uri" : "http://hl7.org/fhir/v3/HtmlLinkType" + }, + { + "uri" : "http://hl7.org/fhir/v3/IdentifierReliability" + }, + { + "uri" : "http://hl7.org/fhir/v3/IdentifierScope" + }, + { + "uri" : "http://hl7.org/fhir/v3/IntegrityCheckAlgorithm" + }, + { + "uri" : "http://hl7.org/fhir/v3/LanguageAbilityMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/LanguageAbilityProficiency" + }, + { + "uri" : "http://hl7.org/fhir/v3/LivingArrangement" + }, + { + "uri" : "http://hl7.org/fhir/v3/LocalMarkupIgnore" + }, + { + "uri" : "http://hl7.org/fhir/v3/LocalRemoteControlState" + }, + { + "uri" : "http://hl7.org/fhir/v3/ManagedParticipationStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/MapRelationship" + }, + { + "uri" : "http://hl7.org/fhir/v3/MaritalStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/MessageWaitingPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/ModifyIndicator" + }, + { + "uri" : "http://hl7.org/fhir/v3/NullFlavor" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationInterpretation" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationMethod" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationValue" + }, + { + "uri" : "http://hl7.org/fhir/v3/orderableDrugForm" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationFunction" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationSignature" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationType" + }, + { + "uri" : "http://hl7.org/fhir/v3/PatientImportance" + }, + { + "uri" : "http://hl7.org/fhir/v3/PaymentTerms" + }, + { + "uri" : "http://hl7.org/fhir/v3/PersonDisabilityType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProbabilityDistributionType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProcessingID" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProcessingMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryParameterValue" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryRequestLimit" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryResponse" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryStatusCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/Race" + }, + { + "uri" : "http://hl7.org/fhir/v3/RelationalOperator" + }, + { + "uri" : "http://hl7.org/fhir/v3/RelationshipConjunction" + }, + { + "uri" : "http://hl7.org/fhir/v3/ReligiousAffiliation" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseModality" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleLinkStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleLinkType" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/RouteOfAdministration" + }, + { + "uri" : "http://hl7.org/fhir/v3/Sequencing" + }, + { + "uri" : "http://hl7.org/fhir/v3/SetOperator" + }, + { + "uri" : "http://hl7.org/fhir/v3/SpecimenType" + }, + { + "uri" : "http://hl7.org/fhir/v3/substanceAdminSubstitution" + }, + { + "uri" : "http://hl7.org/fhir/v3/SubstitutionCondition" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellHorizontalAlign" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellScope" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellVerticalAlign" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableFrame" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableRules" + }, + { + "uri" : "http://hl7.org/fhir/v3/TargetAwareness" + }, + { + "uri" : "http://hl7.org/fhir/v3/TelecommunicationCapabilities" + }, + { + "uri" : "http://hl7.org/fhir/v3/TimingEvent" + }, + { + "uri" : "http://hl7.org/fhir/v3/TransmissionRelationshipTypeCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/TribalEntityUS" + }, + { + "uri" : "http://hl7.org/fhir/v3/VaccineManufacturer" + }, + { + "uri" : "http://hl7.org/fhir/vaccination-protocol-dose-status" + }, + { + "uri" : "http://hl7.org/fhir/vaccination-protocol-dose-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/variant-state" + }, + { + "uri" : "http://hl7.org/fhir/versioning-policy" + }, + { + "uri" : "http://hl7.org/fhir/vision-base-codes" + }, + { + "uri" : "http://hl7.org/fhir/vision-eye-codes" + }, + { + "uri" : "http://hl7.org/fhir/w3c-provenance-activity-type" + }, + { + "uri" : "http://loinc.org" + }, + { + "uri" : "http://nucc.org/provider-taxonomy" + }, + { + "uri" : "http://radlex.org" + }, + { + "uri" : "http://snomed.info/sct" + }, + { + "uri" : "http://standardterms.edqm.eu" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/action-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/activity-definition-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-error" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/admit-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-assess" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-severity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allerg-intol-substance-exp-risk" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/applicability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/attribute-estimate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-entity-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/basic-resource-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-network" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-term" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-unit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/can-push-updates" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/catalogType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-rating" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-rating" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/characteristic-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chargeitem-billingcodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/choice-list-orientation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chromosome-human" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-exception" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claimcareteamrole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claiminformationcategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/codesystem-altcode-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/common-tags" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-topic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composite-measure-scoring" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composition-altcode-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conceptdomains" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-clinical" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-ver-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conformance-expectation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentaction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentcategorycodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentpolicycodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentscope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentverification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contactentity-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/container-cap" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-content-derivative" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-data-meaning" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractaction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractactorrole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsubtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/copy-number-event" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-class" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-copay-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-selfpay" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverageeligibilityresponse-ex-auth-support" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/data-absent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-topic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-use" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/device-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diagnosis-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diet" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/directness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/discharge-disposition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dose-rate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-special-arrangements" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-subject-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-payload-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/entformula-additive" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/episodeofcare-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-quality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-benefitcategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-claimsubtype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-coverage-financial-exception" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosis-on-admission" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosisrelatedgroup" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosistype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-payee-resource-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-paymenttype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-procedure-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-programcode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-providerqualification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-relatedclaimrelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-revenue-center" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-serviceplace" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-tooth" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-USCLS" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-parameter-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-processing-rule" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/extra-security-role-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/failure-action" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/FDI-surface" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskcode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskinputtype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/flag-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/forms-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/fundsreserve" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-acceptance-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-achievement" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-priority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-relationship-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/guide-parameter-code" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/handling-condition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/history-absent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-work-group" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7TermMaintInfra" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/icd-o-3" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-funding-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-origin" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-recommendation-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-subpotent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/implantStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-plan-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/library-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-empty-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-order" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/location-physical-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/match-grade" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-data-usage" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-improvement-notation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-population" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-scoring" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/med-admin-perform-function" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-usage-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-performer-function" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-characteristic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-package-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-reasons-encounter" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/missingtoothreason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/modifiers" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/name-assembly-order" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/need" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/nutrition-intake-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/object-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-statistics" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/operation-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/parameter-group" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/participant-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payeetype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-adjustment-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/paymentstatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/plan-definition-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/practitioner-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/primary-source-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/processpriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/program" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/push-type-available" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/question-max-occurs" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/questionnaire-usage-mode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reaction-event-certainty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reason-medication-given" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/recommendation-strength" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/referencerange-meaning" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/rejection-criteria" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-objective-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-phase" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-prim-purp-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-reason-stopped" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-milestone" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-security-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-type-link" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-probability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/security-source-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-provision-conditions" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-referral-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/smart-capabilities" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/special-values" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/standards-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/state-change-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/statistic-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/study-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscriber-relationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-channel-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-error" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-status-at-event" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-tag" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/substance-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-item-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supplyrequest-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/synthesis-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-operation-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-origin-types" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/triggerEventID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/usage-context-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/utg-concept-properties" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0001" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0002" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0003" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0004" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0005" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0007" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0008" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0009" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0012" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0017" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0027" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0033" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0034" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0038" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0048" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0052" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0061" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0062" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0063" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0065" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0066" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0069" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0070" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0074" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0076" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0080" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0083" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0085" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0091" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0092" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0098" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0100" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0102" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0103" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0104" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0105" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0106" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0107" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0108" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0109" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0116" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0119" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0121" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0122" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0123" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0124" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0126" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0127" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0128" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0130" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0131" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0133" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0135" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0137" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0140" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0142" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0144" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0145" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0146" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0147" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0148" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0149" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0150" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0155" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0156" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0157" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0158" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0159" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0160" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0161" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0162" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0163" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0164" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0165" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0166" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0167" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0168" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0169" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0170" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0173" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0174" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0175" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0177" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0178" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0179" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0180" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0181" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0183" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0185" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0187" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0189" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0190" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0191" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0193" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0200" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0201" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0202" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0203" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0204" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0205" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0206" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0207" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0208" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0209" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0210" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0211" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0213" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0214" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0215" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0216" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0217" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0220" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0223" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0224" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0225" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0227" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0228" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0230" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0231" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0232" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0234" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0235" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0236" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0237" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0238" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0239" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0240" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0241" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0242" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0243" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0247" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0248" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0250" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0251" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0252" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0253" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0254" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0255" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0256" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0257" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0258" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0260" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0261" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0262" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0263" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0265" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0267" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0268" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0269" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0270" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0271" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0272" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0273" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0275" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0276" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0277" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0278" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0279" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0280" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0281" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0282" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0283" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0284" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0286" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0287" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0290" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0291" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0294" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0298" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0299" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0301" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0305" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0309" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0311" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0315" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0316" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0317" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0321" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0322" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0323" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0324" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0325" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0326" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0329" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0330" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0331" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0332" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0334" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0335" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0336" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0337" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0339" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0344" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0353" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0354" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0355" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0356" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0357" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0359" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0364" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0365" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0366" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0367" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0368" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0369" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0370" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0371" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0372" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0373" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0374" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0375" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0376" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0377" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0383" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0384" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0387" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0388" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0389" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0392" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0393" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0394" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0395" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0396" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0397" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0398" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0401" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0402" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0403" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0404" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0406" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0409" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0415" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0416" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0417" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0418" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0421" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0422" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0423" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0424" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0425" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0426" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0427" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0428" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0429" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0430" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0431" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0432" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0433" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0434" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0435" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0436" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0437" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0438" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0440" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0441" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0442" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0443" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0444" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0445" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0450" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0457" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0465" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0466" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0468" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0469" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0470" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0472" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0473" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0474" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0475" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0477" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0478" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0480" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0482" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0483" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0484" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0485" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0487" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0488" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0489" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0490" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0491" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0492" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0493" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0494" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0495" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0496" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0497" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0498" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0499" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0500" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0501" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0502" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0503" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0504" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0505" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0506" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0507" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0508" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0510" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0511" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0513" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0514" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0516" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0517" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0518" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0520" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0523" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0524" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0527" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0528" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0529" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0530" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0532" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0534" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0535" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0536" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0538" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0540" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0544" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0547" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0548" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0550" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0553" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0554" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0555" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0556" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0557" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0558" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0559" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0560" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0561" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0562" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0564" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0565" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0566" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0569" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0570" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0571" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0572" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0615" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0616" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0617" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0618" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0625" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0634" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0642" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0651" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0653" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0657" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0659" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0667" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0669" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0682" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0702" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0717" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0728" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0731" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0734" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0739" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0742" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0749" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0755" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0757" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0759" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0761" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0763" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0776" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0778" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0790" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0793" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0806" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0818" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0834" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0868" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0871" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0881" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0882" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0894" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0904" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0905" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0906" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0907" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0909" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0912" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0914" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0916" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0917" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0918" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0919" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0920" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0921" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0922" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0923" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0924" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0925" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0926" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0927" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0933" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0935" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0936" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0937" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0938" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0939" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0940" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0942" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0945" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0946" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0948" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0949" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0950" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0951" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0970" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0971" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-4000" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-tables" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActExposureLevelCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActInvoiceElementModifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActMood" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActReason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipCheckpoint" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipJoin" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSplit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSubset" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActSite" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUncertainty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUSPrivacyLaw" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressPartType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AmericanIndianAlaskaNativeLanguages" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Calendar" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarCycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Charset" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystem" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystemType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodingRationale" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CommunicationFunctionType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CompressionAlgorithm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptCodeRelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptGenerality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptProperty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerCap" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerSeparator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContentProcessingMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContextControl" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Country" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Currency" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataOperation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Dentition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DeviceAlertLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentCompletion" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentStorage" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EditStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EducationLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EmployeeJobClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAccident" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAcuity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAdmissionSource" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterReferralSource" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterSpecialCourtesy" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityDeterminer" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityHandling" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifierR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartTypeR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUseR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityRisk" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EquipmentAlertLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Ethnicity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ExposureMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GenderStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HealthcareProviderTaxonomyHIPAA" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ApprovalStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7CMETAttribution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7CommitteeIDInRIM" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ConformanceInclusion" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ContextConductionStyle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DefinedRoseProperty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DocumentFormatCodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSVersionCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingDomain" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSection" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSubSection" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7Realm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7StandardVersionCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7UpdateMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7V3Conformance" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7VoteResolution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HtmlLinkType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierReliability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierScope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IntegrityCheckAlgorithm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-1retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-2retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-3retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-iso4217-HL7" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LivingArrangement" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalMarkupIgnore" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalRemoteControlState" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManagedParticipationStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MapRelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialForm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFAttributeType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdMetSourceType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdRowType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfRmimRowType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFSubjectAreaPrefix" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-mediaType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageWaitingPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ModifyIndicator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationCategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationMethod" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-OrganizationNameType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParameterizedDataType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationSignature" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PatientImportance" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PaymentTerms" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PersonDisabilityType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PostalAddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProbabilityDistributionType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryParameterValue" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryQuantityUnit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryRequestLimit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryResponse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryStatusCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Race" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationalOperator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationshipConjunction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseModality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Sequencing" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SetOperator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SpecimenType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-styleType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-substanceAdminSubstitution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SubstitutionCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellHorizontalAlign" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellScope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellVerticalAlign" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableFrame" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableRules" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TargetAwareness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationAddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationCapabilities" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TimingEvent" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TransmissionRelationshipTypeCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-URLScheme" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineManufacturer" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VocabularyDomainQualifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-WorkClassificationODH" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-process" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variable-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variant-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/verificationresult-communication-method" + }, + { + "uri" : "http://unitsofmeasure.org" + }, + { + "uri" : "http://unstats.un.org/unsd/methods/m49/m49.htm" + }, + { + "uri" : "http://varnomen.hgvs.org" + }, + { + "uri" : "http://www.ada.org/snodent" + }, + { + "uri" : "http://www.ama-assn.org/go/cpt" + }, + { + "uri" : "http://www.hl7.org/fhir/contractaction" + }, + { + "uri" : "http://www.hl7.org/fhir/contractactorrole" + }, + { + "uri" : "http://www.hl7.org/fhir/contractsignertypecodes" + }, + { + "uri" : "http://www.nlm.nih.gov/research/umls/rxnorm" + }, + { + "uri" : "http://www.whocc.no/atc" + }, + { + "uri" : "https://www.cms.gov/Medicare/Medicare-Fee-for-Service-Payment/HospitalAcqCond/Coding" + }, + { + "uri" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats" + }, + { + "uri" : "https://www.iana.org/time-zones" + }, + { + "uri" : "https://www.usps.com/" + }, + { + "uri" : "urn:ietf:bcp:13" + }, + { + "uri" : "urn:ietf:bcp:47" + }, + { + "uri" : "urn:ietf:rfc:3986" + }, + { + "uri" : "urn:iso-astm:E1762-95:2013" + }, + { + "uri" : "urn:iso:std:iso:11073:10101" + }, + { + "uri" : "urn:iso:std:iso:3166" + }, + { + "uri" : "urn:iso:std:iso:3166:-2" + }, + { + "uri" : "urn:iso:std:iso:4217" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1001.101.104.16592" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1005.17" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.2.9.6.2.7" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.3.1937.98.5.8" + }], + "expansion" : { + "parameter" : [{ + "name" : "cache-id" + }, + { + "name" : "tx-resource" + }, + { + "name" : "_incomplete" + }, + { + "name" : "abstract" + }, + { + "name" : "activeOnly" + }, + { + "name" : "check-system-version" + }, + { + "name" : "count" + }, + { + "name" : "default-to-latest-version" + }, + { + "name" : "displayLanguage" + }, + { + "name" : "excludeNested" + }, + { + "name" : "excludeNotForUI" + }, + { + "name" : "excludePostCoordinated" + }, + { + "name" : "force-system-version" + }, + { + "name" : "inactive" + }, + { + "name" : "includeAlternateCodes" + }, + { + "name" : "includeDefinition" + }, + { + "name" : "includeDesignations" + }, + { + "name" : "incomplete-ok" + }, + { + "name" : "limitedExpansion" + }, + { + "name" : "mode" + }, + { + "name" : "no-cache" + }, + { + "name" : "offset" + }, + { + "name" : "profile" + }, + { + "name" : "property" + }, + { + "name" : "system-version" + }, + { + "name" : "valueSetMode" + }] + } +} \ No newline at end of file diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/servers.ini b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/servers.ini index a0cb37f84..374883622 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/servers.ini +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/servers.ini @@ -1,3 +1,4 @@ [servers] tx-dev.fhir.org.r3 = http://tx-dev.fhir.org/r3 +local.fhir.org.r3 = http://local.fhir.org/r3 diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.terminologyCapabilities.local.fhir.org.r3.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.terminologyCapabilities.local.fhir.org.r3.cache new file mode 100644 index 000000000..39ea92d1e --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.terminologyCapabilities.local.fhir.org.r3.cache @@ -0,0 +1,5510 @@ +{ + "resourceType" : "TerminologyCapabilities", + "codeSystem" : [{ + "uri" : "http://devices.fhir.org/CodeSystem/MDC-concept-status" + }, + { + "uri" : "http://devices.fhir.org/CodeSystem/MDC-designation-use" + }, + { + "uri" : "http://dicom.nema.org/resources/ontology/DCM" + }, + { + "uri" : "http://fdasis.nlm.nih.gov" + }, + { + "uri" : "http://fhir.ohdsi.org/CodeSystem/concepts" + }, + { + "uri" : "http://healthit.gov/nhin/purposeofuse" + }, + { + "uri" : "http://hl7.org/fhir/abstract-types" + }, + { + "uri" : "http://hl7.org/fhir/account-status" + }, + { + "uri" : "http://hl7.org/fhir/action-cardinality-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-condition-kind" + }, + { + "uri" : "http://hl7.org/fhir/action-grouping-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/action-precheck-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/action-required-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-selection-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-type" + }, + { + "uri" : "http://hl7.org/fhir/actionlist" + }, + { + "uri" : "http://hl7.org/fhir/activity-definition-category" + }, + { + "uri" : "http://hl7.org/fhir/additionalmaterials" + }, + { + "uri" : "http://hl7.org/fhir/address-type" + }, + { + "uri" : "http://hl7.org/fhir/address-use" + }, + { + "uri" : "http://hl7.org/fhir/adjudication" + }, + { + "uri" : "http://hl7.org/fhir/adjudication-error" + }, + { + "uri" : "http://hl7.org/fhir/adjudication-reason" + }, + { + "uri" : "http://hl7.org/fhir/administrative-gender" + }, + { + "uri" : "http://hl7.org/fhir/admit-source" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-category" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality-assess" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality-method" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-causality-result" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-outcome" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-seriousness" + }, + { + "uri" : "http://hl7.org/fhir/allerg-intol-substance-exp-risk" + }, + { + "uri" : "http://hl7.org/fhir/allergy-clinical-status" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-category" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-criticality" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-type" + }, + { + "uri" : "http://hl7.org/fhir/allergy-verification-status" + }, + { + "uri" : "http://hl7.org/fhir/animal-genderstatus" + }, + { + "uri" : "http://hl7.org/fhir/animal-species" + }, + { + "uri" : "http://hl7.org/fhir/appointmentstatus" + }, + { + "uri" : "http://hl7.org/fhir/assert-direction-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-operator-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-response-code-types" + }, + { + "uri" : "http://hl7.org/fhir/audit-entity-type" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-action" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-outcome" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-type" + }, + { + "uri" : "http://hl7.org/fhir/basic-resource-type" + }, + { + "uri" : "http://hl7.org/fhir/benefit-category" + }, + { + "uri" : "http://hl7.org/fhir/benefit-network" + }, + { + "uri" : "http://hl7.org/fhir/benefit-subcategory" + }, + { + "uri" : "http://hl7.org/fhir/benefit-term" + }, + { + "uri" : "http://hl7.org/fhir/benefit-type" + }, + { + "uri" : "http://hl7.org/fhir/benefit-unit" + }, + { + "uri" : "http://hl7.org/fhir/binding-strength" + }, + { + "uri" : "http://hl7.org/fhir/bundle-type" + }, + { + "uri" : "http://hl7.org/fhir/capability-statement-kind" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-category" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-status" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-intent" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-status" + }, + { + "uri" : "http://hl7.org/fhir/care-team-category" + }, + { + "uri" : "http://hl7.org/fhir/care-team-status" + }, + { + "uri" : "http://hl7.org/fhir/chargeitem-billingcodes" + }, + { + "uri" : "http://hl7.org/fhir/chargeitem-status" + }, + { + "uri" : "http://hl7.org/fhir/choice-list-orientation" + }, + { + "uri" : "http://hl7.org/fhir/chromosome-human" + }, + { + "uri" : "http://hl7.org/fhir/claim-exception" + }, + { + "uri" : "http://hl7.org/fhir/claim-use" + }, + { + "uri" : "http://hl7.org/fhir/claimcareteamrole" + }, + { + "uri" : "http://hl7.org/fhir/claiminformationcategory" + }, + { + "uri" : "http://hl7.org/fhir/classification-or-context" + }, + { + "uri" : "http://hl7.org/fhir/clinical-impression-status" + }, + { + "uri" : "http://hl7.org/fhir/codesystem-content-mode" + }, + { + "uri" : "http://hl7.org/fhir/codesystem-hierarchy-meaning" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/example" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/summary" + }, + { + "uri" : "http://hl7.org/fhir/common-tags" + }, + { + "uri" : "http://hl7.org/fhir/communication-category" + }, + { + "uri" : "http://hl7.org/fhir/communication-not-done-reason" + }, + { + "uri" : "http://hl7.org/fhir/compartment-type" + }, + { + "uri" : "http://hl7.org/fhir/composite-measure-scoring" + }, + { + "uri" : "http://hl7.org/fhir/composition-attestation-mode" + }, + { + "uri" : "http://hl7.org/fhir/composition-status" + }, + { + "uri" : "http://hl7.org/fhir/concept-map-equivalence" + }, + { + "uri" : "http://hl7.org/fhir/concept-properties" + }, + { + "uri" : "http://hl7.org/fhir/concept-property-type" + }, + { + "uri" : "http://hl7.org/fhir/conceptmap-unmapped-mode" + }, + { + "uri" : "http://hl7.org/fhir/condition-category" + }, + { + "uri" : "http://hl7.org/fhir/condition-clinical" + }, + { + "uri" : "http://hl7.org/fhir/condition-state" + }, + { + "uri" : "http://hl7.org/fhir/condition-ver-status" + }, + { + "uri" : "http://hl7.org/fhir/conditional-delete-status" + }, + { + "uri" : "http://hl7.org/fhir/conditional-read-status" + }, + { + "uri" : "http://hl7.org/fhir/conformance-expectation" + }, + { + "uri" : "http://hl7.org/fhir/consent-data-meaning" + }, + { + "uri" : "http://hl7.org/fhir/consent-except-type" + }, + { + "uri" : "http://hl7.org/fhir/consent-state-codes" + }, + { + "uri" : "http://hl7.org/fhir/consentaction" + }, + { + "uri" : "http://hl7.org/fhir/consentcategorycodes" + }, + { + "uri" : "http://hl7.org/fhir/constraint-severity" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-system" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-use" + }, + { + "uri" : "http://hl7.org/fhir/contactentity-type" + }, + { + "uri" : "http://hl7.org/fhir/content-type" + }, + { + "uri" : "http://hl7.org/fhir/contract-content-derivative" + }, + { + "uri" : "http://hl7.org/fhir/contract-status" + }, + { + "uri" : "http://hl7.org/fhir/contractsubtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttermsubtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttermtypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contracttypecodes" + }, + { + "uri" : "http://hl7.org/fhir/contributor-type" + }, + { + "uri" : "http://hl7.org/fhir/copy-number-event" + }, + { + "uri" : "http://hl7.org/fhir/coverage-level" + }, + { + "uri" : "http://hl7.org/fhir/coverage-selfpay" + }, + { + "uri" : "http://hl7.org/fhir/data-absent-reason" + }, + { + "uri" : "http://hl7.org/fhir/data-types" + }, + { + "uri" : "http://hl7.org/fhir/dataelement-stringency" + }, + { + "uri" : "http://hl7.org/fhir/days-of-week" + }, + { + "uri" : "http://hl7.org/fhir/definition-status" + }, + { + "uri" : "http://hl7.org/fhir/definition-topic" + }, + { + "uri" : "http://hl7.org/fhir/detectedissue-severity" + }, + { + "uri" : "http://hl7.org/fhir/device-action" + }, + { + "uri" : "http://hl7.org/fhir/device-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/device-status" + }, + { + "uri" : "http://hl7.org/fhir/diagnosis-role" + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-report-status" + }, + { + "uri" : "http://hl7.org/fhir/dicom-audit-lifecycle" + }, + { + "uri" : "http://hl7.org/fhir/diet" + }, + { + "uri" : "http://hl7.org/fhir/digital-media-type" + }, + { + "uri" : "http://hl7.org/fhir/discharge-disposition" + }, + { + "uri" : "http://hl7.org/fhir/discriminator-type" + }, + { + "uri" : "http://hl7.org/fhir/document-mode" + }, + { + "uri" : "http://hl7.org/fhir/document-reference-status" + }, + { + "uri" : "http://hl7.org/fhir/document-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/encounter-location-status" + }, + { + "uri" : "http://hl7.org/fhir/encounter-special-arrangements" + }, + { + "uri" : "http://hl7.org/fhir/encounter-status" + }, + { + "uri" : "http://hl7.org/fhir/encounter-type" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-connection-type" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-payload-type" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-status" + }, + { + "uri" : "http://hl7.org/fhir/entformula-additive" + }, + { + "uri" : "http://hl7.org/fhir/episode-of-care-status" + }, + { + "uri" : "http://hl7.org/fhir/episodeofcare-type" + }, + { + "uri" : "http://hl7.org/fhir/event-capability-mode" + }, + { + "uri" : "http://hl7.org/fhir/event-status" + }, + { + "uri" : "http://hl7.org/fhir/event-timing" + }, + { + "uri" : "http://hl7.org/fhir/evidence-quality" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimitemtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimsubtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-diagnosisrelatedgroup" + }, + { + "uri" : "http://hl7.org/fhir/ex-diagnosistype" + }, + { + "uri" : "http://hl7.org/fhir/ex-fdi" + }, + { + "uri" : "http://hl7.org/fhir/ex-onsettype" + }, + { + "uri" : "http://hl7.org/fhir/ex-oralprostho" + }, + { + "uri" : "http://hl7.org/fhir/ex-payee-resource-type" + }, + { + "uri" : "http://hl7.org/fhir/ex-paymenttype" + }, + { + "uri" : "http://hl7.org/fhir/ex-pharmaservice" + }, + { + "uri" : "http://hl7.org/fhir/ex-programcode" + }, + { + "uri" : "http://hl7.org/fhir/ex-providerqualification" + }, + { + "uri" : "http://hl7.org/fhir/ex-relatedclaimrelationship" + }, + { + "uri" : "http://hl7.org/fhir/ex-revenue-center" + }, + { + "uri" : "http://hl7.org/fhir/ex-servicemodifier" + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceplace" + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceproduct" + }, + { + "uri" : "http://hl7.org/fhir/ex-tooth" + }, + { + "uri" : "http://hl7.org/fhir/ex-udi" + }, + { + "uri" : "http://hl7.org/fhir/ex-USCLS" + }, + { + "uri" : "http://hl7.org/fhir/ex-visionprescriptionproduct" + }, + { + "uri" : "http://hl7.org/fhir/explanationofbenefit-status" + }, + { + "uri" : "http://hl7.org/fhir/extension-context" + }, + { + "uri" : "http://hl7.org/fhir/extra-activity-type" + }, + { + "uri" : "http://hl7.org/fhir/extra-security-role-type" + }, + { + "uri" : "http://hl7.org/fhir/FDI-surface" + }, + { + "uri" : "http://hl7.org/fhir/filter-operator" + }, + { + "uri" : "http://hl7.org/fhir/flag-category" + }, + { + "uri" : "http://hl7.org/fhir/flag-priority-code" + }, + { + "uri" : "http://hl7.org/fhir/flag-status" + }, + { + "uri" : "http://hl7.org/fhir/fm-conditions" + }, + { + "uri" : "http://hl7.org/fhir/fm-status" + }, + { + "uri" : "http://hl7.org/fhir/forms-codes" + }, + { + "uri" : "http://hl7.org/fhir/fundsreserve" + }, + { + "uri" : "http://hl7.org/fhir/goal-acceptance-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-category" + }, + { + "uri" : "http://hl7.org/fhir/goal-priority" + }, + { + "uri" : "http://hl7.org/fhir/goal-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/goal-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/graph-compartment-rule" + }, + { + "uri" : "http://hl7.org/fhir/group-type" + }, + { + "uri" : "http://hl7.org/fhir/guidance-response-status" + }, + { + "uri" : "http://hl7.org/fhir/guide-dependency-type" + }, + { + "uri" : "http://hl7.org/fhir/guide-page-kind" + }, + { + "uri" : "http://hl7.org/fhir/history-not-done-reason" + }, + { + "uri" : "http://hl7.org/fhir/history-status" + }, + { + "uri" : "http://hl7.org/fhir/hl7-work-group" + }, + { + "uri" : "http://hl7.org/fhir/http-operations" + }, + { + "uri" : "http://hl7.org/fhir/http-verb" + }, + { + "uri" : "http://hl7.org/fhir/identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/identifier-use" + }, + { + "uri" : "http://hl7.org/fhir/identity-assuranceLevel" + }, + { + "uri" : "http://hl7.org/fhir/immunization-origin" + }, + { + "uri" : "http://hl7.org/fhir/immunization-recommendation-date-criterion" + }, + { + "uri" : "http://hl7.org/fhir/immunization-recommendation-status" + }, + { + "uri" : "http://hl7.org/fhir/implant-status" + }, + { + "uri" : "http://hl7.org/fhir/intervention" + }, + { + "uri" : "http://hl7.org/fhir/iso-21089-lifecycle" + }, + { + "uri" : "http://hl7.org/fhir/issue-severity" + }, + { + "uri" : "http://hl7.org/fhir/issue-type" + }, + { + "uri" : "http://hl7.org/fhir/item-type" + }, + { + "uri" : "http://hl7.org/fhir/library-type" + }, + { + "uri" : "http://hl7.org/fhir/link-type" + }, + { + "uri" : "http://hl7.org/fhir/linkage-type" + }, + { + "uri" : "http://hl7.org/fhir/list-empty-reason" + }, + { + "uri" : "http://hl7.org/fhir/list-example-use-codes" + }, + { + "uri" : "http://hl7.org/fhir/list-mode" + }, + { + "uri" : "http://hl7.org/fhir/list-order" + }, + { + "uri" : "http://hl7.org/fhir/list-status" + }, + { + "uri" : "http://hl7.org/fhir/location-mode" + }, + { + "uri" : "http://hl7.org/fhir/location-physical-type" + }, + { + "uri" : "http://hl7.org/fhir/location-status" + }, + { + "uri" : "http://hl7.org/fhir/map-context-type" + }, + { + "uri" : "http://hl7.org/fhir/map-group-type-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-input-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-model-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-source-list-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-target-list-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-transform" + }, + { + "uri" : "http://hl7.org/fhir/marital-status" + }, + { + "uri" : "http://hl7.org/fhir/match-grade" + }, + { + "uri" : "http://hl7.org/fhir/measure-data-usage" + }, + { + "uri" : "http://hl7.org/fhir/measure-population" + }, + { + "uri" : "http://hl7.org/fhir/measure-report-status" + }, + { + "uri" : "http://hl7.org/fhir/measure-report-type" + }, + { + "uri" : "http://hl7.org/fhir/measure-scoring" + }, + { + "uri" : "http://hl7.org/fhir/measure-type" + }, + { + "uri" : "http://hl7.org/fhir/measurement-principle" + }, + { + "uri" : "http://hl7.org/fhir/media-subtype" + }, + { + "uri" : "http://hl7.org/fhir/medication-admin-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-admin-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-dispense-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-dispense-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-package-form" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-intent" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-priority" + }, + { + "uri" : "http://hl7.org/fhir/medication-request-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-category" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/medication-statement-taken" + }, + { + "uri" : "http://hl7.org/fhir/medication-status" + }, + { + "uri" : "http://hl7.org/fhir/message-events" + }, + { + "uri" : "http://hl7.org/fhir/message-reasons-encounter" + }, + { + "uri" : "http://hl7.org/fhir/message-significance-category" + }, + { + "uri" : "http://hl7.org/fhir/message-transport" + }, + { + "uri" : "http://hl7.org/fhir/messageheader-response-request" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-state" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-type" + }, + { + "uri" : "http://hl7.org/fhir/metric-category" + }, + { + "uri" : "http://hl7.org/fhir/metric-color" + }, + { + "uri" : "http://hl7.org/fhir/metric-operational-status" + }, + { + "uri" : "http://hl7.org/fhir/missingtoothreason" + }, + { + "uri" : "http://hl7.org/fhir/modifiers" + }, + { + "uri" : "http://hl7.org/fhir/name-assembly-order" + }, + { + "uri" : "http://hl7.org/fhir/name-use" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-type" + }, + { + "uri" : "http://hl7.org/fhir/narrative-status" + }, + { + "uri" : "http://hl7.org/fhir/network-type" + }, + { + "uri" : "http://hl7.org/fhir/note-type" + }, + { + "uri" : "http://hl7.org/fhir/nutrition-request-status" + }, + { + "uri" : "http://hl7.org/fhir/object-role" + }, + { + "uri" : "http://hl7.org/fhir/observation-category" + }, + { + "uri" : "http://hl7.org/fhir/observation-relationshiptypes" + }, + { + "uri" : "http://hl7.org/fhir/observation-statistics" + }, + { + "uri" : "http://hl7.org/fhir/observation-status" + }, + { + "uri" : "http://hl7.org/fhir/operation-kind" + }, + { + "uri" : "http://hl7.org/fhir/operation-outcome" + }, + { + "uri" : "http://hl7.org/fhir/operation-parameter-use" + }, + { + "uri" : "http://hl7.org/fhir/operational-status" + }, + { + "uri" : "http://hl7.org/fhir/organization-type" + }, + { + "uri" : "http://hl7.org/fhir/parameter-group" + }, + { + "uri" : "http://hl7.org/fhir/participant-type" + }, + { + "uri" : "http://hl7.org/fhir/participantrequired" + }, + { + "uri" : "http://hl7.org/fhir/participationstatus" + }, + { + "uri" : "http://hl7.org/fhir/payeetype" + }, + { + "uri" : "http://hl7.org/fhir/payment-adjustment-reason" + }, + { + "uri" : "http://hl7.org/fhir/payment-type" + }, + { + "uri" : "http://hl7.org/fhir/paymentstatus" + }, + { + "uri" : "http://hl7.org/fhir/plan-definition-type" + }, + { + "uri" : "http://hl7.org/fhir/policyholder-relationship" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-role" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-specialty" + }, + { + "uri" : "http://hl7.org/fhir/procedure-progress-status-code" + }, + { + "uri" : "http://hl7.org/fhir/processoutcomecodes" + }, + { + "uri" : "http://hl7.org/fhir/processpriority" + }, + { + "uri" : "http://hl7.org/fhir/property-representation" + }, + { + "uri" : "http://hl7.org/fhir/provenance-entity-role" + }, + { + "uri" : "http://hl7.org/fhir/publication-status" + }, + { + "uri" : "http://hl7.org/fhir/quality-type" + }, + { + "uri" : "http://hl7.org/fhir/quantity-comparator" + }, + { + "uri" : "http://hl7.org/fhir/question-max-occurs" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-answers-status" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-display-category" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-item-control" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-usage-mode" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-certainty" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-severity" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-given" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-not-given" + }, + { + "uri" : "http://hl7.org/fhir/recommendation-strength" + }, + { + "uri" : "http://hl7.org/fhir/reference-handling-policy" + }, + { + "uri" : "http://hl7.org/fhir/reference-version-rules" + }, + { + "uri" : "http://hl7.org/fhir/referencerange-meaning" + }, + { + "uri" : "http://hl7.org/fhir/related-artifact-type" + }, + { + "uri" : "http://hl7.org/fhir/relationship" + }, + { + "uri" : "http://hl7.org/fhir/remittance-outcome" + }, + { + "uri" : "http://hl7.org/fhir/report-action-result-codes" + }, + { + "uri" : "http://hl7.org/fhir/report-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/report-result-codes" + }, + { + "uri" : "http://hl7.org/fhir/report-status-codes" + }, + { + "uri" : "http://hl7.org/fhir/repository-type" + }, + { + "uri" : "http://hl7.org/fhir/request-intent" + }, + { + "uri" : "http://hl7.org/fhir/request-priority" + }, + { + "uri" : "http://hl7.org/fhir/request-status" + }, + { + "uri" : "http://hl7.org/fhir/research-study-status" + }, + { + "uri" : "http://hl7.org/fhir/research-subject-status" + }, + { + "uri" : "http://hl7.org/fhir/resource-aggregation-mode" + }, + { + "uri" : "http://hl7.org/fhir/resource-slicing-rules" + }, + { + "uri" : "http://hl7.org/fhir/resource-type-link" + }, + { + "uri" : "http://hl7.org/fhir/resource-types" + }, + { + "uri" : "http://hl7.org/fhir/resource-validation-mode" + }, + { + "uri" : "http://hl7.org/fhir/response-code" + }, + { + "uri" : "http://hl7.org/fhir/restful-capability-mode" + }, + { + "uri" : "http://hl7.org/fhir/restful-interaction" + }, + { + "uri" : "http://hl7.org/fhir/restful-security-service" + }, + { + "uri" : "http://hl7.org/fhir/risk-probability" + }, + { + "uri" : "http://hl7.org/fhir/search-comparator" + }, + { + "uri" : "http://hl7.org/fhir/search-entry-mode" + }, + { + "uri" : "http://hl7.org/fhir/search-modifier-code" + }, + { + "uri" : "http://hl7.org/fhir/search-param-type" + }, + { + "uri" : "http://hl7.org/fhir/search-xpath-usage" + }, + { + "uri" : "http://hl7.org/fhir/security-source-type" + }, + { + "uri" : "http://hl7.org/fhir/sequence-type" + }, + { + "uri" : "http://hl7.org/fhir/service-category" + }, + { + "uri" : "http://hl7.org/fhir/service-provision-conditions" + }, + { + "uri" : "http://hl7.org/fhir/service-referral-method" + }, + { + "uri" : "http://hl7.org/fhir/service-type" + }, + { + "uri" : "http://hl7.org/fhir/sid/cvx" + }, + { + "uri" : "http://hl7.org/fhir/sid/ex-icd-10-procedures" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10-cm" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-9-cm" + }, + { + "uri" : "http://hl7.org/fhir/sid/mvx" + }, + { + "uri" : "http://hl7.org/fhir/sid/ndc" + }, + { + "uri" : "http://hl7.org/fhir/slotstatus" + }, + { + "uri" : "http://hl7.org/fhir/spdx-license" + }, + { + "uri" : "http://hl7.org/fhir/special-values" + }, + { + "uri" : "http://hl7.org/fhir/specification-type" + }, + { + "uri" : "http://hl7.org/fhir/specimen-status" + }, + { + "uri" : "http://hl7.org/fhir/structure-definition-kind" + }, + { + "uri" : "http://hl7.org/fhir/subscription-channel-type" + }, + { + "uri" : "http://hl7.org/fhir/subscription-status" + }, + { + "uri" : "http://hl7.org/fhir/subscription-tag" + }, + { + "uri" : "http://hl7.org/fhir/substance-category" + }, + { + "uri" : "http://hl7.org/fhir/substance-status" + }, + { + "uri" : "http://hl7.org/fhir/supply-item-type" + }, + { + "uri" : "http://hl7.org/fhir/supply-kind" + }, + { + "uri" : "http://hl7.org/fhir/supplydelivery-status" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-reason" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-status" + }, + { + "uri" : "http://hl7.org/fhir/system-version-processing-mode" + }, + { + "uri" : "http://hl7.org/fhir/task-performer-type" + }, + { + "uri" : "http://hl7.org/fhir/task-status" + }, + { + "uri" : "http://hl7.org/fhir/testscript-operation-codes" + }, + { + "uri" : "http://hl7.org/fhir/testscript-profile-destination-types" + }, + { + "uri" : "http://hl7.org/fhir/testscript-profile-origin-types" + }, + { + "uri" : "http://hl7.org/fhir/transaction-mode" + }, + { + "uri" : "http://hl7.org/fhir/trigger-type" + }, + { + "uri" : "http://hl7.org/fhir/type-derivation-rule" + }, + { + "uri" : "http://hl7.org/fhir/udi-entry-type" + }, + { + "uri" : "http://hl7.org/fhir/unknown-content-code" + }, + { + "uri" : "http://hl7.org/fhir/usage-context-type" + }, + { + "uri" : "http://hl7.org/fhir/v2/0001" + }, + { + "uri" : "http://hl7.org/fhir/v2/0002" + }, + { + "uri" : "http://hl7.org/fhir/v2/0003" + }, + { + "uri" : "http://hl7.org/fhir/v2/0004" + }, + { + "uri" : "http://hl7.org/fhir/v2/0006/2.1" + }, + { + "uri" : "http://hl7.org/fhir/v2/0006/2.4" + }, + { + "uri" : "http://hl7.org/fhir/v2/0007" + }, + { + "uri" : "http://hl7.org/fhir/v2/0008" + }, + { + "uri" : "http://hl7.org/fhir/v2/0009" + }, + { + "uri" : "http://hl7.org/fhir/v2/0012" + }, + { + "uri" : "http://hl7.org/fhir/v2/0017" + }, + { + "uri" : "http://hl7.org/fhir/v2/0023" + }, + { + "uri" : "http://hl7.org/fhir/v2/0027" + }, + { + "uri" : "http://hl7.org/fhir/v2/0033" + }, + { + "uri" : "http://hl7.org/fhir/v2/0034" + }, + { + "uri" : "http://hl7.org/fhir/v2/0038" + }, + { + "uri" : "http://hl7.org/fhir/v2/0043" + }, + { + "uri" : "http://hl7.org/fhir/v2/0048" + }, + { + "uri" : "http://hl7.org/fhir/v2/0052" + }, + { + "uri" : "http://hl7.org/fhir/v2/0061" + }, + { + "uri" : "http://hl7.org/fhir/v2/0062" + }, + { + "uri" : "http://hl7.org/fhir/v2/0063" + }, + { + "uri" : "http://hl7.org/fhir/v2/0065" + }, + { + "uri" : "http://hl7.org/fhir/v2/0066" + }, + { + "uri" : "http://hl7.org/fhir/v2/0069" + }, + { + "uri" : "http://hl7.org/fhir/v2/0070" + }, + { + "uri" : "http://hl7.org/fhir/v2/0074" + }, + { + "uri" : "http://hl7.org/fhir/v2/0076" + }, + { + "uri" : "http://hl7.org/fhir/v2/0078" + }, + { + "uri" : "http://hl7.org/fhir/v2/0080" + }, + { + "uri" : "http://hl7.org/fhir/v2/0083" + }, + { + "uri" : "http://hl7.org/fhir/v2/0085" + }, + { + "uri" : "http://hl7.org/fhir/v2/0091" + }, + { + "uri" : "http://hl7.org/fhir/v2/0092" + }, + { + "uri" : "http://hl7.org/fhir/v2/0098" + }, + { + "uri" : "http://hl7.org/fhir/v2/0100" + }, + { + "uri" : "http://hl7.org/fhir/v2/0102" + }, + { + "uri" : "http://hl7.org/fhir/v2/0103" + }, + { + "uri" : "http://hl7.org/fhir/v2/0104" + }, + { + "uri" : "http://hl7.org/fhir/v2/0105" + }, + { + "uri" : "http://hl7.org/fhir/v2/0106" + }, + { + "uri" : "http://hl7.org/fhir/v2/0107" + }, + { + "uri" : "http://hl7.org/fhir/v2/0108" + }, + { + "uri" : "http://hl7.org/fhir/v2/0109" + }, + { + "uri" : "http://hl7.org/fhir/v2/0116" + }, + { + "uri" : "http://hl7.org/fhir/v2/0119" + }, + { + "uri" : "http://hl7.org/fhir/v2/0121" + }, + { + "uri" : "http://hl7.org/fhir/v2/0122" + }, + { + "uri" : "http://hl7.org/fhir/v2/0123" + }, + { + "uri" : "http://hl7.org/fhir/v2/0124" + }, + { + "uri" : "http://hl7.org/fhir/v2/0126" + }, + { + "uri" : "http://hl7.org/fhir/v2/0127" + }, + { + "uri" : "http://hl7.org/fhir/v2/0128" + }, + { + "uri" : "http://hl7.org/fhir/v2/0130" + }, + { + "uri" : "http://hl7.org/fhir/v2/0131" + }, + { + "uri" : "http://hl7.org/fhir/v2/0133" + }, + { + "uri" : "http://hl7.org/fhir/v2/0135" + }, + { + "uri" : "http://hl7.org/fhir/v2/0136" + }, + { + "uri" : "http://hl7.org/fhir/v2/0137" + }, + { + "uri" : "http://hl7.org/fhir/v2/0140" + }, + { + "uri" : "http://hl7.org/fhir/v2/0141" + }, + { + "uri" : "http://hl7.org/fhir/v2/0142" + }, + { + "uri" : "http://hl7.org/fhir/v2/0144" + }, + { + "uri" : "http://hl7.org/fhir/v2/0145" + }, + { + "uri" : "http://hl7.org/fhir/v2/0146" + }, + { + "uri" : "http://hl7.org/fhir/v2/0147" + }, + { + "uri" : "http://hl7.org/fhir/v2/0148" + }, + { + "uri" : "http://hl7.org/fhir/v2/0149" + }, + { + "uri" : "http://hl7.org/fhir/v2/0150" + }, + { + "uri" : "http://hl7.org/fhir/v2/0153" + }, + { + "uri" : "http://hl7.org/fhir/v2/0155" + }, + { + "uri" : "http://hl7.org/fhir/v2/0156" + }, + { + "uri" : "http://hl7.org/fhir/v2/0157" + }, + { + "uri" : "http://hl7.org/fhir/v2/0158" + }, + { + "uri" : "http://hl7.org/fhir/v2/0159" + }, + { + "uri" : "http://hl7.org/fhir/v2/0160" + }, + { + "uri" : "http://hl7.org/fhir/v2/0161" + }, + { + "uri" : "http://hl7.org/fhir/v2/0162" + }, + { + "uri" : "http://hl7.org/fhir/v2/0163" + }, + { + "uri" : "http://hl7.org/fhir/v2/0164" + }, + { + "uri" : "http://hl7.org/fhir/v2/0165" + }, + { + "uri" : "http://hl7.org/fhir/v2/0166" + }, + { + "uri" : "http://hl7.org/fhir/v2/0167" + }, + { + "uri" : "http://hl7.org/fhir/v2/0168" + }, + { + "uri" : "http://hl7.org/fhir/v2/0169" + }, + { + "uri" : "http://hl7.org/fhir/v2/0170" + }, + { + "uri" : "http://hl7.org/fhir/v2/0173" + }, + { + "uri" : "http://hl7.org/fhir/v2/0174" + }, + { + "uri" : "http://hl7.org/fhir/v2/0175" + }, + { + "uri" : "http://hl7.org/fhir/v2/0177" + }, + { + "uri" : "http://hl7.org/fhir/v2/0178" + }, + { + "uri" : "http://hl7.org/fhir/v2/0179" + }, + { + "uri" : "http://hl7.org/fhir/v2/0180" + }, + { + "uri" : "http://hl7.org/fhir/v2/0181" + }, + { + "uri" : "http://hl7.org/fhir/v2/0183" + }, + { + "uri" : "http://hl7.org/fhir/v2/0185" + }, + { + "uri" : "http://hl7.org/fhir/v2/0187" + }, + { + "uri" : "http://hl7.org/fhir/v2/0189" + }, + { + "uri" : "http://hl7.org/fhir/v2/0190" + }, + { + "uri" : "http://hl7.org/fhir/v2/0191" + }, + { + "uri" : "http://hl7.org/fhir/v2/0193" + }, + { + "uri" : "http://hl7.org/fhir/v2/0200" + }, + { + "uri" : "http://hl7.org/fhir/v2/0201" + }, + { + "uri" : "http://hl7.org/fhir/v2/0202" + }, + { + "uri" : "http://hl7.org/fhir/v2/0203" + }, + { + "uri" : "http://hl7.org/fhir/v2/0204" + }, + { + "uri" : "http://hl7.org/fhir/v2/0205" + }, + { + "uri" : "http://hl7.org/fhir/v2/0206" + }, + { + "uri" : "http://hl7.org/fhir/v2/0207" + }, + { + "uri" : "http://hl7.org/fhir/v2/0208" + }, + { + "uri" : "http://hl7.org/fhir/v2/0209" + }, + { + "uri" : "http://hl7.org/fhir/v2/0210" + }, + { + "uri" : "http://hl7.org/fhir/v2/0211" + }, + { + "uri" : "http://hl7.org/fhir/v2/0213" + }, + { + "uri" : "http://hl7.org/fhir/v2/0214" + }, + { + "uri" : "http://hl7.org/fhir/v2/0215" + }, + { + "uri" : "http://hl7.org/fhir/v2/0216" + }, + { + "uri" : "http://hl7.org/fhir/v2/0217" + }, + { + "uri" : "http://hl7.org/fhir/v2/0220" + }, + { + "uri" : "http://hl7.org/fhir/v2/0223" + }, + { + "uri" : "http://hl7.org/fhir/v2/0224" + }, + { + "uri" : "http://hl7.org/fhir/v2/0225" + }, + { + "uri" : "http://hl7.org/fhir/v2/0227" + }, + { + "uri" : "http://hl7.org/fhir/v2/0228" + }, + { + "uri" : "http://hl7.org/fhir/v2/0229" + }, + { + "uri" : "http://hl7.org/fhir/v2/0230" + }, + { + "uri" : "http://hl7.org/fhir/v2/0231" + }, + { + "uri" : "http://hl7.org/fhir/v2/0232" + }, + { + "uri" : "http://hl7.org/fhir/v2/0234" + }, + { + "uri" : "http://hl7.org/fhir/v2/0235" + }, + { + "uri" : "http://hl7.org/fhir/v2/0236" + }, + { + "uri" : "http://hl7.org/fhir/v2/0237" + }, + { + "uri" : "http://hl7.org/fhir/v2/0238" + }, + { + "uri" : "http://hl7.org/fhir/v2/0239" + }, + { + "uri" : "http://hl7.org/fhir/v2/0240" + }, + { + "uri" : "http://hl7.org/fhir/v2/0241" + }, + { + "uri" : "http://hl7.org/fhir/v2/0242" + }, + { + "uri" : "http://hl7.org/fhir/v2/0243" + }, + { + "uri" : "http://hl7.org/fhir/v2/0247" + }, + { + "uri" : "http://hl7.org/fhir/v2/0248" + }, + { + "uri" : "http://hl7.org/fhir/v2/0250" + }, + { + "uri" : "http://hl7.org/fhir/v2/0251" + }, + { + "uri" : "http://hl7.org/fhir/v2/0252" + }, + { + "uri" : "http://hl7.org/fhir/v2/0253" + }, + { + "uri" : "http://hl7.org/fhir/v2/0254" + }, + { + "uri" : "http://hl7.org/fhir/v2/0255" + }, + { + "uri" : "http://hl7.org/fhir/v2/0256" + }, + { + "uri" : "http://hl7.org/fhir/v2/0257" + }, + { + "uri" : "http://hl7.org/fhir/v2/0258" + }, + { + "uri" : "http://hl7.org/fhir/v2/0259" + }, + { + "uri" : "http://hl7.org/fhir/v2/0260" + }, + { + "uri" : "http://hl7.org/fhir/v2/0261" + }, + { + "uri" : "http://hl7.org/fhir/v2/0262" + }, + { + "uri" : "http://hl7.org/fhir/v2/0263" + }, + { + "uri" : "http://hl7.org/fhir/v2/0265" + }, + { + "uri" : "http://hl7.org/fhir/v2/0267" + }, + { + "uri" : "http://hl7.org/fhir/v2/0268" + }, + { + "uri" : "http://hl7.org/fhir/v2/0269" + }, + { + "uri" : "http://hl7.org/fhir/v2/0270" + }, + { + "uri" : "http://hl7.org/fhir/v2/0271" + }, + { + "uri" : "http://hl7.org/fhir/v2/0272" + }, + { + "uri" : "http://hl7.org/fhir/v2/0273" + }, + { + "uri" : "http://hl7.org/fhir/v2/0275" + }, + { + "uri" : "http://hl7.org/fhir/v2/0276" + }, + { + "uri" : "http://hl7.org/fhir/v2/0277" + }, + { + "uri" : "http://hl7.org/fhir/v2/0278" + }, + { + "uri" : "http://hl7.org/fhir/v2/0279" + }, + { + "uri" : "http://hl7.org/fhir/v2/0280" + }, + { + "uri" : "http://hl7.org/fhir/v2/0281" + }, + { + "uri" : "http://hl7.org/fhir/v2/0282" + }, + { + "uri" : "http://hl7.org/fhir/v2/0283" + }, + { + "uri" : "http://hl7.org/fhir/v2/0284" + }, + { + "uri" : "http://hl7.org/fhir/v2/0286" + }, + { + "uri" : "http://hl7.org/fhir/v2/0287" + }, + { + "uri" : "http://hl7.org/fhir/v2/0290" + }, + { + "uri" : "http://hl7.org/fhir/v2/0291" + }, + { + "uri" : "http://hl7.org/fhir/v2/0292" + }, + { + "uri" : "http://hl7.org/fhir/v2/0294" + }, + { + "uri" : "http://hl7.org/fhir/v2/0298" + }, + { + "uri" : "http://hl7.org/fhir/v2/0299" + }, + { + "uri" : "http://hl7.org/fhir/v2/0301" + }, + { + "uri" : "http://hl7.org/fhir/v2/0305" + }, + { + "uri" : "http://hl7.org/fhir/v2/0309" + }, + { + "uri" : "http://hl7.org/fhir/v2/0311" + }, + { + "uri" : "http://hl7.org/fhir/v2/0315" + }, + { + "uri" : "http://hl7.org/fhir/v2/0316" + }, + { + "uri" : "http://hl7.org/fhir/v2/0317" + }, + { + "uri" : "http://hl7.org/fhir/v2/0321" + }, + { + "uri" : "http://hl7.org/fhir/v2/0322" + }, + { + "uri" : "http://hl7.org/fhir/v2/0323" + }, + { + "uri" : "http://hl7.org/fhir/v2/0324" + }, + { + "uri" : "http://hl7.org/fhir/v2/0325" + }, + { + "uri" : "http://hl7.org/fhir/v2/0326" + }, + { + "uri" : "http://hl7.org/fhir/v2/0329" + }, + { + "uri" : "http://hl7.org/fhir/v2/0330" + }, + { + "uri" : "http://hl7.org/fhir/v2/0331" + }, + { + "uri" : "http://hl7.org/fhir/v2/0332" + }, + { + "uri" : "http://hl7.org/fhir/v2/0334" + }, + { + "uri" : "http://hl7.org/fhir/v2/0335" + }, + { + "uri" : "http://hl7.org/fhir/v2/0336" + }, + { + "uri" : "http://hl7.org/fhir/v2/0337" + }, + { + "uri" : "http://hl7.org/fhir/v2/0338" + }, + { + "uri" : "http://hl7.org/fhir/v2/0339" + }, + { + "uri" : "http://hl7.org/fhir/v2/0344" + }, + { + "uri" : "http://hl7.org/fhir/v2/0350" + }, + { + "uri" : "http://hl7.org/fhir/v2/0351" + }, + { + "uri" : "http://hl7.org/fhir/v2/0354" + }, + { + "uri" : "http://hl7.org/fhir/v2/0355" + }, + { + "uri" : "http://hl7.org/fhir/v2/0356" + }, + { + "uri" : "http://hl7.org/fhir/v2/0357" + }, + { + "uri" : "http://hl7.org/fhir/v2/0359" + }, + { + "uri" : "http://hl7.org/fhir/v2/0360/2.3.1" + }, + { + "uri" : "http://hl7.org/fhir/v2/0360/2.7" + }, + { + "uri" : "http://hl7.org/fhir/v2/0363" + }, + { + "uri" : "http://hl7.org/fhir/v2/0364" + }, + { + "uri" : "http://hl7.org/fhir/v2/0365" + }, + { + "uri" : "http://hl7.org/fhir/v2/0366" + }, + { + "uri" : "http://hl7.org/fhir/v2/0367" + }, + { + "uri" : "http://hl7.org/fhir/v2/0368" + }, + { + "uri" : "http://hl7.org/fhir/v2/0369" + }, + { + "uri" : "http://hl7.org/fhir/v2/0370" + }, + { + "uri" : "http://hl7.org/fhir/v2/0371" + }, + { + "uri" : "http://hl7.org/fhir/v2/0372" + }, + { + "uri" : "http://hl7.org/fhir/v2/0373" + }, + { + "uri" : "http://hl7.org/fhir/v2/0374" + }, + { + "uri" : "http://hl7.org/fhir/v2/0375" + }, + { + "uri" : "http://hl7.org/fhir/v2/0376" + }, + { + "uri" : "http://hl7.org/fhir/v2/0377" + }, + { + "uri" : "http://hl7.org/fhir/v2/0383" + }, + { + "uri" : "http://hl7.org/fhir/v2/0384" + }, + { + "uri" : "http://hl7.org/fhir/v2/0387" + }, + { + "uri" : "http://hl7.org/fhir/v2/0388" + }, + { + "uri" : "http://hl7.org/fhir/v2/0389" + }, + { + "uri" : "http://hl7.org/fhir/v2/0391/2.4" + }, + { + "uri" : "http://hl7.org/fhir/v2/0391/2.6" + }, + { + "uri" : "http://hl7.org/fhir/v2/0392" + }, + { + "uri" : "http://hl7.org/fhir/v2/0393" + }, + { + "uri" : "http://hl7.org/fhir/v2/0394" + }, + { + "uri" : "http://hl7.org/fhir/v2/0395" + }, + { + "uri" : "http://hl7.org/fhir/v2/0396" + }, + { + "uri" : "http://hl7.org/fhir/v2/0397" + }, + { + "uri" : "http://hl7.org/fhir/v2/0398" + }, + { + "uri" : "http://hl7.org/fhir/v2/0401" + }, + { + "uri" : "http://hl7.org/fhir/v2/0402" + }, + { + "uri" : "http://hl7.org/fhir/v2/0403" + }, + { + "uri" : "http://hl7.org/fhir/v2/0404" + }, + { + "uri" : "http://hl7.org/fhir/v2/0406" + }, + { + "uri" : "http://hl7.org/fhir/v2/0409" + }, + { + "uri" : "http://hl7.org/fhir/v2/0411" + }, + { + "uri" : "http://hl7.org/fhir/v2/0415" + }, + { + "uri" : "http://hl7.org/fhir/v2/0416" + }, + { + "uri" : "http://hl7.org/fhir/v2/0417" + }, + { + "uri" : "http://hl7.org/fhir/v2/0418" + }, + { + "uri" : "http://hl7.org/fhir/v2/0421" + }, + { + "uri" : "http://hl7.org/fhir/v2/0422" + }, + { + "uri" : "http://hl7.org/fhir/v2/0423" + }, + { + "uri" : "http://hl7.org/fhir/v2/0424" + }, + { + "uri" : "http://hl7.org/fhir/v2/0425" + }, + { + "uri" : "http://hl7.org/fhir/v2/0426" + }, + { + "uri" : "http://hl7.org/fhir/v2/0427" + }, + { + "uri" : "http://hl7.org/fhir/v2/0428" + }, + { + "uri" : "http://hl7.org/fhir/v2/0429" + }, + { + "uri" : "http://hl7.org/fhir/v2/0430" + }, + { + "uri" : "http://hl7.org/fhir/v2/0431" + }, + { + "uri" : "http://hl7.org/fhir/v2/0432" + }, + { + "uri" : "http://hl7.org/fhir/v2/0433" + }, + { + "uri" : "http://hl7.org/fhir/v2/0434" + }, + { + "uri" : "http://hl7.org/fhir/v2/0435" + }, + { + "uri" : "http://hl7.org/fhir/v2/0436" + }, + { + "uri" : "http://hl7.org/fhir/v2/0437" + }, + { + "uri" : "http://hl7.org/fhir/v2/0438" + }, + { + "uri" : "http://hl7.org/fhir/v2/0440" + }, + { + "uri" : "http://hl7.org/fhir/v2/0441" + }, + { + "uri" : "http://hl7.org/fhir/v2/0442" + }, + { + "uri" : "http://hl7.org/fhir/v2/0443" + }, + { + "uri" : "http://hl7.org/fhir/v2/0444" + }, + { + "uri" : "http://hl7.org/fhir/v2/0445" + }, + { + "uri" : "http://hl7.org/fhir/v2/0450" + }, + { + "uri" : "http://hl7.org/fhir/v2/0455" + }, + { + "uri" : "http://hl7.org/fhir/v2/0456" + }, + { + "uri" : "http://hl7.org/fhir/v2/0457" + }, + { + "uri" : "http://hl7.org/fhir/v2/0459" + }, + { + "uri" : "http://hl7.org/fhir/v2/0460" + }, + { + "uri" : "http://hl7.org/fhir/v2/0465" + }, + { + "uri" : "http://hl7.org/fhir/v2/0466" + }, + { + "uri" : "http://hl7.org/fhir/v2/0468" + }, + { + "uri" : "http://hl7.org/fhir/v2/0469" + }, + { + "uri" : "http://hl7.org/fhir/v2/0470" + }, + { + "uri" : "http://hl7.org/fhir/v2/0472" + }, + { + "uri" : "http://hl7.org/fhir/v2/0473" + }, + { + "uri" : "http://hl7.org/fhir/v2/0474" + }, + { + "uri" : "http://hl7.org/fhir/v2/0475" + }, + { + "uri" : "http://hl7.org/fhir/v2/0477" + }, + { + "uri" : "http://hl7.org/fhir/v2/0478" + }, + { + "uri" : "http://hl7.org/fhir/v2/0480" + }, + { + "uri" : "http://hl7.org/fhir/v2/0482" + }, + { + "uri" : "http://hl7.org/fhir/v2/0483" + }, + { + "uri" : "http://hl7.org/fhir/v2/0484" + }, + { + "uri" : "http://hl7.org/fhir/v2/0485" + }, + { + "uri" : "http://hl7.org/fhir/v2/0487" + }, + { + "uri" : "http://hl7.org/fhir/v2/0488" + }, + { + "uri" : "http://hl7.org/fhir/v2/0489" + }, + { + "uri" : "http://hl7.org/fhir/v2/0490" + }, + { + "uri" : "http://hl7.org/fhir/v2/0491" + }, + { + "uri" : "http://hl7.org/fhir/v2/0492" + }, + { + "uri" : "http://hl7.org/fhir/v2/0493" + }, + { + "uri" : "http://hl7.org/fhir/v2/0494" + }, + { + "uri" : "http://hl7.org/fhir/v2/0495" + }, + { + "uri" : "http://hl7.org/fhir/v2/0496" + }, + { + "uri" : "http://hl7.org/fhir/v2/0497" + }, + { + "uri" : "http://hl7.org/fhir/v2/0498" + }, + { + "uri" : "http://hl7.org/fhir/v2/0499" + }, + { + "uri" : "http://hl7.org/fhir/v2/0500" + }, + { + "uri" : "http://hl7.org/fhir/v2/0501" + }, + { + "uri" : "http://hl7.org/fhir/v2/0502" + }, + { + "uri" : "http://hl7.org/fhir/v2/0503" + }, + { + "uri" : "http://hl7.org/fhir/v2/0504" + }, + { + "uri" : "http://hl7.org/fhir/v2/0505" + }, + { + "uri" : "http://hl7.org/fhir/v2/0506" + }, + { + "uri" : "http://hl7.org/fhir/v2/0507" + }, + { + "uri" : "http://hl7.org/fhir/v2/0508" + }, + { + "uri" : "http://hl7.org/fhir/v2/0510" + }, + { + "uri" : "http://hl7.org/fhir/v2/0511" + }, + { + "uri" : "http://hl7.org/fhir/v2/0513" + }, + { + "uri" : "http://hl7.org/fhir/v2/0514" + }, + { + "uri" : "http://hl7.org/fhir/v2/0516" + }, + { + "uri" : "http://hl7.org/fhir/v2/0517" + }, + { + "uri" : "http://hl7.org/fhir/v2/0518" + }, + { + "uri" : "http://hl7.org/fhir/v2/0520" + }, + { + "uri" : "http://hl7.org/fhir/v2/0523" + }, + { + "uri" : "http://hl7.org/fhir/v2/0524" + }, + { + "uri" : "http://hl7.org/fhir/v2/0527" + }, + { + "uri" : "http://hl7.org/fhir/v2/0528" + }, + { + "uri" : "http://hl7.org/fhir/v2/0529" + }, + { + "uri" : "http://hl7.org/fhir/v2/0530" + }, + { + "uri" : "http://hl7.org/fhir/v2/0534" + }, + { + "uri" : "http://hl7.org/fhir/v2/0535" + }, + { + "uri" : "http://hl7.org/fhir/v2/0536" + }, + { + "uri" : "http://hl7.org/fhir/v2/0538" + }, + { + "uri" : "http://hl7.org/fhir/v2/0540" + }, + { + "uri" : "http://hl7.org/fhir/v2/0544" + }, + { + "uri" : "http://hl7.org/fhir/v2/0547" + }, + { + "uri" : "http://hl7.org/fhir/v2/0548" + }, + { + "uri" : "http://hl7.org/fhir/v2/0550" + }, + { + "uri" : "http://hl7.org/fhir/v2/0553" + }, + { + "uri" : "http://hl7.org/fhir/v2/0554" + }, + { + "uri" : "http://hl7.org/fhir/v2/0555" + }, + { + "uri" : "http://hl7.org/fhir/v2/0556" + }, + { + "uri" : "http://hl7.org/fhir/v2/0557" + }, + { + "uri" : "http://hl7.org/fhir/v2/0558" + }, + { + "uri" : "http://hl7.org/fhir/v2/0559" + }, + { + "uri" : "http://hl7.org/fhir/v2/0561" + }, + { + "uri" : "http://hl7.org/fhir/v2/0562" + }, + { + "uri" : "http://hl7.org/fhir/v2/0564" + }, + { + "uri" : "http://hl7.org/fhir/v2/0565" + }, + { + "uri" : "http://hl7.org/fhir/v2/0566" + }, + { + "uri" : "http://hl7.org/fhir/v2/0569" + }, + { + "uri" : "http://hl7.org/fhir/v2/0570" + }, + { + "uri" : "http://hl7.org/fhir/v2/0571" + }, + { + "uri" : "http://hl7.org/fhir/v2/0572" + }, + { + "uri" : "http://hl7.org/fhir/v2/0615" + }, + { + "uri" : "http://hl7.org/fhir/v2/0616" + }, + { + "uri" : "http://hl7.org/fhir/v2/0617" + }, + { + "uri" : "http://hl7.org/fhir/v2/0618" + }, + { + "uri" : "http://hl7.org/fhir/v2/0625" + }, + { + "uri" : "http://hl7.org/fhir/v2/0634" + }, + { + "uri" : "http://hl7.org/fhir/v2/0642" + }, + { + "uri" : "http://hl7.org/fhir/v2/0651" + }, + { + "uri" : "http://hl7.org/fhir/v2/0653" + }, + { + "uri" : "http://hl7.org/fhir/v2/0657" + }, + { + "uri" : "http://hl7.org/fhir/v2/0659" + }, + { + "uri" : "http://hl7.org/fhir/v2/0667" + }, + { + "uri" : "http://hl7.org/fhir/v2/0669" + }, + { + "uri" : "http://hl7.org/fhir/v2/0682" + }, + { + "uri" : "http://hl7.org/fhir/v2/0702" + }, + { + "uri" : "http://hl7.org/fhir/v2/0717" + }, + { + "uri" : "http://hl7.org/fhir/v2/0719" + }, + { + "uri" : "http://hl7.org/fhir/v2/0725" + }, + { + "uri" : "http://hl7.org/fhir/v2/0728" + }, + { + "uri" : "http://hl7.org/fhir/v2/0731" + }, + { + "uri" : "http://hl7.org/fhir/v2/0734" + }, + { + "uri" : "http://hl7.org/fhir/v2/0739" + }, + { + "uri" : "http://hl7.org/fhir/v2/0742" + }, + { + "uri" : "http://hl7.org/fhir/v2/0749" + }, + { + "uri" : "http://hl7.org/fhir/v2/0755" + }, + { + "uri" : "http://hl7.org/fhir/v2/0757" + }, + { + "uri" : "http://hl7.org/fhir/v2/0759" + }, + { + "uri" : "http://hl7.org/fhir/v2/0761" + }, + { + "uri" : "http://hl7.org/fhir/v2/0763" + }, + { + "uri" : "http://hl7.org/fhir/v2/0776" + }, + { + "uri" : "http://hl7.org/fhir/v2/0778" + }, + { + "uri" : "http://hl7.org/fhir/v2/0790" + }, + { + "uri" : "http://hl7.org/fhir/v2/0793" + }, + { + "uri" : "http://hl7.org/fhir/v2/0806" + }, + { + "uri" : "http://hl7.org/fhir/v2/0818" + }, + { + "uri" : "http://hl7.org/fhir/v2/0834" + }, + { + "uri" : "http://hl7.org/fhir/v2/0868" + }, + { + "uri" : "http://hl7.org/fhir/v2/0871" + }, + { + "uri" : "http://hl7.org/fhir/v2/0881" + }, + { + "uri" : "http://hl7.org/fhir/v2/0882" + }, + { + "uri" : "http://hl7.org/fhir/v2/0894" + }, + { + "uri" : "http://hl7.org/fhir/v2/0895" + }, + { + "uri" : "http://hl7.org/fhir/v2/0904" + }, + { + "uri" : "http://hl7.org/fhir/v2/0905" + }, + { + "uri" : "http://hl7.org/fhir/v2/0906" + }, + { + "uri" : "http://hl7.org/fhir/v2/0907" + }, + { + "uri" : "http://hl7.org/fhir/v2/0909" + }, + { + "uri" : "http://hl7.org/fhir/v2/0912" + }, + { + "uri" : "http://hl7.org/fhir/v2/0914" + }, + { + "uri" : "http://hl7.org/fhir/v2/0916" + }, + { + "uri" : "http://hl7.org/fhir/v2/0917" + }, + { + "uri" : "http://hl7.org/fhir/v2/0918" + }, + { + "uri" : "http://hl7.org/fhir/v2/0919" + }, + { + "uri" : "http://hl7.org/fhir/v2/0920" + }, + { + "uri" : "http://hl7.org/fhir/v2/0921" + }, + { + "uri" : "http://hl7.org/fhir/v2/0922" + }, + { + "uri" : "http://hl7.org/fhir/v2/0923" + }, + { + "uri" : "http://hl7.org/fhir/v2/0924" + }, + { + "uri" : "http://hl7.org/fhir/v2/0925" + }, + { + "uri" : "http://hl7.org/fhir/v2/0926" + }, + { + "uri" : "http://hl7.org/fhir/v2/0927" + }, + { + "uri" : "http://hl7.org/fhir/v2/0933" + }, + { + "uri" : "http://hl7.org/fhir/v2/0935" + }, + { + "uri" : "http://hl7.org/fhir/v2/4000" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementCondition" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementDetailCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementDetailType" + }, + { + "uri" : "http://hl7.org/fhir/v3/AcknowledgementType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActExposureLevelCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActInvoiceElementModifier" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActMood" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActReason" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipCheckpoint" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipJoin" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipSplit" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipSubset" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActRelationshipType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActSite" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActUncertainty" + }, + { + "uri" : "http://hl7.org/fhir/v3/ActUSPrivacyLaw" + }, + { + "uri" : "http://hl7.org/fhir/v3/AddressPartType" + }, + { + "uri" : "http://hl7.org/fhir/v3/AddressUse" + }, + { + "uri" : "http://hl7.org/fhir/v3/AdministrativeGender" + }, + { + "uri" : "http://hl7.org/fhir/v3/AmericanIndianAlaskaNativeLanguages" + }, + { + "uri" : "http://hl7.org/fhir/v3/Calendar" + }, + { + "uri" : "http://hl7.org/fhir/v3/CalendarCycle" + }, + { + "uri" : "http://hl7.org/fhir/v3/CalendarType" + }, + { + "uri" : "http://hl7.org/fhir/v3/Charset" + }, + { + "uri" : "http://hl7.org/fhir/v3/CodingRationale" + }, + { + "uri" : "http://hl7.org/fhir/v3/CommunicationFunctionType" + }, + { + "uri" : "http://hl7.org/fhir/v3/CompressionAlgorithm" + }, + { + "uri" : "http://hl7.org/fhir/v3/Confidentiality" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContainerCap" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContainerSeparator" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContentProcessingMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ContextControl" + }, + { + "uri" : "http://hl7.org/fhir/v3/DataOperation" + }, + { + "uri" : "http://hl7.org/fhir/v3/DeviceAlertLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/DocumentCompletion" + }, + { + "uri" : "http://hl7.org/fhir/v3/DocumentStorage" + }, + { + "uri" : "http://hl7.org/fhir/v3/EducationLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/EmployeeJobClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/EncounterAdmissionSource" + }, + { + "uri" : "http://hl7.org/fhir/v3/EncounterSpecialCourtesy" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityDeterminer" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityHandling" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartQualifier" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartQualifierR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartType" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNamePartTypeR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNameUse" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityNameUseR2" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityRisk" + }, + { + "uri" : "http://hl7.org/fhir/v3/EntityStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/EquipmentAlertLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/Ethnicity" + }, + { + "uri" : "http://hl7.org/fhir/v3/ExposureMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/GenderStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/GTSAbbreviation" + }, + { + "uri" : "http://hl7.org/fhir/v3/hl7Realm" + }, + { + "uri" : "http://hl7.org/fhir/v3/HL7UpdateMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/hl7V3Conformance" + }, + { + "uri" : "http://hl7.org/fhir/v3/HtmlLinkType" + }, + { + "uri" : "http://hl7.org/fhir/v3/IdentifierReliability" + }, + { + "uri" : "http://hl7.org/fhir/v3/IdentifierScope" + }, + { + "uri" : "http://hl7.org/fhir/v3/IntegrityCheckAlgorithm" + }, + { + "uri" : "http://hl7.org/fhir/v3/LanguageAbilityMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/LanguageAbilityProficiency" + }, + { + "uri" : "http://hl7.org/fhir/v3/LivingArrangement" + }, + { + "uri" : "http://hl7.org/fhir/v3/LocalMarkupIgnore" + }, + { + "uri" : "http://hl7.org/fhir/v3/LocalRemoteControlState" + }, + { + "uri" : "http://hl7.org/fhir/v3/ManagedParticipationStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/MapRelationship" + }, + { + "uri" : "http://hl7.org/fhir/v3/MaritalStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/MessageWaitingPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/ModifyIndicator" + }, + { + "uri" : "http://hl7.org/fhir/v3/NullFlavor" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationInterpretation" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationMethod" + }, + { + "uri" : "http://hl7.org/fhir/v3/ObservationValue" + }, + { + "uri" : "http://hl7.org/fhir/v3/orderableDrugForm" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationFunction" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationSignature" + }, + { + "uri" : "http://hl7.org/fhir/v3/ParticipationType" + }, + { + "uri" : "http://hl7.org/fhir/v3/PatientImportance" + }, + { + "uri" : "http://hl7.org/fhir/v3/PaymentTerms" + }, + { + "uri" : "http://hl7.org/fhir/v3/PersonDisabilityType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProbabilityDistributionType" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProcessingID" + }, + { + "uri" : "http://hl7.org/fhir/v3/ProcessingMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryParameterValue" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryPriority" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryRequestLimit" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryResponse" + }, + { + "uri" : "http://hl7.org/fhir/v3/QueryStatusCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/Race" + }, + { + "uri" : "http://hl7.org/fhir/v3/RelationalOperator" + }, + { + "uri" : "http://hl7.org/fhir/v3/RelationshipConjunction" + }, + { + "uri" : "http://hl7.org/fhir/v3/ReligiousAffiliation" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseLevel" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseModality" + }, + { + "uri" : "http://hl7.org/fhir/v3/ResponseMode" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleClass" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleLinkStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleLinkType" + }, + { + "uri" : "http://hl7.org/fhir/v3/RoleStatus" + }, + { + "uri" : "http://hl7.org/fhir/v3/RouteOfAdministration" + }, + { + "uri" : "http://hl7.org/fhir/v3/Sequencing" + }, + { + "uri" : "http://hl7.org/fhir/v3/SetOperator" + }, + { + "uri" : "http://hl7.org/fhir/v3/SpecimenType" + }, + { + "uri" : "http://hl7.org/fhir/v3/substanceAdminSubstitution" + }, + { + "uri" : "http://hl7.org/fhir/v3/SubstitutionCondition" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellHorizontalAlign" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellScope" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableCellVerticalAlign" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableFrame" + }, + { + "uri" : "http://hl7.org/fhir/v3/TableRules" + }, + { + "uri" : "http://hl7.org/fhir/v3/TargetAwareness" + }, + { + "uri" : "http://hl7.org/fhir/v3/TelecommunicationCapabilities" + }, + { + "uri" : "http://hl7.org/fhir/v3/TimingEvent" + }, + { + "uri" : "http://hl7.org/fhir/v3/TransmissionRelationshipTypeCode" + }, + { + "uri" : "http://hl7.org/fhir/v3/TribalEntityUS" + }, + { + "uri" : "http://hl7.org/fhir/v3/VaccineManufacturer" + }, + { + "uri" : "http://hl7.org/fhir/vaccination-protocol-dose-status" + }, + { + "uri" : "http://hl7.org/fhir/vaccination-protocol-dose-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/variant-state" + }, + { + "uri" : "http://hl7.org/fhir/versioning-policy" + }, + { + "uri" : "http://hl7.org/fhir/vision-base-codes" + }, + { + "uri" : "http://hl7.org/fhir/vision-eye-codes" + }, + { + "uri" : "http://hl7.org/fhir/w3c-provenance-activity-type" + }, + { + "uri" : "http://loinc.org" + }, + { + "uri" : "http://nucc.org/provider-taxonomy" + }, + { + "uri" : "http://radlex.org" + }, + { + "uri" : "http://snomed.info/sct" + }, + { + "uri" : "http://standardterms.edqm.eu" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/action-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/activity-definition-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-error" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/admit-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-assess" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-severity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allerg-intol-substance-exp-risk" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/applicability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/attribute-estimate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-entity-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/basic-resource-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-network" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-term" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-unit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/can-push-updates" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/catalogType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-rating" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-rating" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/characteristic-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chargeitem-billingcodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/choice-list-orientation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chromosome-human" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-exception" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claimcareteamrole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claiminformationcategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/codesystem-altcode-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/common-tags" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-topic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composite-measure-scoring" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composition-altcode-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conceptdomains" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-clinical" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-ver-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conformance-expectation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentaction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentcategorycodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentpolicycodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentscope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentverification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contactentity-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/container-cap" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-content-derivative" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-data-meaning" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractaction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractactorrole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsubtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/copy-number-event" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-class" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-copay-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-selfpay" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverageeligibilityresponse-ex-auth-support" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/data-absent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-topic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-use" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/device-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diagnosis-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diet" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/directness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/discharge-disposition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dose-rate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-special-arrangements" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-subject-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-payload-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/entformula-additive" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/episodeofcare-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-quality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-benefitcategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-claimsubtype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-coverage-financial-exception" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosis-on-admission" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosisrelatedgroup" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosistype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-payee-resource-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-paymenttype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-procedure-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-programcode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-providerqualification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-relatedclaimrelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-revenue-center" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-serviceplace" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-tooth" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-USCLS" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-parameter-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-processing-rule" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/extra-security-role-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/failure-action" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/FDI-surface" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskcode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskinputtype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/flag-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/forms-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/fundsreserve" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-acceptance-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-achievement" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-priority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-relationship-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/guide-parameter-code" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/handling-condition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/history-absent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-work-group" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7TermMaintInfra" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/icd-o-3" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-funding-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-origin" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-recommendation-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-subpotent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/implantStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-plan-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/library-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-empty-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-order" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/location-physical-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/match-grade" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-data-usage" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-improvement-notation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-population" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-scoring" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/med-admin-perform-function" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-usage-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-performer-function" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-characteristic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-package-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-reasons-encounter" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/missingtoothreason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/modifiers" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/name-assembly-order" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/need" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/nutrition-intake-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/object-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-statistics" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/operation-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/parameter-group" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/participant-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payeetype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-adjustment-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/paymentstatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/plan-definition-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/practitioner-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/primary-source-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/processpriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/program" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/push-type-available" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/question-max-occurs" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/questionnaire-usage-mode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reaction-event-certainty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reason-medication-given" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/recommendation-strength" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/referencerange-meaning" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/rejection-criteria" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-objective-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-phase" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-prim-purp-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-reason-stopped" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-milestone" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-security-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-type-link" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-probability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/security-source-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-provision-conditions" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-referral-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/smart-capabilities" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/special-values" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/standards-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/state-change-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/statistic-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/study-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscriber-relationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-channel-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-error" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-status-at-event" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-tag" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/substance-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-item-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supplyrequest-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/synthesis-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-operation-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-origin-types" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/triggerEventID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/usage-context-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/utg-concept-properties" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0001" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0002" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0003" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0004" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0005" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0007" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0008" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0009" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0012" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0017" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0027" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0033" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0034" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0038" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0048" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0052" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0061" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0062" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0063" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0065" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0066" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0069" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0070" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0074" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0076" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0080" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0083" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0085" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0091" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0092" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0098" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0100" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0102" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0103" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0104" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0105" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0106" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0107" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0108" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0109" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0116" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0119" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0121" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0122" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0123" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0124" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0126" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0127" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0128" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0130" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0131" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0133" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0135" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0137" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0140" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0142" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0144" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0145" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0146" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0147" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0148" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0149" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0150" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0155" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0156" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0157" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0158" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0159" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0160" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0161" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0162" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0163" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0164" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0165" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0166" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0167" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0168" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0169" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0170" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0173" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0174" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0175" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0177" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0178" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0179" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0180" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0181" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0183" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0185" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0187" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0189" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0190" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0191" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0193" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0200" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0201" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0202" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0203" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0204" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0205" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0206" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0207" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0208" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0209" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0210" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0211" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0213" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0214" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0215" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0216" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0217" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0220" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0223" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0224" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0225" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0227" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0228" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0230" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0231" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0232" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0234" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0235" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0236" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0237" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0238" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0239" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0240" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0241" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0242" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0243" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0247" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0248" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0250" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0251" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0252" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0253" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0254" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0255" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0256" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0257" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0258" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0260" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0261" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0262" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0263" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0265" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0267" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0268" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0269" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0270" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0271" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0272" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0273" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0275" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0276" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0277" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0278" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0279" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0280" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0281" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0282" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0283" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0284" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0286" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0287" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0290" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0291" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0294" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0298" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0299" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0301" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0305" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0309" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0311" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0315" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0316" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0317" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0321" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0322" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0323" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0324" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0325" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0326" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0329" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0330" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0331" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0332" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0334" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0335" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0336" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0337" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0339" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0344" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0353" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0354" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0355" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0356" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0357" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0359" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0364" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0365" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0366" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0367" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0368" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0369" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0370" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0371" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0372" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0373" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0374" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0375" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0376" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0377" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0383" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0384" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0387" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0388" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0389" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0392" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0393" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0394" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0395" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0396" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0397" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0398" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0401" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0402" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0403" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0404" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0406" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0409" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0415" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0416" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0417" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0418" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0421" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0422" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0423" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0424" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0425" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0426" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0427" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0428" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0429" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0430" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0431" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0432" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0433" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0434" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0435" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0436" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0437" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0438" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0440" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0441" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0442" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0443" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0444" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0445" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0450" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0457" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0465" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0466" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0468" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0469" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0470" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0472" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0473" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0474" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0475" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0477" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0478" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0480" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0482" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0483" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0484" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0485" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0487" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0488" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0489" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0490" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0491" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0492" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0493" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0494" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0495" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0496" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0497" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0498" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0499" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0500" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0501" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0502" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0503" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0504" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0505" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0506" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0507" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0508" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0510" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0511" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0513" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0514" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0516" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0517" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0518" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0520" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0523" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0524" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0527" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0528" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0529" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0530" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0532" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0534" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0535" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0536" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0538" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0540" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0544" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0547" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0548" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0550" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0553" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0554" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0555" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0556" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0557" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0558" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0559" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0560" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0561" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0562" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0564" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0565" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0566" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0569" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0570" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0571" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0572" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0615" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0616" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0617" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0618" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0625" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0634" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0642" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0651" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0653" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0657" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0659" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0667" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0669" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0682" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0702" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0717" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0728" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0731" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0734" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0739" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0742" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0749" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0755" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0757" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0759" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0761" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0763" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0776" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0778" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0790" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0793" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0806" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0818" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0834" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0868" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0871" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0881" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0882" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0894" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0904" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0905" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0906" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0907" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0909" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0912" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0914" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0916" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0917" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0918" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0919" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0920" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0921" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0922" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0923" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0924" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0925" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0926" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0927" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0933" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0935" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0936" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0937" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0938" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0939" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0940" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0942" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0945" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0946" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0948" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0949" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0950" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0951" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0970" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0971" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-4000" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-tables" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActExposureLevelCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActInvoiceElementModifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActMood" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActReason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipCheckpoint" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipJoin" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSplit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSubset" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActSite" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUncertainty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUSPrivacyLaw" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressPartType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AmericanIndianAlaskaNativeLanguages" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Calendar" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarCycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Charset" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystem" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystemType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodingRationale" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CommunicationFunctionType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CompressionAlgorithm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptCodeRelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptGenerality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptProperty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerCap" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerSeparator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContentProcessingMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContextControl" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Country" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Currency" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataOperation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Dentition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DeviceAlertLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentCompletion" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentStorage" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EditStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EducationLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EmployeeJobClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAccident" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAcuity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAdmissionSource" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterReferralSource" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterSpecialCourtesy" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityDeterminer" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityHandling" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifierR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartTypeR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUseR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityRisk" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EquipmentAlertLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Ethnicity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ExposureMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GenderStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HealthcareProviderTaxonomyHIPAA" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ApprovalStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7CMETAttribution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7CommitteeIDInRIM" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ConformanceInclusion" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ContextConductionStyle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DefinedRoseProperty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DocumentFormatCodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSVersionCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingDomain" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSection" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSubSection" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7Realm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7StandardVersionCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7UpdateMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7V3Conformance" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7VoteResolution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HtmlLinkType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierReliability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierScope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IntegrityCheckAlgorithm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-1retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-2retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-3retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-iso4217-HL7" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LivingArrangement" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalMarkupIgnore" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalRemoteControlState" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManagedParticipationStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MapRelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialForm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFAttributeType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdMetSourceType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdRowType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfRmimRowType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFSubjectAreaPrefix" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-mediaType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageWaitingPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ModifyIndicator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationCategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationMethod" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-OrganizationNameType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParameterizedDataType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationSignature" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PatientImportance" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PaymentTerms" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PersonDisabilityType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PostalAddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProbabilityDistributionType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryParameterValue" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryQuantityUnit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryRequestLimit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryResponse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryStatusCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Race" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationalOperator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationshipConjunction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseModality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Sequencing" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SetOperator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SpecimenType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-styleType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-substanceAdminSubstitution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SubstitutionCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellHorizontalAlign" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellScope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellVerticalAlign" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableFrame" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableRules" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TargetAwareness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationAddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationCapabilities" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TimingEvent" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TransmissionRelationshipTypeCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-URLScheme" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineManufacturer" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VocabularyDomainQualifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-WorkClassificationODH" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-process" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variable-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variant-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/verificationresult-communication-method" + }, + { + "uri" : "http://unitsofmeasure.org" + }, + { + "uri" : "http://unstats.un.org/unsd/methods/m49/m49.htm" + }, + { + "uri" : "http://varnomen.hgvs.org" + }, + { + "uri" : "http://www.ada.org/snodent" + }, + { + "uri" : "http://www.ama-assn.org/go/cpt" + }, + { + "uri" : "http://www.hl7.org/fhir/contractaction" + }, + { + "uri" : "http://www.hl7.org/fhir/contractactorrole" + }, + { + "uri" : "http://www.hl7.org/fhir/contractsignertypecodes" + }, + { + "uri" : "http://www.nlm.nih.gov/research/umls/rxnorm" + }, + { + "uri" : "http://www.whocc.no/atc" + }, + { + "uri" : "https://www.cms.gov/Medicare/Medicare-Fee-for-Service-Payment/HospitalAcqCond/Coding" + }, + { + "uri" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats" + }, + { + "uri" : "https://www.iana.org/time-zones" + }, + { + "uri" : "https://www.usps.com/" + }, + { + "uri" : "urn:ietf:bcp:13" + }, + { + "uri" : "urn:ietf:bcp:47" + }, + { + "uri" : "urn:ietf:rfc:3986" + }, + { + "uri" : "urn:iso-astm:E1762-95:2013" + }, + { + "uri" : "urn:iso:std:iso:11073:10101" + }, + { + "uri" : "urn:iso:std:iso:3166" + }, + { + "uri" : "urn:iso:std:iso:3166:-2" + }, + { + "uri" : "urn:iso:std:iso:4217" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1001.101.104.16592" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1005.17" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.2.9.6.2.7" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.3.1937.98.5.8" + }], + "expansion" : { + "parameter" : [{ + "name" : "cache-id" + }, + { + "name" : "tx-resource" + }, + { + "name" : "_incomplete" + }, + { + "name" : "abstract" + }, + { + "name" : "activeOnly" + }, + { + "name" : "check-system-version" + }, + { + "name" : "count" + }, + { + "name" : "default-to-latest-version" + }, + { + "name" : "displayLanguage" + }, + { + "name" : "excludeNested" + }, + { + "name" : "excludeNotForUI" + }, + { + "name" : "excludePostCoordinated" + }, + { + "name" : "force-system-version" + }, + { + "name" : "inactive" + }, + { + "name" : "includeAlternateCodes" + }, + { + "name" : "includeDefinition" + }, + { + "name" : "includeDesignations" + }, + { + "name" : "incomplete-ok" + }, + { + "name" : "limitedExpansion" + }, + { + "name" : "mode" + }, + { + "name" : "no-cache" + }, + { + "name" : "offset" + }, + { + "name" : "profile" + }, + { + "name" : "property" + }, + { + "name" : "system-version" + }, + { + "name" : "valueSetMode" + }] + } +} \ No newline at end of file diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/all-systems.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/all-systems.cache index e3e229430..b9dbc0c77 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/all-systems.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/all-systems.cache @@ -521,7 +521,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -549,7 +548,6 @@ v: { "code" : "image/jpg", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -577,7 +575,6 @@ v: { "code" : "image/jpg", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -605,7 +602,6 @@ v: { "code" : "application/pdf", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -633,7 +629,6 @@ v: { "code" : "application/pdf", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -654,7 +649,6 @@ v: { "code" : "de-CH", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -720,3 +714,29 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "urn:iso:std:iso:3166", + "code" : "US", + "display" : "United States of America" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "3.0.2", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "United States of America", + "code" : "US", + "system" : "urn:iso:std:iso:3166", + "version" : "2018", + "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/servers.ini b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/servers.ini index a0cb37f84..374883622 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/servers.ini +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/servers.ini @@ -1,3 +1,4 @@ [servers] tx-dev.fhir.org.r3 = http://tx-dev.fhir.org/r3 +local.fhir.org.r3 = http://local.fhir.org/r3 diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/snomed.cache index 2d71ee595..5b2dabc24 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/snomed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/snomed.cache @@ -1108,7 +1108,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1132,7 +1131,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1159,7 +1157,6 @@ v: { "error" : "Wrong Display Name 'Laboratory test finding (finding)' for http://snomed.info/sct#118246004. Valid display is one of 4 choices: 'Laboratory test finding', 'Laboratory test observations', 'Laboratory test result' or 'Laboratory test finding (navigational concept)' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1203,7 +1200,6 @@ v: { "error" : "Wrong Display Name 'Chemistry' for http://snomed.info/sct#275711006. Valid display is one of 2 choices: 'Serum chemistry test' or 'Serum chemistry test (procedure)' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1244,7 +1240,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1268,7 +1263,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1292,7 +1286,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1316,7 +1309,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1340,7 +1332,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1364,7 +1355,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1388,7 +1378,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1413,7 +1402,6 @@ v: { "error" : "Unknown code '823681000000100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1455,7 +1443,6 @@ v: { "error" : "Unknown code '886921000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1497,7 +1484,6 @@ v: { "error" : "Unknown code '1077881000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1539,7 +1525,6 @@ v: { "error" : "Unknown code '887181000000106' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1581,7 +1566,6 @@ v: { "error" : "Unknown code '887161000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1623,7 +1607,6 @@ v: { "error" : "Unknown code '1052891000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1665,7 +1648,6 @@ v: { "error" : "Unknown code '715851000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1707,7 +1689,6 @@ v: { "error" : "Unknown code '717121000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1749,7 +1730,6 @@ v: { "error" : "Unknown code '933361000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1791,7 +1771,6 @@ v: { "error" : "Unknown code '887171000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1833,7 +1812,6 @@ v: { "error" : "Unknown code '887201000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1875,7 +1853,6 @@ v: { "error" : "Unknown code '1052951000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1917,7 +1894,6 @@ v: { "error" : "Unknown code '886731000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1959,7 +1935,6 @@ v: { "error" : "Unknown code '887231000000104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -2001,7 +1976,6 @@ v: { "error" : "Unknown code '9290701000001101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -2042,7 +2016,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -2066,7 +2039,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -2089,7 +2061,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -2113,7 +2084,6 @@ v: { "error" : "Unknown code '11181000146103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -2137,3 +2107,61 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "17621005", + "display" : "Normal (qualifier value)" + }] +}, "url": "http://hl7.org/fhir/ValueSet/security-labels", "version": "3.0.2", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "severity" : "error", + "error" : "No valid coding was found for the value set 'http://hl7.org/fhir/ValueSet/security-labels|3.0.2'; The provided code 'http://snomed.info/sct#17621005 ('Normal (qualifier value)')' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|3.0.2'", + "class" : "UNKNOWN", + "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r3" + }], + "severity" : "information", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "this-code-not-in-vs" + }], + "text" : "The provided code 'http://snomed.info/sct#17621005 ('Normal (qualifier value)')' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|3.0.2'" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }, + { + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r3" + }], + "severity" : "error", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-in-vs" + }], + "text" : "No valid coding was found for the value set 'http://hl7.org/fhir/ValueSet/security-labels|3.0.2'" + } + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.local.fhir.org.r4.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.local.fhir.org.r4.cache new file mode 100644 index 000000000..cbc071b89 --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.local.fhir.org.r4.cache @@ -0,0 +1,3751 @@ +{ + "resourceType" : "TerminologyCapabilities", + "id" : "FhirServer", + "url" : "http://localhost/r4/metadata", + "version" : "2.0.0", + "name" : "FHIR Reference Server Teminology Capability Statement", + "status" : "active", + "date" : "2024-09-24T13:40:06.450Z", + "contact" : [{ + "telecom" : [{ + "system" : "other", + "value" : "http://healthintersections.com.au/" + }] + }], + "description" : "Standard Teminology Capability Statement for the open source Reference FHIR Server provided by Health Intersections", + "codeSystem" : [{ + "uri" : "http://cap.org/eCP" + }, + { + "uri" : "http://cds-hooks.hl7.org/CodeSystem/indicator" + }, + { + "uri" : "http://devices.fhir.org/CodeSystem/MDC-concept-status" + }, + { + "uri" : "http://devices.fhir.org/CodeSystem/MDC-designation-use" + }, + { + "uri" : "http://dicom.nema.org/resources/ontology/DCM" + }, + { + "uri" : "http://fdasis.nlm.nih.gov" + }, + { + "uri" : "http://fhir.ohdsi.org/CodeSystem/concepts" + }, + { + "uri" : "http://healthit.gov/nhin/purposeofuse" + }, + { + "uri" : "http://hl7.org/fhir/abstract-types" + }, + { + "uri" : "http://hl7.org/fhir/account-status" + }, + { + "uri" : "http://hl7.org/fhir/action-cardinality-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-condition-kind" + }, + { + "uri" : "http://hl7.org/fhir/action-grouping-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/action-precheck-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/action-required-behavior" + }, + { + "uri" : "http://hl7.org/fhir/action-selection-behavior" + }, + { + "uri" : "http://hl7.org/fhir/additionalmaterials" + }, + { + "uri" : "http://hl7.org/fhir/address-type" + }, + { + "uri" : "http://hl7.org/fhir/address-use" + }, + { + "uri" : "http://hl7.org/fhir/administrative-gender" + }, + { + "uri" : "http://hl7.org/fhir/adverse-event-actuality" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-category" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-criticality" + }, + { + "uri" : "http://hl7.org/fhir/allergy-intolerance-type" + }, + { + "uri" : "http://hl7.org/fhir/animal-genderstatus" + }, + { + "uri" : "http://hl7.org/fhir/animal-species" + }, + { + "uri" : "http://hl7.org/fhir/appointmentstatus" + }, + { + "uri" : "http://hl7.org/fhir/assert-direction-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-operator-codes" + }, + { + "uri" : "http://hl7.org/fhir/assert-response-code-types" + }, + { + "uri" : "http://hl7.org/fhir/asset-availability" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-action" + }, + { + "uri" : "http://hl7.org/fhir/audit-event-outcome" + }, + { + "uri" : "http://hl7.org/fhir/binding-strength" + }, + { + "uri" : "http://hl7.org/fhir/bundle-type" + }, + { + "uri" : "http://hl7.org/fhir/capability-statement-kind" + }, + { + "uri" : "http://hl7.org/fhir/care-plan-activity-status" + }, + { + "uri" : "http://hl7.org/fhir/care-team-status" + }, + { + "uri" : "http://hl7.org/fhir/chargeitem-status" + }, + { + "uri" : "http://hl7.org/fhir/claim-use" + }, + { + "uri" : "http://hl7.org/fhir/code-search-support" + }, + { + "uri" : "http://hl7.org/fhir/codesystem-content-mode" + }, + { + "uri" : "http://hl7.org/fhir/codesystem-hierarchy-meaning" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/example" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medication-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medication-status" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medicationrequest-intent" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/medicationrequest-status" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/status" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/summary" + }, + { + "uri" : "http://hl7.org/fhir/CodeSystem/task-code" + }, + { + "uri" : "http://hl7.org/fhir/compartment-type" + }, + { + "uri" : "http://hl7.org/fhir/composition-attestation-mode" + }, + { + "uri" : "http://hl7.org/fhir/composition-status" + }, + { + "uri" : "http://hl7.org/fhir/concept-map-equivalence" + }, + { + "uri" : "http://hl7.org/fhir/concept-properties" + }, + { + "uri" : "http://hl7.org/fhir/concept-property-type" + }, + { + "uri" : "http://hl7.org/fhir/concept-subsumption-outcome" + }, + { + "uri" : "http://hl7.org/fhir/conceptmap-unmapped-mode" + }, + { + "uri" : "http://hl7.org/fhir/conditional-delete-status" + }, + { + "uri" : "http://hl7.org/fhir/conditional-read-status" + }, + { + "uri" : "http://hl7.org/fhir/consent-data-meaning" + }, + { + "uri" : "http://hl7.org/fhir/consent-provision-type" + }, + { + "uri" : "http://hl7.org/fhir/consent-state-codes" + }, + { + "uri" : "http://hl7.org/fhir/consentperformer" + }, + { + "uri" : "http://hl7.org/fhir/constraint-severity" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-system" + }, + { + "uri" : "http://hl7.org/fhir/contact-point-use" + }, + { + "uri" : "http://hl7.org/fhir/contract-action-status" + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-context" + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-scope" + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-subtype" + }, + { + "uri" : "http://hl7.org/fhir/contract-asset-type" + }, + { + "uri" : "http://hl7.org/fhir/contract-decision-mode" + }, + { + "uri" : "http://hl7.org/fhir/contract-definition-subtype" + }, + { + "uri" : "http://hl7.org/fhir/contract-definition-type" + }, + { + "uri" : "http://hl7.org/fhir/contract-expiration-type" + }, + { + "uri" : "http://hl7.org/fhir/contract-legalstate" + }, + { + "uri" : "http://hl7.org/fhir/contract-party-role" + }, + { + "uri" : "http://hl7.org/fhir/contract-publicationstatus" + }, + { + "uri" : "http://hl7.org/fhir/contract-scope" + }, + { + "uri" : "http://hl7.org/fhir/contract-security-category" + }, + { + "uri" : "http://hl7.org/fhir/contract-security-classification" + }, + { + "uri" : "http://hl7.org/fhir/contract-security-control" + }, + { + "uri" : "http://hl7.org/fhir/contract-status" + }, + { + "uri" : "http://hl7.org/fhir/contributor-type" + }, + { + "uri" : "http://hl7.org/fhir/data-types" + }, + { + "uri" : "http://hl7.org/fhir/days-of-week" + }, + { + "uri" : "http://hl7.org/fhir/definition-resource-types" + }, + { + "uri" : "http://hl7.org/fhir/detectedissue-severity" + }, + { + "uri" : "http://hl7.org/fhir/device-action" + }, + { + "uri" : "http://hl7.org/fhir/device-definition-status" + }, + { + "uri" : "http://hl7.org/fhir/device-nametype" + }, + { + "uri" : "http://hl7.org/fhir/device-statement-status" + }, + { + "uri" : "http://hl7.org/fhir/device-status" + }, + { + "uri" : "http://hl7.org/fhir/diagnostic-report-status" + }, + { + "uri" : "http://hl7.org/fhir/discriminator-type" + }, + { + "uri" : "http://hl7.org/fhir/document-mode" + }, + { + "uri" : "http://hl7.org/fhir/document-reference-status" + }, + { + "uri" : "http://hl7.org/fhir/document-relationship-type" + }, + { + "uri" : "http://hl7.org/fhir/eligibilityrequest-purpose" + }, + { + "uri" : "http://hl7.org/fhir/eligibilityresponse-purpose" + }, + { + "uri" : "http://hl7.org/fhir/encounter-location-status" + }, + { + "uri" : "http://hl7.org/fhir/encounter-status" + }, + { + "uri" : "http://hl7.org/fhir/endpoint-status" + }, + { + "uri" : "http://hl7.org/fhir/episode-of-care-status" + }, + { + "uri" : "http://hl7.org/fhir/event-capability-mode" + }, + { + "uri" : "http://hl7.org/fhir/event-resource-types" + }, + { + "uri" : "http://hl7.org/fhir/event-status" + }, + { + "uri" : "http://hl7.org/fhir/event-timing" + }, + { + "uri" : "http://hl7.org/fhir/ex-claimitemtype" + }, + { + "uri" : "http://hl7.org/fhir/ex-fdi" + }, + { + "uri" : "http://hl7.org/fhir/ex-onsettype" + }, + { + "uri" : "http://hl7.org/fhir/ex-oralprostho" + }, + { + "uri" : "http://hl7.org/fhir/ex-pharmaservice" + }, + { + "uri" : "http://hl7.org/fhir/ex-servicemodifier" + }, + { + "uri" : "http://hl7.org/fhir/ex-serviceproduct" + }, + { + "uri" : "http://hl7.org/fhir/ex-udi" + }, + { + "uri" : "http://hl7.org/fhir/examplescenario-actor-type" + }, + { + "uri" : "http://hl7.org/fhir/explanationofbenefit-status" + }, + { + "uri" : "http://hl7.org/fhir/exposure-state" + }, + { + "uri" : "http://hl7.org/fhir/expression-language" + }, + { + "uri" : "http://hl7.org/fhir/extension-context-type" + }, + { + "uri" : "http://hl7.org/fhir/extra-activity-type" + }, + { + "uri" : "http://hl7.org/fhir/feeding-device" + }, + { + "uri" : "http://hl7.org/fhir/FHIR-version" + }, + { + "uri" : "http://hl7.org/fhir/filter-operator" + }, + { + "uri" : "http://hl7.org/fhir/flag-priority-code" + }, + { + "uri" : "http://hl7.org/fhir/flag-status" + }, + { + "uri" : "http://hl7.org/fhir/fm-conditions" + }, + { + "uri" : "http://hl7.org/fhir/fm-status" + }, + { + "uri" : "http://hl7.org/fhir/gender-identity" + }, + { + "uri" : "http://hl7.org/fhir/goal-status" + }, + { + "uri" : "http://hl7.org/fhir/goal-status-reason" + }, + { + "uri" : "http://hl7.org/fhir/graph-compartment-rule" + }, + { + "uri" : "http://hl7.org/fhir/graph-compartment-use" + }, + { + "uri" : "http://hl7.org/fhir/group-measure" + }, + { + "uri" : "http://hl7.org/fhir/group-type" + }, + { + "uri" : "http://hl7.org/fhir/guidance-response-status" + }, + { + "uri" : "http://hl7.org/fhir/guide-page-generation" + }, + { + "uri" : "http://hl7.org/fhir/guide-parameter-code" + }, + { + "uri" : "http://hl7.org/fhir/history-status" + }, + { + "uri" : "http://hl7.org/fhir/http-operations" + }, + { + "uri" : "http://hl7.org/fhir/http-verb" + }, + { + "uri" : "http://hl7.org/fhir/identifier-use" + }, + { + "uri" : "http://hl7.org/fhir/identity-assuranceLevel" + }, + { + "uri" : "http://hl7.org/fhir/imagingstudy-status" + }, + { + "uri" : "http://hl7.org/fhir/intervention" + }, + { + "uri" : "http://hl7.org/fhir/invoice-priceComponentType" + }, + { + "uri" : "http://hl7.org/fhir/invoice-status" + }, + { + "uri" : "http://hl7.org/fhir/issue-severity" + }, + { + "uri" : "http://hl7.org/fhir/issue-type" + }, + { + "uri" : "http://hl7.org/fhir/item-type" + }, + { + "uri" : "http://hl7.org/fhir/knowledge-resource-types" + }, + { + "uri" : "http://hl7.org/fhir/language-preference-type" + }, + { + "uri" : "http://hl7.org/fhir/link-type" + }, + { + "uri" : "http://hl7.org/fhir/linkage-type" + }, + { + "uri" : "http://hl7.org/fhir/list-mode" + }, + { + "uri" : "http://hl7.org/fhir/list-status" + }, + { + "uri" : "http://hl7.org/fhir/location-mode" + }, + { + "uri" : "http://hl7.org/fhir/location-status" + }, + { + "uri" : "http://hl7.org/fhir/map-context-type" + }, + { + "uri" : "http://hl7.org/fhir/map-group-type-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-input-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-model-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-source-list-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-target-list-mode" + }, + { + "uri" : "http://hl7.org/fhir/map-transform" + }, + { + "uri" : "http://hl7.org/fhir/measure-report-status" + }, + { + "uri" : "http://hl7.org/fhir/measure-report-type" + }, + { + "uri" : "http://hl7.org/fhir/message-events" + }, + { + "uri" : "http://hl7.org/fhir/message-significance-category" + }, + { + "uri" : "http://hl7.org/fhir/messageheader-response-request" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-state" + }, + { + "uri" : "http://hl7.org/fhir/metric-calibration-type" + }, + { + "uri" : "http://hl7.org/fhir/metric-category" + }, + { + "uri" : "http://hl7.org/fhir/metric-color" + }, + { + "uri" : "http://hl7.org/fhir/metric-operational-status" + }, + { + "uri" : "http://hl7.org/fhir/name-use" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-identifier-type" + }, + { + "uri" : "http://hl7.org/fhir/namingsystem-type" + }, + { + "uri" : "http://hl7.org/fhir/narrative-status" + }, + { + "uri" : "http://hl7.org/fhir/network-type" + }, + { + "uri" : "http://hl7.org/fhir/note-type" + }, + { + "uri" : "http://hl7.org/fhir/observation-range-category" + }, + { + "uri" : "http://hl7.org/fhir/observation-status" + }, + { + "uri" : "http://hl7.org/fhir/operation-kind" + }, + { + "uri" : "http://hl7.org/fhir/operation-parameter-use" + }, + { + "uri" : "http://hl7.org/fhir/organization-role" + }, + { + "uri" : "http://hl7.org/fhir/orientation-type" + }, + { + "uri" : "http://hl7.org/fhir/participantrequired" + }, + { + "uri" : "http://hl7.org/fhir/participationstatus" + }, + { + "uri" : "http://hl7.org/fhir/permitted-data-type" + }, + { + "uri" : "http://hl7.org/fhir/practitioner-specialty" + }, + { + "uri" : "http://hl7.org/fhir/procedure-progress-status-code" + }, + { + "uri" : "http://hl7.org/fhir/product-category" + }, + { + "uri" : "http://hl7.org/fhir/product-status" + }, + { + "uri" : "http://hl7.org/fhir/product-storage-scale" + }, + { + "uri" : "http://hl7.org/fhir/property-representation" + }, + { + "uri" : "http://hl7.org/fhir/provenance-entity-role" + }, + { + "uri" : "http://hl7.org/fhir/provenance-participant-role" + }, + { + "uri" : "http://hl7.org/fhir/publication-status" + }, + { + "uri" : "http://hl7.org/fhir/quality-type" + }, + { + "uri" : "http://hl7.org/fhir/quantity-comparator" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-answers-status" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-display-category" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-enable-behavior" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-enable-operator" + }, + { + "uri" : "http://hl7.org/fhir/questionnaire-item-control" + }, + { + "uri" : "http://hl7.org/fhir/reaction-event-severity" + }, + { + "uri" : "http://hl7.org/fhir/reason-medication-not-given" + }, + { + "uri" : "http://hl7.org/fhir/reference-handling-policy" + }, + { + "uri" : "http://hl7.org/fhir/reference-version-rules" + }, + { + "uri" : "http://hl7.org/fhir/related-artifact-type" + }, + { + "uri" : "http://hl7.org/fhir/relation-type" + }, + { + "uri" : "http://hl7.org/fhir/relationship" + }, + { + "uri" : "http://hl7.org/fhir/remittance-outcome" + }, + { + "uri" : "http://hl7.org/fhir/report-action-result-codes" + }, + { + "uri" : "http://hl7.org/fhir/report-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/report-result-codes" + }, + { + "uri" : "http://hl7.org/fhir/report-status-codes" + }, + { + "uri" : "http://hl7.org/fhir/repository-type" + }, + { + "uri" : "http://hl7.org/fhir/request-intent" + }, + { + "uri" : "http://hl7.org/fhir/request-priority" + }, + { + "uri" : "http://hl7.org/fhir/request-resource-types" + }, + { + "uri" : "http://hl7.org/fhir/request-status" + }, + { + "uri" : "http://hl7.org/fhir/research-element-type" + }, + { + "uri" : "http://hl7.org/fhir/research-study-status" + }, + { + "uri" : "http://hl7.org/fhir/research-subject-status" + }, + { + "uri" : "http://hl7.org/fhir/resource-aggregation-mode" + }, + { + "uri" : "http://hl7.org/fhir/resource-slicing-rules" + }, + { + "uri" : "http://hl7.org/fhir/resource-status" + }, + { + "uri" : "http://hl7.org/fhir/resource-types" + }, + { + "uri" : "http://hl7.org/fhir/resource-validation-mode" + }, + { + "uri" : "http://hl7.org/fhir/response-code" + }, + { + "uri" : "http://hl7.org/fhir/restful-capability-mode" + }, + { + "uri" : "http://hl7.org/fhir/restful-interaction" + }, + { + "uri" : "http://hl7.org/fhir/search-comparator" + }, + { + "uri" : "http://hl7.org/fhir/search-entry-mode" + }, + { + "uri" : "http://hl7.org/fhir/search-modifier-code" + }, + { + "uri" : "http://hl7.org/fhir/search-param-type" + }, + { + "uri" : "http://hl7.org/fhir/search-xpath-usage" + }, + { + "uri" : "http://hl7.org/fhir/secondary-finding" + }, + { + "uri" : "http://hl7.org/fhir/sequence-type" + }, + { + "uri" : "http://hl7.org/fhir/sid/cvx" + }, + { + "uri" : "http://hl7.org/fhir/sid/ex-icd-10-procedures" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-10-cm" + }, + { + "uri" : "http://hl7.org/fhir/sid/icd-9-cm" + }, + { + "uri" : "http://hl7.org/fhir/sid/mvx" + }, + { + "uri" : "http://hl7.org/fhir/sid/ndc" + }, + { + "uri" : "http://hl7.org/fhir/slotstatus" + }, + { + "uri" : "http://hl7.org/fhir/sort-direction" + }, + { + "uri" : "http://hl7.org/fhir/spdx-license" + }, + { + "uri" : "http://hl7.org/fhir/specimen-contained-preference" + }, + { + "uri" : "http://hl7.org/fhir/specimen-status" + }, + { + "uri" : "http://hl7.org/fhir/strand-type" + }, + { + "uri" : "http://hl7.org/fhir/structure-definition-kind" + }, + { + "uri" : "http://hl7.org/fhir/subscription-channel-type" + }, + { + "uri" : "http://hl7.org/fhir/subscription-status" + }, + { + "uri" : "http://hl7.org/fhir/substance-status" + }, + { + "uri" : "http://hl7.org/fhir/supplydelivery-status" + }, + { + "uri" : "http://hl7.org/fhir/supplyrequest-status" + }, + { + "uri" : "http://hl7.org/fhir/task-intent" + }, + { + "uri" : "http://hl7.org/fhir/task-status" + }, + { + "uri" : "http://hl7.org/fhir/transaction-mode" + }, + { + "uri" : "http://hl7.org/fhir/trigger-type" + }, + { + "uri" : "http://hl7.org/fhir/type-derivation-rule" + }, + { + "uri" : "http://hl7.org/fhir/udi-entry-type" + }, + { + "uri" : "http://hl7.org/fhir/unknown-content-code" + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/careplan-category" + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/condition-category" + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-category" + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category" + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-provenance-participant-type" + }, + { + "uri" : "http://hl7.org/fhir/us/core/CodeSystem/uscore-treatment-intervention-preference" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/assemble-expectation" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/chf-codes" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/collapsible" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/entryMode" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/launchContext" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/questionnaire-answer-constraint" + }, + { + "uri" : "http://hl7.org/fhir/uv/sdc/CodeSystem/temp" + }, + { + "uri" : "http://hl7.org/fhir/variable-type" + }, + { + "uri" : "http://hl7.org/fhir/versioning-policy" + }, + { + "uri" : "http://hl7.org/fhir/vision-base-codes" + }, + { + "uri" : "http://hl7.org/fhir/vision-eye-codes" + }, + { + "uri" : "http://hl7.org/fhir/w3c-provenance-activity-type" + }, + { + "uri" : "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode" + }, + { + "uri" : "http://loinc.org" + }, + { + "uri" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl" + }, + { + "uri" : "http://nucc.org/provider-taxonomy" + }, + { + "uri" : "http://radlex.org" + }, + { + "uri" : "http://snomed.info/sct" + }, + { + "uri" : "http://standardterms.edqm.eu" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/action-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/activity-definition-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-error" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adjudication-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/admit-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-assess" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/adverse-event-severity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allerg-intol-substance-exp-risk" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/applicability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/appointment-cancellation-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/appropriateness-score" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-identifier-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/artifact-version-policy-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/attribute-estimate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-entity-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/audit-event-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/basic-resource-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-network" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-term" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/benefit-unit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/can-push-updates" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/catalogType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cdshooks-indicator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-rating" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-rating" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/characteristic-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chargeitem-billingcodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/choice-list-orientation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/chromosome-human" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-exception" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claim-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claimcareteamrole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/claiminformationcategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/codesystem-altcode-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/common-tags" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/communication-topic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composite-measure-scoring" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/composition-altcode-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conceptdomains" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-clinical" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/condition-ver-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/conformance-expectation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentaction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentcategorycodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentpolicycodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentscope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/consentverification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contactentity-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/container-cap" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-content-derivative" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-data-meaning" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contract-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractaction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractactorrole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contractsubtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/contracttermtypecodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/copy-number-event" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-class" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-copay-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverage-selfpay" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/coverageeligibilityresponse-ex-auth-support" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/cql-access-modifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/data-absent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-topic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/definition-use" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/device-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diagnosis-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/diet" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/directness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/discharge-disposition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/dose-rate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/effect-estimate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-special-arrangements" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-subject-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/encounter-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/endpoint-payload-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/entformula-additive" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/episodeofcare-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-quality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/evidence-variant-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-benefitcategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-claimsubtype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-coverage-financial-exception" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosis-on-admission" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosisrelatedgroup" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-diagnosistype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-payee-resource-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-paymenttype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-procedure-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-programcode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-providerqualification" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-relatedclaimrelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-revenue-center" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-serviceplace" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-tooth" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-USCLS" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-parameter-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/expansion-processing-rule" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/extra-security-role-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/failure-action" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/FDI-surface" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskcode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/financialtaskinputtype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/flag-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/forms-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/fundsreserve" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-acceptance-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-achievement" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-priority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/goal-relationship-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/guide-parameter-code" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/handling-condition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/history-absent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-document-format-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7-work-group" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/hl7TermMaintInfra" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/icd-o-3" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-funding-source" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-origin" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-recommendation-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/immunization-subpotent-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/implantStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/insurance-plan-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/library-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-empty-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/list-order" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/location-physical-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/match-grade" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-aggregate-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-data-usage" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-improvement-notation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-population" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-scoring" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-supplemental-data" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/measure-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/med-admin-perform-function" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-modality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/media-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-admin-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-statement-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medication-usage-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-performer-function" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationdispense-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-characteristic" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-package-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-admin-location" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/medicationrequest-status-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-reasons-encounter" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/message-transport" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/missingtoothreason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/modifiers" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/name-assembly-order" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/need" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/nutrition-intake-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/object-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/observation-statistics" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/operation-outcome" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/organization-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/parameter-group" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/participant-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payeetype" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-adjustment-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/payment-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/paymentstatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/plan-definition-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/practitioner-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/precision-estimate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/primary-source-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/processpriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/program" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/push-type-available" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/question-max-occurs" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/questionnaire-usage-mode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reaction-event-certainty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/reason-medication-given" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/recommendation-strength" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/referencerange-meaning" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/rejection-criteria" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-objective-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-phase" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-prim-purp-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-study-reason-stopped" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-milestone" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/research-subject-state-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-security-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/resource-type-link" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/restful-security-service" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-estimate-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/risk-probability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/security-source-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-provision-conditions" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-referral-method" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/service-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/sex-parameter-for-clinical-use" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/smart-capabilities" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/software-system-type-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/special-values" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/standards-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/state-change-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/statistic-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/study-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscriber-relationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-channel-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-error" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-status-at-event" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/subscription-tag" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/substance-category" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-item-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supply-kind" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/supplyrequest-reason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/synthesis-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-operation-codes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/testscript-profile-origin-types" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/triggerEventID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/usage-context-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/utg-concept-properties" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0001" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0002" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0003" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0004" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0005" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006|2.1" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0006|2.4" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0007" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0008" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0009" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0012" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0017" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0023" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0027" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0033" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0034" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0038" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0043" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0048" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0052" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0061" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0062" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0063" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0065" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0066" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0069" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0070" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0074" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0076" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0078" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0080" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0083" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0085" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0091" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0092" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0098" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0100" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0102" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0103" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0104" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0105" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0106" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0107" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0108" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0109" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0116" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0119" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0121" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0122" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0123" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0124" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0126" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0127" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0128" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0130" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0131" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0133" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0135" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0136" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0137" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0140" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0141" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0142" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0144" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0145" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0146" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0147" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0148" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0149" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0150" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0153" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0155" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0156" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0157" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0158" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0159" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0160" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0161" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0162" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0163" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0164" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0165" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0166" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0167" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0168" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0169" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0170" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0173" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0174" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0175" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0177" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0178" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0179" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0180" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0181" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0183" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0185" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0187" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0189" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0190" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0191" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0193" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0200" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0201" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0202" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0203" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0204" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0205" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0206" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0207" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0208" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0209" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0210" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0211" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0213" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0214" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0215" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0216" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0217" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0220" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0223" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0224" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0225" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0227" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0228" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0229" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0230" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0231" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0232" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0234" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0235" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0236" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0237" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0238" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0239" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0240" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0241" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0242" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0243" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0247" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0248" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0250" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0251" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0252" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0253" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0254" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0255" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0256" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0257" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0258" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0259" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0260" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0261" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0262" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0263" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0265" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0267" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0268" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0269" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0270" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0271" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0272" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0273" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0275" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0276" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0277" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0278" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0279" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0280" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0281" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0282" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0283" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0284" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0286" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0287" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0290" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0291" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0292" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0294" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0298" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0299" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0301" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0305" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0309" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0311" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0315" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0316" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0317" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0321" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0322" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0323" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0324" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0325" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0326" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0329" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0330" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0331" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0332" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0334" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0335" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0336" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0337" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0338" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0339" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0344" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0350" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0351" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0353" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0354" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0355" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0356" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0357" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0359" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.3.1" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.7" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0363" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0364" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0365" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0366" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0367" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0368" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0369" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0370" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0371" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0372" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0373" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0374" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0375" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0376" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0377" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0383" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0384" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0387" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0388" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0389" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391|2.4" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0391|2.6" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0392" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0393" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0394" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0395" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0396" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0397" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0398" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0401" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0402" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0403" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0404" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0406" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0409" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0411" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0415" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0416" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0417" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0418" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0421" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0422" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0423" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0424" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0425" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0426" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0427" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0428" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0429" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0430" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0431" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0432" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0433" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0434" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0435" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0436" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0437" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0438" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0440" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0441" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0442" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0443" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0444" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0445" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0450" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0455" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0456" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0457" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0459" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0460" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0465" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0466" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0468" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0469" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0470" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0472" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0473" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0474" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0475" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0477" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0478" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0480" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0482" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0483" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0484" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0485" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0487" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0488" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0489" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0490" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0491" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0492" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0493" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0494" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0495" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0496" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0497" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0498" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0499" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0500" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0501" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0502" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0503" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0504" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0505" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0506" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0507" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0508" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0510" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0511" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0513" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0514" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0516" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0517" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0518" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0520" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0523" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0524" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0527" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0528" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0529" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0530" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0532" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0534" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0535" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0536" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0538" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0540" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0544" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0547" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0548" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0550" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0553" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0554" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0555" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0556" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0557" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0558" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0559" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0560" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0561" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0562" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0564" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0565" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0566" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0569" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0570" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0571" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0572" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0615" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0616" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0617" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0618" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0625" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0634" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0642" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0651" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0653" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0657" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0659" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0667" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0669" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0682" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0702" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0717" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0719" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0725" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0728" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0731" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0734" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0739" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0742" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0749" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0755" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0757" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0759" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0761" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0763" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0776" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0778" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0790" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0793" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0806" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0818" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0834" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0868" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0871" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0881" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0882" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0894" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0895" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0904" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0905" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0906" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0907" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0909" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0912" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0914" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0916" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0917" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0918" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0919" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0920" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0921" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0922" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0923" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0924" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0925" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0926" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0927" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0933" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0935" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0936" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0937" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0938" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0939" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0940" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0942" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0945" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0946" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0948" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0949" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0950" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0951" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0970" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-0971" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-4000" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v2-tables" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementDetailType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AcknowledgementType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActExposureLevelCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActInvoiceElementModifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActMood" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActReason" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipCheckpoint" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipJoin" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSplit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipSubset" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActRelationshipType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActSite" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUncertainty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ActUSPrivacyLaw" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressPartType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-AmericanIndianAlaskaNativeLanguages" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Calendar" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarCycle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CalendarType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Charset" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystem" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodeSystemType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CodingRationale" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CommunicationFunctionType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-CompressionAlgorithm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptCodeRelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptGenerality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptProperty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ConceptStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerCap" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContainerSeparator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContentProcessingMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ContextControl" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Country" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Currency" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataOperation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DataType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Dentition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DeviceAlertLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentCompletion" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-DocumentStorage" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EditStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EducationLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EmployeeJobClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAccident" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAcuity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterAdmissionSource" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterReferralSource" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EncounterSpecialCourtesy" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityDeterminer" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityHandling" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifierR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartTypeR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUseR2" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityRisk" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EntityStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-EquipmentAlertLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Ethnicity" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ExposureMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GenderStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HealthcareProviderTaxonomyHIPAA" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ApprovalStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7CMETAttribution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7CommitteeIDInRIM" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ConformanceInclusion" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7ContextConductionStyle" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DefinedRoseProperty" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7DocumentFormatCodes" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7ITSVersionCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingDomain" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSection" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7PublishingSubSection" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7Realm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7StandardVersionCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HL7UpdateMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7V3Conformance" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-hl7VoteResolution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-HtmlLinkType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierReliability" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IdentifierScope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-IntegrityCheckAlgorithm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-1retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-2retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ISO3166-3retired" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-iso4217-HL7" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LivingArrangement" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalMarkupIgnore" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-LocalRemoteControlState" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManagedParticipationStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ManufacturerModelNameExample" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MapRelationship" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialForm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MaterialType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFAttributeType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdMetSourceType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfHmdRowType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MdfRmimRowType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MDFSubjectAreaPrefix" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-mediaType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-MessageWaitingPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ModifyIndicator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationCategory" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationMethod" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-OrganizationNameType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParameterizedDataType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationSignature" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PatientImportance" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PaymentTerms" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PersonDisabilityType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-policyHolderRole" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-PostalAddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProbabilityDistributionType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ProcessingMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryParameterValue" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryPriority" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryQuantityUnit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryRequestLimit" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryResponse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-QueryStatusCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Race" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationalOperator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RelationshipConjunction" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseLevel" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseModality" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-ResponseMode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleLinkType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RoleStatus" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-Sequencing" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SetOperator" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SoftwareNameExample" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SpecimenType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-styleType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-substanceAdminSubstitution" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-SubstitutionCondition" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellHorizontalAlign" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellScope" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableCellVerticalAlign" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableFrame" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TableRules" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TargetAwareness" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationAddressUse" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TelecommunicationCapabilities" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TimingEvent" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TransmissionRelationshipTypeCode" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-triggerEventID" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-URLScheme" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineManufacturer" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VaccineType" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-VocabularyDomainQualifier" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/v3-WorkClassificationODH" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-process" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-status" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/validation-type" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variable-role" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/variant-state" + }, + { + "uri" : "http://terminology.hl7.org/CodeSystem/verificationresult-communication-method" + }, + { + "uri" : "http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category" + }, + { + "uri" : "http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-status-reason" + }, + { + "uri" : "http://unitsofmeasure.org" + }, + { + "uri" : "http://unstats.un.org/unsd/methods/m49/m49.htm" + }, + { + "uri" : "http://varnomen.hgvs.org" + }, + { + "uri" : "http://www.ada.org/snodent" + }, + { + "uri" : "http://www.ama-assn.org/go/cpt" + }, + { + "uri" : "http://www.cms.gov/Medicare/Coding/ICD10" + }, + { + "uri" : "http://www.nlm.nih.gov/research/umls/rxnorm" + }, + { + "uri" : "http://www.whocc.no/atc" + }, + { + "uri" : "https://nahdo.org/sopt" + }, + { + "uri" : "https://www.cdc.gov/nhsn/cdaportal/terminology/codesystem/cdcnhsn.html" + }, + { + "uri" : "https://www.cdc.gov/nhsn/cdaportal/terminology/codesystem/hsloc.html" + }, + { + "uri" : "https://www.cms.gov/Medicare/Medicare-Fee-for-Service-Payment/HospitalAcqCond/Coding" + }, + { + "uri" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats" + }, + { + "uri" : "https://www.iana.org/time-zones" + }, + { + "uri" : "https://www.usps.com/" + }, + { + "uri" : "urn:ietf:bcp:13" + }, + { + "uri" : "urn:ietf:bcp:47" + }, + { + "uri" : "urn:ietf:rfc:3986" + }, + { + "uri" : "urn:iso-astm:E1762-95:2013" + }, + { + "uri" : "urn:iso:std:iso:11073:10101" + }, + { + "uri" : "urn:iso:std:iso:3166" + }, + { + "uri" : "urn:iso:std:iso:3166:-2" + }, + { + "uri" : "urn:iso:std:iso:4217" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1001.101.104.16592" + }, + { + "uri" : "urn:oid:1.2.36.1.2001.1005.17" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.2.9.6.2.7" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.3.1937.98.5.8" + }, + { + "uri" : "urn:oid:2.16.840.1.113883.6.238" + }], + "expansion" : { + "parameter" : [{ + "name" : "cache-id", + "documentation" : "This server supports caching terminology resources between calls. Clients only need to send value sets and codesystems once; there after they are automatically in scope for calls with the same cache-id. The cache is retained for 30 min from last call" + }, + { + "name" : "tx-resource", + "documentation" : "Additional valuesets needed for evaluation e.g. value sets referred to from the import statement of the value set being expanded" + }, + { + "name" : "_incomplete" + }, + { + "name" : "abstract" + }, + { + "name" : "activeOnly" + }, + { + "name" : "check-system-version" + }, + { + "name" : "count" + }, + { + "name" : "default-to-latest-version" + }, + { + "name" : "displayLanguage" + }, + { + "name" : "excludeNested" + }, + { + "name" : "excludeNotForUI" + }, + { + "name" : "excludePostCoordinated" + }, + { + "name" : "force-system-version" + }, + { + "name" : "inactive" + }, + { + "name" : "includeAlternateCodes" + }, + { + "name" : "includeDefinition" + }, + { + "name" : "includeDesignations" + }, + { + "name" : "incomplete-ok" + }, + { + "name" : "limitedExpansion" + }, + { + "name" : "mode", + "documentation" : "=lenient-display-validation" + }, + { + "name" : "no-cache" + }, + { + "name" : "offset" + }, + { + "name" : "profile" + }, + { + "name" : "property" + }, + { + "name" : "system-version" + }, + { + "name" : "valueSetMode", + "documentation" : "= CHECK_MEMBERSHIP_ONLY | NO_MEMBERSHIP_CHECK" + }] + } +} \ No newline at end of file diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/all-systems.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/all-systems.cache index bd3a9aeea..c293c7f41 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/all-systems.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/all-systems.cache @@ -4172,7 +4172,6 @@ v: { "code" : "application/octet-stream", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4193,7 +4192,6 @@ v: { "code" : "application/octet-stream", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4221,7 +4219,6 @@ v: { "code" : "image/png", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4242,7 +4239,6 @@ v: { "code" : "image/png", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4270,7 +4266,6 @@ v: { "code" : "application/pdf", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4291,7 +4286,6 @@ v: { "code" : "application/pdf", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4313,7 +4307,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4335,7 +4328,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4363,7 +4355,6 @@ v: { "code" : "image/*", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4384,7 +4375,6 @@ v: { "code" : "image/*", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4406,7 +4396,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4434,7 +4423,6 @@ v: { "code" : "image/jpg", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4455,7 +4443,6 @@ v: { "code" : "image/jpg", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4483,7 +4470,6 @@ v: { "code" : "json", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4504,7 +4490,6 @@ v: { "code" : "json", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4532,7 +4517,6 @@ v: { "code" : "xml", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4553,7 +4537,6 @@ v: { "code" : "xml", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4581,7 +4564,6 @@ v: { "code" : "application/fhir+json", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4602,7 +4584,6 @@ v: { "code" : "application/fhir+json", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4630,7 +4611,6 @@ v: { "code" : "en-US", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4651,7 +4631,6 @@ v: { "code" : "en-US", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4679,7 +4658,6 @@ v: { "code" : "en", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4700,7 +4678,6 @@ v: { "code" : "en", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4728,7 +4705,6 @@ v: { "code" : "text/plain", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4749,7 +4725,6 @@ v: { "code" : "text/plain", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4777,7 +4752,6 @@ v: { "code" : "text/css", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4798,7 +4772,6 @@ v: { "code" : "text/css", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4819,7 +4792,6 @@ v: { "code" : "de-CH", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -4846,7 +4818,6 @@ v: { "error" : "The provided code 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode#urn:ihe:iti:xds:2017:mimeTypeSufficient ('MimeType sufficient')' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -5009,7 +4980,6 @@ v: { "code" : "application/xml", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5030,7 +5000,6 @@ v: { "code" : "application/xml", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5058,7 +5027,6 @@ v: { "code" : "text/xml", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5079,7 +5047,6 @@ v: { "code" : "text/xml", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5223,7 +5190,6 @@ v: { "code" : "text/cql.identifier", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5244,7 +5210,6 @@ v: { "code" : "text/cql.identifier", "system" : "urn:ietf:bcp:13", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5266,7 +5231,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5288,7 +5252,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5310,7 +5273,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -5339,7 +5301,6 @@ v: { "error" : "The provided code '#[%payloadFormat%]' was not found in the value set 'urn:uuid:9533d1b4-fecd-469d-9803-fe4fcf81ded5'; The System URI could not be determined for the code '[%payloadFormat%]' in the ValueSet 'urn:uuid:9533d1b4-fecd-469d-9803-fe4fcf81ded5'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -5380,3 +5341,960 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "urn:iso:std:iso:3166", + "code" : "CHE" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Switzerland", + "code" : "CHE", + "system" : "urn:iso:std:iso:3166", + "version" : "2018", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "urn:iso:std:iso:3166", + "code" : "US", + "display" : "United States of America" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "United States of America", + "code" : "US", + "system" : "urn:iso:std:iso:3166", + "version" : "2018", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "32485007", + "display" : "Hospital admission (procedure)" + }] +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "http://snomed.info/sct", + "concept" : [{ + "code" : "416406003", + "display" : "Undersøkelsen avbrutt", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Procedure discontinued (situation)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "prosedyre avbrutt" + }] + }, + { + "code" : "103705002", + "display" : "Observasjon uten innleggelse", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Patient status observation (procedure)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "observasjon av pasientstatus" + }] + }, + { + "code" : "32485007", + "display" : "Innleggelse", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Hospital admission (procedure)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "sykehusinnleggelse" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "concept" : [{ + "code" : "nil-known", + "display" : "Ingen (med eller uten forlenget prosedyretid)", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Nil Known" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "concept" : [{ + "code" : "OTH", + "display" : "Annet", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Other" + }] + }] + }] + }, + "expansion" : { + "contains" : [{ + "system" : "http://snomed.info/sct", + "code" : "416406003", + "display" : "Undersøkelsen avbrutt" + }, + { + "system" : "http://snomed.info/sct", + "code" : "103705002", + "display" : "Observasjon uten innleggelse" + }, + { + "system" : "http://snomed.info/sct", + "code" : "32485007", + "display" : "Innleggelse" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "code" : "nil-known", + "display" : "Ingen (med eller uten forlenget prosedyretid)" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "code" : "OTH", + "display" : "Annet" + }] + } +}, "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Hospital admission (procedure)", + "code" : "32485007", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "712510007", + "display" : "Intestinal hemorrhage (disorder)" + }] +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "http://snomed.info/sct", + "concept" : [{ + "code" : "712510007", + "display" : "Blødning", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Intestinal hemorrhage (disorder)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "blødning i tarm" + }] + }, + { + "code" : "50008003", + "display" : "Perforasjon", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Traumatic perforation of large intestine (disorder)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "traumatisk perforasjon av colon" + }] + }, + { + "code" : "10341000202100", + "display" : "Alvorlig vasovagal reaksjon", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Severe vasovagal reaction (disorder)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "alvorlig vasovagal reaksjon" + }] + }, + { + "code" : "409622000", + "display" : "Respiratorisk", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Respiratory failure (disorder)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "respirasjonssvikt" + }] + }, + { + "code" : "267037003", + "display" : "Kardiovaskulær", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Cardiovascular symptoms (finding)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "kardiovaskulært symptom" + }] + }, + { + "code" : "416093006", + "display" : "Allergisk reaksjon på medikament", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Allergic reaction caused by drug (disorder)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "allergisk reaksjon forårsaket av legemiddel" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "concept" : [{ + "code" : "nil-known", + "display" : "Ingen", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Nil Known" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "concept" : [{ + "code" : "OTH", + "display" : "Annet", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Other" + }] + }] + }] + }, + "expansion" : { + "contains" : [{ + "system" : "http://snomed.info/sct", + "code" : "712510007", + "display" : "Blødning" + }, + { + "system" : "http://snomed.info/sct", + "code" : "50008003", + "display" : "Perforasjon" + }, + { + "system" : "http://snomed.info/sct", + "code" : "10341000202100", + "display" : "Alvorlig vasovagal reaksjon" + }, + { + "system" : "http://snomed.info/sct", + "code" : "409622000", + "display" : "Respiratorisk" + }, + { + "system" : "http://snomed.info/sct", + "code" : "267037003", + "display" : "Kardiovaskulær" + }, + { + "system" : "http://snomed.info/sct", + "code" : "416093006", + "display" : "Allergisk reaksjon på medikament" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "code" : "nil-known", + "display" : "Ingen" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "code" : "OTH", + "display" : "Annet" + }] + } +}, "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Intestinal hemorrhage (disorder)", + "code" : "712510007", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "372756006", + "display" : "Warfarin (substance)" + }] +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "http://snomed.info/sct", + "concept" : [{ + "code" : "387458008", + "display" : "Acetylsalisylsyre", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Aspirin (substance)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "acetylsalisylsyre" + }] + }, + { + "code" : "372756006", + "display" : "Warfarin", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Warfarin (substance)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "warfarin" + }] + }, + { + "code" : "373294004", + "display" : "LMWH", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Low molecular weight heparin (substance)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "lavmolekylært heparin" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "concept" : [{ + "code" : "nil-known", + "display" : "Ingen relevante medisiner", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Nil Known" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "concept" : [{ + "code" : "OTH", + "display" : "Annet", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Other" + }] + }, + { + "code" : "UNK", + "display" : "Ukjent/mangler opplysninger", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "unknown" + }] + }] + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "concept" : [{ + "code" : "andre-blodplatehemmere", + "display" : "Andre blodplatehemmere", + "designation" : [{ + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Andre blodplatehemmere" + }] + }, + { + "code" : "doak", + "display" : "DOAK", + "designation" : [{ + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "DOAK" + }] + }, + { + "code" : "andre-antikoagulantia", + "display" : "Andre antikoagulantia", + "designation" : [{ + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Andre antikoagulantia" + }] + }] + }] + }, + "expansion" : { + "contains" : [{ + "system" : "http://snomed.info/sct", + "code" : "387458008", + "display" : "Acetylsalisylsyre" + }, + { + "system" : "http://snomed.info/sct", + "code" : "372756006", + "display" : "Warfarin" + }, + { + "system" : "http://snomed.info/sct", + "code" : "373294004", + "display" : "LMWH" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "code" : "nil-known", + "display" : "Ingen relevante medisiner" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "code" : "OTH", + "display" : "Annet" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "code" : "UNK", + "display" : "Ukjent/mangler opplysninger" + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "code" : "andre-blodplatehemmere", + "display" : "Andre blodplatehemmere" + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "code" : "doak", + "display" : "DOAK" + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "code" : "andre-antikoagulantia", + "display" : "Andre antikoagulantia" + }] + } +}, "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Warfarin (substance)", + "code" : "372756006", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "387458008", + "display" : "Aspirin (substance)" + }] +}, "valueSet" :{ + "resourceType" : "ValueSet", + "compose" : { + "include" : [{ + "system" : "http://snomed.info/sct", + "concept" : [{ + "code" : "387458008", + "display" : "Acetylsalisylsyre", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Aspirin (substance)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "acetylsalisylsyre" + }] + }, + { + "code" : "372756006", + "display" : "Warfarin", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Warfarin (substance)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "warfarin" + }] + }, + { + "code" : "373294004", + "display" : "LMWH", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Low molecular weight heparin (substance)" + }, + { + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "lavmolekylært heparin" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "concept" : [{ + "code" : "nil-known", + "display" : "Ingen relevante medisiner", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Nil Known" + }] + }] + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "concept" : [{ + "code" : "OTH", + "display" : "Annet", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Other" + }] + }, + { + "code" : "UNK", + "display" : "Ukjent/mangler opplysninger", + "designation" : [{ + "language" : "en", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "unknown" + }] + }] + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "concept" : [{ + "code" : "andre-blodplatehemmere", + "display" : "Andre blodplatehemmere", + "designation" : [{ + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Andre blodplatehemmere" + }] + }, + { + "code" : "doak", + "display" : "DOAK", + "designation" : [{ + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "DOAK" + }] + }, + { + "code" : "andre-antikoagulantia", + "display" : "Andre antikoagulantia", + "designation" : [{ + "language" : "no", + "use" : { + "system" : "http://snomed.info/sct", + "code" : "900000000000003001", + "display" : "Fully specified name" + }, + "value" : "Andre antikoagulantia" + }] + }] + }] + }, + "expansion" : { + "contains" : [{ + "system" : "http://snomed.info/sct", + "code" : "387458008", + "display" : "Acetylsalisylsyre" + }, + { + "system" : "http://snomed.info/sct", + "code" : "372756006", + "display" : "Warfarin" + }, + { + "system" : "http://snomed.info/sct", + "code" : "373294004", + "display" : "LMWH" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/special-values", + "version" : "4.0.1", + "code" : "nil-known", + "display" : "Ingen relevante medisiner" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "code" : "OTH", + "display" : "Annet" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "version" : "2018-08-12", + "code" : "UNK", + "display" : "Ukjent/mangler opplysninger" + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "code" : "andre-blodplatehemmere", + "display" : "Andre blodplatehemmere" + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "code" : "doak", + "display" : "DOAK" + }, + { + "system" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", + "code" : "andre-antikoagulantia", + "display" : "Andre antikoagulantia" + }] + } +}, "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Aspirin (substance)", + "code" : "387458008", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "urn:iso:std:iso:3166", + "code" : "US" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "United States of America", + "code" : "US", + "system" : "urn:iso:std:iso:3166", + "version" : "2018", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ada.org_snodent.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ada.org_snodent.cache index 895218310..b7cc0f114 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ada.org_snodent.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ada.org_snodent.cache @@ -39,10 +39,68 @@ v: { "system" : "http://www.ada.org/snodent", "version" : "2.1.0", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } } ------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://www.ada.org/snodent", + "code" : "210965D", + "display" : "Anterior part of lower alveolar ridge" + }], + "text" : "Anterior part of lower alveolar ridge" +}, "url": "http://hl7.org/fhir/us/dental-data-exchange/ValueSet/dental-anatomy", "version": "1.0.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "version" : "2.1.0", + "severity" : "error", + "error" : "No valid coding was found for the value set 'http://hl7.org/fhir/us/dental-data-exchange/ValueSet/dental-anatomy|1.0.0'; The provided code 'http://www.ada.org/snodent#210965D ('Anterior part of lower alveolar ridge')' was not found in the value set 'http://hl7.org/fhir/us/dental-data-exchange/ValueSet/dental-anatomy|1.0.0'", + "class" : "UNKNOWN", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "this-code-not-in-vs" + }], + "text" : "The provided code 'http://www.ada.org/snodent#210965D ('Anterior part of lower alveolar ridge')' was not found in the value set 'http://hl7.org/fhir/us/dental-data-exchange/ValueSet/dental-anatomy|1.0.0'" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }, + { + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "error", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-in-vs" + }], + "text" : "No valid coding was found for the value set 'http://hl7.org/fhir/us/dental-data-exchange/ValueSet/dental-anatomy|1.0.0'" + } + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache index 50ce7df35..9e797a65f 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache @@ -8422,7 +8422,6 @@ v: { "error" : "Wrong Display Name 'O2 % BldC Oximetry' for http://loinc.org#59408-5. Valid display is 'Oxygen saturation in Arterial blood by Pulse oximetry' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8463,7 +8462,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8489,7 +8487,6 @@ v: { "error" : "The provided code 'http://loinc.org#59408-5' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8529,7 +8526,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8553,7 +8549,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8579,7 +8574,6 @@ v: { "error" : "The provided code 'http://loinc.org#3150-0' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8623,7 +8617,6 @@ v: { "error" : "Wrong Display Name 'Flow Rate' for http://loinc.org#3151-8. Valid display is 'Inhaled oxygen flow rate' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8666,7 +8659,6 @@ v: { "error" : "The provided code 'http://loinc.org#3151-8' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8706,7 +8698,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8732,7 +8723,6 @@ v: { "error" : "The provided code 'http://loinc.org#2708-6' was not found in the value set 'http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs--0|4.0.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8772,7 +8762,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8795,7 +8784,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8818,7 +8806,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8844,7 +8831,6 @@ v: { "error" : "The provided code 'http://loinc.org#100066-0' was not found in the value set 'http://hl7.org/fhir/test/StructureDefinition/additional-bindings-vs1--0|1.0.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -8884,7 +8870,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8907,7 +8892,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8930,7 +8914,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8954,7 +8937,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -8978,7 +8960,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9002,7 +8983,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9026,7 +9006,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9049,7 +9028,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9073,7 +9051,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9096,7 +9073,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9120,7 +9096,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9143,7 +9118,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9167,7 +9141,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9190,7 +9163,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9214,7 +9186,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9237,7 +9208,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9261,7 +9231,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9284,7 +9253,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9308,7 +9276,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9332,7 +9299,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9359,7 +9325,6 @@ v: { "error" : "Wrong Display Name 'Patient Authorization Signature' for http://loinc.org#59284-0. Valid display is 'Consent Document' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -9399,7 +9364,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9423,7 +9387,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9446,7 +9409,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9470,7 +9432,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9494,7 +9455,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9518,7 +9478,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9545,7 +9504,6 @@ v: { "error" : "Wrong Display Name 'NDC labeler code request' for http://loinc.org#51726-8. Valid display is 'FDA product label NDC labeler code request' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -9586,7 +9544,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9611,7 +9568,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9634,7 +9590,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9662,7 +9617,6 @@ v: { "error" : "Wrong Display Name 'Allergies and adverse reactions' for http://loinc.org#48765-2. Valid display is 'Allergies and adverse reactions Document' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -9703,7 +9657,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9726,7 +9679,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9749,7 +9701,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9773,7 +9724,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9796,7 +9746,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9821,7 +9770,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9845,7 +9793,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9868,7 +9815,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9892,7 +9838,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9915,7 +9860,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9939,7 +9883,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9962,7 +9905,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9986,7 +9928,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10010,7 +9951,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10033,7 +9973,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10057,7 +9996,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10080,7 +10018,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10103,7 +10040,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10128,7 +10064,6 @@ v: { "error" : "Unknown code '�g��' in the CodeSystem 'http://loinc.org' version '2.77'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10169,7 +10104,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10196,7 +10130,6 @@ v: { "error" : "Wrong Display Name '����' for http://loinc.org#18684-1. Valid display is 'First Blood pressure Set' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10240,7 +10173,6 @@ v: { "error" : "Wrong Display Name '���k������' for http://loinc.org#8480-6. Valid display is 'Systolic blood pressure' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10284,7 +10216,6 @@ v: { "error" : "Wrong Display Name '�g��������' for http://loinc.org#8462-4. Valid display is 'Diastolic blood pressure' (en-US) (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10325,7 +10256,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10349,7 +10279,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10373,7 +10302,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10397,7 +10325,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10422,7 +10349,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10447,7 +10373,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10471,7 +10396,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10495,7 +10419,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10518,7 +10441,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10541,7 +10463,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10564,7 +10485,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10587,7 +10507,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10610,7 +10529,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10633,7 +10551,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10656,7 +10573,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10679,7 +10595,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10702,7 +10617,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10737,7 +10651,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10772,7 +10685,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10807,7 +10719,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10831,7 +10742,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10854,7 +10764,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10877,7 +10786,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10901,7 +10809,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10927,7 +10834,6 @@ v: { "error" : "The provided code 'http://loinc.org#76534-7' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10967,7 +10873,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10991,7 +10896,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11015,7 +10919,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11039,7 +10942,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11063,7 +10965,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11087,7 +10988,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11111,7 +11011,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11135,7 +11034,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11158,7 +11056,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11181,7 +11078,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11205,7 +11101,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11229,7 +11124,6 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11252,6 +11146,82 @@ v: { "system" : "http://loinc.org", "version" : "2.77", "server" : "http://tx-dev.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://loinc.org", + "code" : "59408-5", + "display" : "O2 % BldC Oximetry" + }, + { + "system" : "http://loinc.org", + "code" : "2708-6", + "display" : "Oxygen saturation in Arterial blood" + }] +}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs", "version": "4.0.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Oxygen saturation in Arterial blood", + "code" : "2708-6", + "system" : "http://loinc.org", + "version" : "2.78", + "severity" : "error", + "error" : "Wrong Display Name 'O2 % BldC Oximetry' for http://loinc.org#59408-5. Valid display is one of 3 choices: 'Oxygen saturation in Arterial blood by Pulse oximetry' (en-US), 'Oxygen saturation in Arterial blood by Pulse oximetry' (en-US) or 'SaO2 % BldA PulseOx' (en-US) (for the language(s) 'en-US')", + "class" : "UNKNOWN", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "invalid-display" + }], + "text" : "Wrong Display Name 'O2 % BldC Oximetry' for http://loinc.org#59408-5. Valid display is one of 3 choices: 'Oxygen saturation in Arterial blood by Pulse oximetry' (en-US), 'Oxygen saturation in Arterial blood by Pulse oximetry' (en-US) or 'SaO2 % BldA PulseOx' (en-US) (for the language(s) 'en-US')" + }, + "location" : ["CodeableConcept.coding[0].display"], + "expression" : ["CodeableConcept.coding[0].display"] + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://loinc.org", + "code" : "3150-0", + "display" : "Inhaled Oxygen Concentration" + }] +}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs", "version": "4.0.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Inhaled oxygen concentration", + "code" : "3150-0", + "system" : "http://loinc.org", + "version" : "2.78", + "server" : "http://tx-dev.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -11259,3 +11229,49 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://loinc.org", + "code" : "3151-8", + "display" : "Flow Rate" + }] +}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs", "version": "4.0.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Inhaled oxygen flow rate", + "code" : "3151-8", + "system" : "http://loinc.org", + "version" : "2.78", + "severity" : "error", + "error" : "Wrong Display Name 'Flow Rate' for http://loinc.org#3151-8. Valid display is one of 4 choices: 'Inhaled oxygen flow rate' (en-US), 'Inhaled oxygen flow rate' (en-US), 'Inhaled O2 flow rate' (en-US) or 'Inhaled oxygen' (en-US) (for the language(s) 'en-US')", + "class" : "UNKNOWN", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "invalid-display" + }], + "text" : "Wrong Display Name 'Flow Rate' for http://loinc.org#3151-8. Valid display is one of 4 choices: 'Inhaled oxygen flow rate' (en-US), 'Inhaled oxygen flow rate' (en-US), 'Inhaled O2 flow rate' (en-US) or 'Inhaled oxygen' (en-US) (for the language(s) 'en-US')" + }, + "location" : ["CodeableConcept.coding[0].display"], + "expression" : ["CodeableConcept.coding[0].display"] + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/servers.ini b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/servers.ini index 180787577..5fec2899b 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/servers.ini +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/servers.ini @@ -1,3 +1,4 @@ [servers] tx-dev.fhir.org.r4 = http://tx-dev.fhir.org/r4 +local.fhir.org.r4 = http://local.fhir.org/r4 diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache index 6744fe382..2f27095a0 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache @@ -9387,7 +9387,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9411,7 +9410,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9435,7 +9433,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9459,7 +9456,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9482,7 +9478,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9506,7 +9501,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9533,7 +9527,6 @@ v: { "error" : "Wrong Display Name 'Moderate' for http://snomed.info/sct#6736007. Valid display is one of 4 choices: 'Midgrade', 'Moderate (severity modifier) (qualifier value)', 'Moderate (severity modifier)' or 'Moderate severity' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -9573,7 +9566,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9597,7 +9589,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9621,7 +9612,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9645,7 +9635,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9669,7 +9658,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9693,7 +9681,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9717,7 +9704,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9741,7 +9727,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9765,7 +9750,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9790,7 +9774,6 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", "inactive" : true, - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9814,7 +9797,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9838,7 +9820,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9862,7 +9843,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9886,7 +9866,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9910,7 +9889,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9934,7 +9912,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9958,7 +9935,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -9982,7 +9958,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10006,7 +9981,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10031,7 +10005,6 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", "inactive" : true, - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10058,7 +10031,6 @@ v: { "error" : "Wrong Display Name 'Traveller's Diarrhea (disorder)' for http://snomed.info/sct#11840006. Valid display is one of 4 choices: 'Traveler's diarrhea', 'Turista', 'Traveler's diarrhoea' or 'Traveler's diarrhea (disorder)' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10099,7 +10071,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10123,7 +10094,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10147,7 +10117,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10171,7 +10140,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10196,7 +10164,6 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", "inactive" : true, - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10221,7 +10188,6 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", "inactive" : true, - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10245,7 +10211,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10269,7 +10234,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10294,7 +10258,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/731000124108/version/20240301", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10321,7 +10284,6 @@ v: { "error" : "Wrong Display Name 'Progress note' for http://snomed.info/sct#371532007. Valid display is one of 3 choices: 'Progress report', 'Report of subsequent visit' or 'Progress report (record artifact)' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10362,7 +10324,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10385,7 +10346,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10408,7 +10368,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10432,7 +10391,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10456,7 +10414,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10480,7 +10437,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10504,7 +10460,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10528,7 +10483,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10552,7 +10506,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10579,7 +10532,6 @@ v: { "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/11000146104/version/20220930' could not be found, so the code cannot be validated. Valid versions: [http://snomed.info/sct/11000146104/version/20230331,http://snomed.info/sct/11000172109/version/20231115,http://snomed.info/sct/2011000195101/version/20230607,http://snomed.info/sct/20611000087101/version/20220930,http://snomed.info/sct/32506021000036107/version/20230731,http://snomed.info/sct/45991000052106/version/20220531,http://snomed.info/sct/45991000052106/version/20231130,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20240301,http://snomed.info/sct/827022005/version/20221130,http://snomed.info/sct/83821000000107/version/20230412,http://snomed.info/sct/900000000000207008/version/20230131,http://snomed.info/sct/900000000000207008/version/20230731,http://snomed.info/sct/900000000000207008/version/20240201]", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10624,7 +10576,6 @@ v: { "error" : "No Message returned", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10665,7 +10616,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10689,7 +10639,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10713,7 +10662,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10737,7 +10685,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10763,7 +10710,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#96067005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-substance-condition-uv-ips--0|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10803,7 +10749,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10827,7 +10772,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10853,7 +10797,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#292954005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/allergy-reaction-snomed-ct-ips-free-set--0|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10894,7 +10837,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10920,7 +10862,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#48546005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-substance-condition-uv-ips--0|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -10960,7 +10901,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -10984,7 +10924,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11010,7 +10949,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#292360004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/allergy-reaction-snomed-ct-ips-free-set--0|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11051,7 +10989,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11074,7 +11011,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11098,7 +11034,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11121,7 +11056,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11145,7 +11079,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11168,7 +11101,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11192,7 +11124,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11215,7 +11146,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11239,7 +11169,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11262,7 +11191,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11286,7 +11214,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11309,7 +11236,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11333,7 +11259,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11356,7 +11281,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11382,7 +11306,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#126212009' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11423,7 +11346,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11446,7 +11368,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11470,7 +11391,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11493,7 +11413,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11519,7 +11438,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#714081009' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11560,7 +11478,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11583,7 +11500,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11609,7 +11525,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#109081006' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11650,7 +11565,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11673,7 +11587,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11697,7 +11610,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11720,7 +11632,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11746,7 +11657,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#108537001' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11787,7 +11697,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11810,7 +11719,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11836,7 +11744,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#96309000' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11877,7 +11784,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11900,7 +11806,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11926,7 +11831,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#7947003' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -11967,7 +11871,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -11990,7 +11893,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12016,7 +11918,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#25246002' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12057,7 +11958,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12080,7 +11980,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12104,7 +12003,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12127,7 +12025,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12153,7 +12050,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12196,7 +12092,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--2|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12239,7 +12134,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--3|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12282,7 +12176,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--4|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12325,7 +12218,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--5|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12368,7 +12260,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--6|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12411,7 +12302,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--7|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12454,7 +12344,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--8|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12495,7 +12384,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12518,7 +12406,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12544,7 +12431,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--1|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12587,7 +12473,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--2|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12630,7 +12515,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--3|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12673,7 +12557,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--4|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12716,7 +12599,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--5|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12759,7 +12641,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--6|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12802,7 +12683,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--7|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12845,7 +12725,6 @@ v: { "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--8|1.1.0'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -12886,7 +12765,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12910,7 +12788,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12934,7 +12811,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12958,7 +12834,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -12982,7 +12857,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13009,7 +12883,6 @@ v: { "error" : "Wrong Display Name 'COVID-19' for http://snomed.info/sct#840535000. Valid display is one of 7 choices: 'Antibody to 2019 novel coronavirus', 'Antibody to 2019-nCoV', 'Antibody to severe acute respiratory syndrome coronavirus 2 (substance)', 'Antibody to severe acute respiratory syndrome coronavirus 2', 'Antibody to SARS-CoV-2', 'Severe acute respiratory syndrome coronavirus 2 Ab' or 'Severe acute respiratory syndrome coronavirus 2 antibody' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13050,7 +12923,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13074,7 +12946,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13098,7 +12969,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13123,7 +12993,6 @@ v: { "error" : "Unknown code '10821000202101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13167,7 +13036,6 @@ v: { "error" : "Wrong Display Name 'Diagnostisk med biopsi' for http://snomed.info/sct#446745002. Valid display is one of 2 choices: 'Colonoscopy and biopsy of colon (procedure)' or 'Colonoscopy and biopsy of colon' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13208,7 +13076,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13233,7 +13100,6 @@ v: { "error" : "Unknown code '8921000202108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13275,7 +13141,6 @@ v: { "error" : "Unknown code '8951000202101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13316,7 +13181,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13341,7 +13205,6 @@ v: { "error" : "Unknown code '10291000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13382,7 +13245,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13407,7 +13269,6 @@ v: { "error" : "Unknown code '8901000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13448,7 +13309,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13473,7 +13333,6 @@ v: { "error" : "Unknown code '8911000202100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13514,7 +13373,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13539,7 +13397,6 @@ v: { "error" : "Unknown code '8891000202103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13580,7 +13437,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13603,7 +13459,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13628,7 +13483,6 @@ v: { "error" : "Unknown code '15991000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13669,7 +13523,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13693,7 +13546,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13717,7 +13569,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13744,7 +13595,6 @@ v: { "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20210731' could not be found, so the code cannot be validated. Valid versions: [http://snomed.info/sct/11000146104/version/20230331,http://snomed.info/sct/11000172109/version/20231115,http://snomed.info/sct/2011000195101/version/20230607,http://snomed.info/sct/20611000087101/version/20220930,http://snomed.info/sct/32506021000036107/version/20230731,http://snomed.info/sct/45991000052106/version/20220531,http://snomed.info/sct/45991000052106/version/20231130,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20240301,http://snomed.info/sct/827022005/version/20221130,http://snomed.info/sct/83821000000107/version/20230412,http://snomed.info/sct/900000000000207008/version/20230131,http://snomed.info/sct/900000000000207008/version/20230731,http://snomed.info/sct/900000000000207008/version/20240201]", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13788,7 +13638,6 @@ v: { "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20210731' could not be found, so the code cannot be validated. Valid versions: [http://snomed.info/sct/11000146104/version/20230331,http://snomed.info/sct/11000172109/version/20231115,http://snomed.info/sct/2011000195101/version/20230607,http://snomed.info/sct/20611000087101/version/20220930,http://snomed.info/sct/32506021000036107/version/20230731,http://snomed.info/sct/45991000052106/version/20220531,http://snomed.info/sct/45991000052106/version/20231130,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20240301,http://snomed.info/sct/827022005/version/20221130,http://snomed.info/sct/83821000000107/version/20230412,http://snomed.info/sct/900000000000207008/version/20230131,http://snomed.info/sct/900000000000207008/version/20230731,http://snomed.info/sct/900000000000207008/version/20240201]", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13832,7 +13681,6 @@ v: { "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20210731' could not be found, so the code cannot be validated. Valid versions: [http://snomed.info/sct/11000146104/version/20230331,http://snomed.info/sct/11000172109/version/20231115,http://snomed.info/sct/2011000195101/version/20230607,http://snomed.info/sct/20611000087101/version/20220930,http://snomed.info/sct/32506021000036107/version/20230731,http://snomed.info/sct/45991000052106/version/20220531,http://snomed.info/sct/45991000052106/version/20231130,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20240301,http://snomed.info/sct/827022005/version/20221130,http://snomed.info/sct/83821000000107/version/20230412,http://snomed.info/sct/900000000000207008/version/20230131,http://snomed.info/sct/900000000000207008/version/20230731,http://snomed.info/sct/900000000000207008/version/20240201]; Unable to check whether the code is in the value set 'https://fhir.kbv.de/ValueSet/KBV_VS_Base_Body_Weight_Snomed|1.2.1' because the code system http://snomed.info/sct|http://snomed.info/sct/900000000000207008/version/20210731 was not found", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -13888,7 +13736,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13912,7 +13759,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13936,7 +13782,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13959,7 +13804,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -13983,7 +13827,6 @@ v: { "error" : "Unknown code '276885007x' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14041,7 +13884,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -14064,7 +13906,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -14087,7 +13928,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -14112,7 +13952,6 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", "inactive" : true, - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -14139,7 +13978,6 @@ v: { "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20210331' could not be found, so the code cannot be validated. Valid versions: [http://snomed.info/sct/11000146104/version/20230331,http://snomed.info/sct/11000172109/version/20231115,http://snomed.info/sct/2011000195101/version/20230607,http://snomed.info/sct/20611000087101/version/20220930,http://snomed.info/sct/32506021000036107/version/20230731,http://snomed.info/sct/45991000052106/version/20220531,http://snomed.info/sct/45991000052106/version/20231130,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20240301,http://snomed.info/sct/827022005/version/20221130,http://snomed.info/sct/83821000000107/version/20230412,http://snomed.info/sct/900000000000207008/version/20230131,http://snomed.info/sct/900000000000207008/version/20230731,http://snomed.info/sct/900000000000207008/version/20240201]", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14183,7 +14021,6 @@ v: { "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/11000146104/version/20220930' could not be found, so the code cannot be validated. Valid versions: [http://snomed.info/sct/11000146104/version/20230331,http://snomed.info/sct/11000172109/version/20231115,http://snomed.info/sct/2011000195101/version/20230607,http://snomed.info/sct/20611000087101/version/20220930,http://snomed.info/sct/32506021000036107/version/20230731,http://snomed.info/sct/45991000052106/version/20220531,http://snomed.info/sct/45991000052106/version/20231130,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20240301,http://snomed.info/sct/827022005/version/20221130,http://snomed.info/sct/83821000000107/version/20230412,http://snomed.info/sct/900000000000207008/version/20230131,http://snomed.info/sct/900000000000207008/version/20230731,http://snomed.info/sct/900000000000207008/version/20240201]", "class" : "CODESYSTEM_UNSUPPORTED_VERSION", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14227,7 +14064,6 @@ v: { "error" : "Wrong Display Name 'Paracetamol 500mg tablets' for http://snomed.info/sct#322236009. Valid display is one of 3 choices: 'Acetaminophen 500 mg oral tablet', 'Paracetamol 500 mg oral tablet' or 'Product containing precisely paracetamol 500 milligram/1 each conventional release oral tablet (clinical drug)' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14269,7 +14105,6 @@ v: { "error" : "Unknown code '35901911000001104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14309,7 +14144,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20240201", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -14336,7 +14170,6 @@ v: { "error" : "Wrong Display Name 'Ibuprofen 200mg tablets' for http://snomed.info/sct#329652003. Valid display is one of 2 choices: 'Ibuprofen 200 mg oral tablet' or 'Product containing precisely ibuprofen 200 milligram/1 each conventional release oral tablet (clinical drug)' (for the language(s) 'en-US')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14378,7 +14211,6 @@ v: { "error" : "Unknown code '39695211000001102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14420,7 +14252,6 @@ v: { "error" : "Unknown code '56248011000036107' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20240201'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -14444,3 +14275,554 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://snomed.info/sct", + "code" : "72098002", + "display" : "Entire left upper arm" +}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Entire left upper arm", + "code" : "72098002", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "17621005", + "display" : "Normal (qualifier value)" + }] +}, "url": "http://hl7.org/fhir/ValueSet/security-labels", "version": "4.0.1", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "severity" : "error", + "error" : "No valid coding was found for the value set 'http://hl7.org/fhir/ValueSet/security-labels|4.0.1'; The provided code 'http://snomed.info/sct#17621005 ('Normal (qualifier value)')' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|4.0.1'", + "class" : "UNKNOWN", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "MSG_RETIRED" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "information", + "code" : "business-rule", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "status-check" + }], + "text" : "Reference to retired ValueSet http://terminology.hl7.org/ValueSet/v3-ActUSPrivacyLaw|2.0.0" + } + }, + { + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "information", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "this-code-not-in-vs" + }], + "text" : "The provided code 'http://snomed.info/sct#17621005 ('Normal (qualifier value)')' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|4.0.1'" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }, + { + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "code-invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-in-vs" + }], + "text" : "No valid coding was found for the value set 'http://hl7.org/fhir/ValueSet/security-labels|4.0.1'" + } + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "96067005", + "display" : "Flucloxacillin-containing product" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing flucloxacillin (medicinal product)", + "code" : "96067005", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "48546005", + "display" : "Diazepam-containing product" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing diazepam (medicinal product)", + "code" : "48546005", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "40425004", + "display" : "Postconcussion syndrome" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Postconcussion syndrome", + "code" : "40425004", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "237599002", + "display" : "Diabetes type 2 on insulin" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Insulin treated Type II diabetes mellitus", + "code" : "237599002", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "90560007", + "display" : "Gout" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Gout", + "code" : "90560007", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "1201005", + "display" : "Benign essential hypertension" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Benign essential hypertension", + "code" : "1201005", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "52910006", + "display" : "Anxiety disorder due to a general medical condition" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Anxiety disorder due to a general medical condition", + "code" : "52910006", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "5913000", + "display" : "Fracture of neck of femur" + }] +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Fracture of neck of femur", + "code" : "5913000", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "126212009", + "display" : "Product containing insulin glargine (medicinal product)" + }], + "text" : "insulin glargine 100 international units/mL injection, 10 mL vial" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing insulin glargine (medicinal product)", + "code" : "126212009", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "714081009", + "display" : "Product containing dulaglutide (medicinal product)" + }], + "text" : "dulaglutide 1.5 mg/0.5 mL injection, prefilled injection device" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing dulaglutide (medicinal product)", + "code" : "714081009", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "109081006", + "display" : "Product containing metformin (medicinal product)" + }], + "text" : "metformin hydrochloride 1000 mg tablet" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing metformin (medicinal product)", + "code" : "109081006", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "108537001", + "display" : "Product containing amlodipine (medicinal product)" + }], + "text" : "amlodipine 5 mg tablet" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing amlodipine (medicinal product)", + "code" : "108537001", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "96309000", + "display" : "Product containing losartan (medicinal product)" + }], + "text" : "losartan potassium 50 mg tablet" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing losartan (medicinal product)", + "code" : "96309000", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "7947003", + "display" : "Product containing aspirin (medicinal product)" + }], + "text" : "aspirin 75 mg tablet: enteric-coated" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing aspirin (medicinal product)", + "code" : "7947003", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "25246002", + "display" : "Product containing allopurinol (medicinal product)" + }], + "text" : "allopurinol 300 mg tablet" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Product containing allopurinol (medicinal product)", + "code" : "25246002", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "265132005", + "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device" + }], + "text" : "Operative procedure on hip" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", + "code" : "265132005", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://snomed.info/sct", + "code" : "287903004", + "display" : "Suturing of hand" + }], + "text" : "Hand closure" +}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Suturing of hand", + "code" : "287903004", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20240201", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testStructureDefinitionadditional-bindings-profile-cs.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testStructureDefinitionadditional-bindings-profile-cs.cache new file mode 100644 index 000000000..a194229ef --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testStructureDefinitionadditional-bindings-profile-cs.cache @@ -0,0 +1,42 @@ +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://hl7.org/fhir/test/StructureDefinition/additional-bindings-profile-cs", + "code" : "digital-access" +}, "valueSet" :null, "langs":"en-US", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "code" : "digital-access", + "system" : "http://hl7.org/fhir/test/StructureDefinition/additional-bindings-profile-cs", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/test/StructureDefinition/additional-bindings-profile-cs' could not be found, so the code cannot be validated", + "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "http://hl7.org/fhir/test/StructureDefinition/additional-bindings-profile-cs", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/test/StructureDefinition/additional-bindings-profile-cs' could not be found, so the code cannot be validated" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ussdoh-clinicalcareCodeSystemSDOHCC-CodeSystemTemporaryCodes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ussdoh-clinicalcareCodeSystemSDOHCC-CodeSystemTemporaryCodes.cache new file mode 100644 index 000000000..ffc75d0de --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ussdoh-clinicalcareCodeSystemSDOHCC-CodeSystemTemporaryCodes.cache @@ -0,0 +1,83 @@ +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes", + "code" : "digital-access-x" +}, "valueSet" :null, "langs":"en-US", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "code" : "digital-access-x", + "system" : "http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes' could not be found, so the code cannot be validated", + "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes' could not be found, so the code cannot be validated" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes", + "code" : "digital-access" +}, "valueSet" :null, "langs":"en-US", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "code" : "digital-access", + "system" : "http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes' could not be found, so the code cannot be validated", + "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes' could not be found, so the code cannot be validated" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache index 1b8a5623c..084d88618 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache @@ -82,3 +82,45 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips", + "code" : "no-allergy-info", + "display" : "No information about allergies" +}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "code" : "no-allergy-info", + "system" : "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips", + "severity" : "error", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips' could not be found, so the code cannot be validated", + "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "not-found", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "not-found" + }], + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips' could not be found, so the code cannot be validated" + }, + "location" : ["Coding.system"], + "expression" : ["Coding.system"] + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/all-systems.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/all-systems.cache index 8a9098081..989978662 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/all-systems.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/all-systems.cache @@ -1038,7 +1038,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1059,7 +1058,6 @@ v: { "code" : "fr-CA", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1081,10 +1079,96 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } } ------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "5.0.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "World", + "code" : "001", + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "MSG_DEPRECATED" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "information", + "code" : "business-rule", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "status-check" + }], + "text" : "Reference to deprecated ValueSet http://hl7.org/fhir/ValueSet/jurisdiction|5.0.0" + } + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] +}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "5.0.0", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "World", + "code" : "001", + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id", + "valueString" : "MSG_DEPRECATED" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "information", + "code" : "business-rule", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "status-check" + }], + "text" : "Reference to deprecated ValueSet http://hl7.org/fhir/ValueSet/jurisdiction|5.0.0" + } + }] +} + +} +------------------------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 883b784e5..e3fa0de1b 100644 --- a/pom.xml +++ b/pom.xml @@ -14,14 +14,14 @@ HAPI FHIR --> org.hl7.fhir.core - 6.3.27-SNAPSHOT + 6.3.30-SNAPSHOT pom 1.26.0 32.0.1-jre 6.4.1 - 1.5.23-SNAPSHOT + 1.5.24 2.17.0 5.9.2 1.8.2