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 2de193dba..0898e67a3 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 @@ -1761,6 +1761,7 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte res.setIssues(issues); res.setStatus(inactive, status); res.setUnknownSystems(unknownSystems); + res.setServer(server); return res; } 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 f4639ab9c..084c29e29 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 @@ -572,6 +572,18 @@ public class TerminologyCache { if (first) first = false; else sw.write(",\r\n"); sw.write(" \"definition\" : \""+Utilities.escapeJson(ce.v.getDefinition()).trim()+"\""); } + if (ce.v.getStatus() != null) { + if (first) first = false; else sw.write(",\r\n"); + sw.write(" \"status\" : \""+Utilities.escapeJson(ce.v.getStatus()).trim()+"\""); + } + if (ce.v.getServer() != null) { + if (first) first = false; else sw.write(",\r\n"); + sw.write(" \"server\" : \""+Utilities.escapeJson(ce.v.getServer()).trim()+"\""); + } + if (ce.v.isInactive()) { + if (first) first = false; else sw.write(",\r\n"); + sw.write(" \"inactive\" : true"); + } if (ce.v.getUnknownSystems() != null) { if (first) first = false; else sw.write(",\r\n"); sw.write(" \"unknown-systems\" : \""+Utilities.escapeJson(CommaSeparatedStringBuilder.join(",", ce.v.getUnknownSystems())).trim()+"\""); @@ -638,12 +650,17 @@ public class TerminologyCache { String system = loadJS(o.get("system")); String version = loadJS(o.get("version")); String definition = loadJS(o.get("definition")); + String server = loadJS(o.get("server")); + String status = loadJS(o.get("status")); + boolean inactive = "true".equals(loadJS(o.get("inactive"))); String unknownSystems = loadJS(o.get("unknown-systems")); OperationOutcome oo = o.has("issues") ? (OperationOutcome) new JsonParser().parse(o.getAsJsonObject("issues")) : null; t = loadJS(o.get("class")); TerminologyServiceErrorClass errorClass = t == null ? null : TerminologyServiceErrorClass.valueOf(t) ; ce.v = new ValidationResult(severity, error, system, version, new ConceptDefinitionComponent().setDisplay(display).setDefinition(definition).setCode(code), display, null).setErrorClass(errorClass); ce.v.setUnknownSystems(CommaSeparatedStringBuilder.toSet(unknownSystems)); + ce.v.setServer(server); + ce.v.setStatus(inactive, status); if (oo != null) { ce.v.setIssues(oo.getIssue()); } @@ -782,5 +799,25 @@ public class TerminologyCache { return folder; } + public Map servers() { + Map servers = new HashMap<>(); + servers.put("http://local.fhir.org/r2", "tx.fhir.org"); + servers.put("http://local.fhir.org/r3", "tx.fhir.org"); + servers.put("http://local.fhir.org/r4", "tx.fhir.org"); + servers.put("http://local.fhir.org/r5", "tx.fhir.org"); + + servers.put("http://tx-dev.fhir.org/r2", "tx.fhir.org"); + servers.put("http://tx-dev.fhir.org/r3", "tx.fhir.org"); + servers.put("http://tx-dev.fhir.org/r4", "tx.fhir.org"); + servers.put("http://tx-dev.fhir.org/r5", "tx.fhir.org"); + + servers.put("http://tx.fhir.org/r2", "tx.fhir.org"); + servers.put("http://tx.fhir.org/r3", "tx.fhir.org"); + servers.put("http://tx.fhir.org/r4", "tx.fhir.org"); + servers.put("http://tx.fhir.org/r5", "tx.fhir.org"); + + return servers; + } + } \ No newline at end of file diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValidationResult.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValidationResult.java index 6cf543192..7b7357b31 100644 --- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValidationResult.java +++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/utilities/ValidationResult.java @@ -27,6 +27,7 @@ public class ValidationResult { private Set unknownSystems; private boolean inactive; private String status; + private String server; @Override public String toString() { @@ -310,4 +311,12 @@ public class ValidationResult { return true; } + public String getServer() { + return server; + } + + public void setServer(String server) { + this.server = server; + } + } \ No newline at end of file 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 b8b7952a9..e72e0b484 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 @@ -14,6 +14,7 @@ import org.hl7.fhir.r5.model.Extension; import org.hl7.fhir.r5.model.Parameters; import org.hl7.fhir.r5.model.Parameters.ParametersParameterComponent; import org.hl7.fhir.r5.model.UriType; +import org.hl7.fhir.r5.model.UrlType; import org.hl7.fhir.r5.model.ValueSet; import org.hl7.fhir.r5.model.ValueSet.ValueSetExpansionComponent; import org.hl7.fhir.r5.utils.ToolingExtensions; @@ -116,7 +117,7 @@ public class ValueSetProcessBase { } - protected List makeIssue(IssueSeverity level, IssueType type, String location, String message, OpIssueCode code) { + protected List makeIssue(IssueSeverity level, IssueType type, String location, String message, OpIssueCode code, String server) { OperationOutcomeIssueComponent result = new OperationOutcomeIssueComponent(); switch (level) { case ERROR: @@ -141,6 +142,9 @@ public class ValueSetProcessBase { if (code != null) { result.getDetails().addCoding("http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", code.toCode(), null); } + if (server != null) { + result.addExtension(ToolingExtensions.EXT_ISSUE_SERVER, new UrlType(server)); + } ArrayList list = new ArrayList<>(); list.add(result); return list; @@ -162,12 +166,18 @@ public class ValueSetProcessBase { && !(source.getStatus() == PublicationStatus.DRAFT || ToolingExtensions.getStandardsStatus(source) == StandardsStatus.DRAFT)) { addToIssues(issues, makeStatusIssue(path, "draft", I18nConstants.MSG_DRAFT, resource)); } + } else { + if (resource.getExperimental()) { + addToIssues(issues, makeStatusIssue(path, "experimental", I18nConstants.MSG_EXPERIMENTAL, resource)); + } else if ((resource.getStatus() == PublicationStatus.DRAFT || standardsStatus == StandardsStatus.DRAFT)) { + addToIssues(issues, makeStatusIssue(path, "draft", I18nConstants.MSG_DRAFT, resource)); + } } } } private List makeStatusIssue(String path, String id, String msg, CanonicalResource resource) { - List iss = makeIssue(IssueSeverity.INFORMATION, IssueType.BUSINESSRULE, null, context.formatMessage(msg, resource.getVersionedUrl(), null, resource.fhirType()), OpIssueCode.StatusCheck); + List iss = makeIssue(IssueSeverity.INFORMATION, IssueType.BUSINESSRULE, null, context.formatMessage(msg, resource.getVersionedUrl(), null, resource.fhirType()), OpIssueCode.StatusCheck, null); // this is a testing hack - see TerminologyServiceTests iss.get(0).setUserData("status-msg-name", "warning-"+id); 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 9456c51d1..bfd358468 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 @@ -81,6 +81,7 @@ import org.hl7.fhir.r5.terminologies.providers.SpecialCodeSystem; import org.hl7.fhir.r5.terminologies.providers.URICodeSystem; import org.hl7.fhir.r5.terminologies.utilities.TerminologyOperationContext; import org.hl7.fhir.r5.terminologies.utilities.TerminologyOperationContext.TerminologyServiceProtectionException; +import org.hl7.fhir.r5.terminologies.utilities.ValueSetProcessBase.OpIssueCode; import org.hl7.fhir.r5.terminologies.validation.ValueSetValidator.StringWithCode; import org.hl7.fhir.r5.terminologies.utilities.TerminologyServiceErrorClass; import org.hl7.fhir.r5.terminologies.utilities.ValidationResult; @@ -220,13 +221,14 @@ public class ValueSetValidator extends ValueSetProcessBase { ValidationProcessInfo info = new ValidationProcessInfo(); CodeableConcept vcc = new CodeableConcept(); + List resList = new ArrayList<>(); if (!options.isMembershipOnly()) { int i = 0; for (Coding c : code.getCoding()) { if (!c.hasSystem() && !c.hasUserData("val.sys.error")) { c.setUserData("val.sys.error", true); - info.addIssue(makeIssue(IssueSeverity.WARNING, IssueType.UNKNOWN, path+".coding["+i+"]", context.formatMessage(I18nConstants.CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE), OpIssueCode.NotFound)); + info.addIssue(makeIssue(IssueSeverity.WARNING, IssueType.INVALID, path+".coding["+i+"]", context.formatMessage(I18nConstants.CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE), OpIssueCode.InvalidData, null)); } else { VersionInfo vi = new VersionInfo(this); checkExpansion(c, vi); @@ -238,23 +240,42 @@ public class ValueSetValidator extends ValueSetProcessBase { if (c.hasVersion()) { String msg = context.formatMessage(I18nConstants.UNKNOWN_CODESYSTEM_VERSION, c.getSystem(), c.getVersion() , resolveCodeSystemVersions(c.getSystem()).toString()); unknownSystems.add(c.getSystem()+"|"+c.getVersion()); - res = new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.NOTFOUND, path+".coding["+i+"].system", msg, OpIssueCode.NotFound)).setUnknownSystems(unknownSystems); + res = new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.NOTFOUND, path+".coding["+i+"].system", msg, OpIssueCode.NotFound, null)).setUnknownSystems(unknownSystems); } else { String msg = context.formatMessage(I18nConstants.UNKNOWN_CODESYSTEM, c.getSystem(), c.getVersion()); unknownSystems.add(c.getSystem()); - res = new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.NOTFOUND, path+".coding["+i+"].system", msg, OpIssueCode.NotFound)).setUnknownSystems(unknownSystems); + res = new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.NOTFOUND, path+".coding["+i+"].system", msg, OpIssueCode.NotFound, null)).setUnknownSystems(unknownSystems); } } else { res = context.validateCode(options.withNoClient(), c, null); for (OperationOutcomeIssueComponent iss : res.getIssues()) { iss.resetPath("Coding", path+".coding["+i+"]"); } + if (res.isInactive()) { + String msg = context.formatMessage(I18nConstants.STATUS_CODE_WARNING_CODE, "not active", c.getCode()); + res.getIssues().addAll(makeIssue(IssueSeverity.INFORMATION, IssueType.INVALID, path+".coding["+i+"].code", msg, OpIssueCode.CodeRule, res.getServer())); + } + if (res.isOk()) { + vcc.addCoding(new Coding().setCode(res.getCode()).setVersion(res.getVersion()).setSystem(res.getSystem()).setDisplay(res.getDisplay())); + } } } else { c.setUserData("cs", cs); + + checkCanonical(info.getIssues(), path, cs, valueset); res = validateCode(path+".coding["+i+"]", c, cs, vcc, info); } info.getIssues().addAll(res.getIssues()); + if (res != null) { + resList.add(res); + if (!res.isOk() && !res.messageIsInIssues()) { + if (res.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED) { + info.getIssues().addAll(makeIssue(res.getSeverity(), IssueType.NOTFOUND, path+".coding["+i+"]", res.getMessage(), OpIssueCode.NotFound, res.getServer())); + } else { + info.getIssues().addAll(makeIssue(res.getSeverity(), IssueType.CODEINVALID, path+".coding["+i+"]", res.getMessage(), OpIssueCode.InvalidCode, res.getServer())); + } + } + } } i++; } @@ -285,13 +306,13 @@ public class ValueSetValidator extends ValueSetProcessBase { } if (ok != null && !ok) { msg = context.formatMessage(I18nConstants.NONE_OF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_ONE, null, valueset.getVersionedUrl(), cs); - info.getIssues().addAll(makeIssue(IssueSeverity.INFORMATION, IssueType.CODEINVALID, path+".coding["+i+"].code", msg, OpIssueCode.ThisNotInVS)); + info.getIssues().addAll(makeIssue(IssueSeverity.INFORMATION, IssueType.CODEINVALID, path+".coding["+i+"].code", msg, OpIssueCode.ThisNotInVS, null)); } i++; } if (result == null) { msg = context.formatMessage(I18nConstants.UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_, valueset.getVersionedUrl(), b.toString()); - info.getIssues().addAll(makeIssue(IssueSeverity.WARNING, unknownSystems.isEmpty() ? IssueType.CODEINVALID : IssueType.NOTFOUND, path, msg, OpIssueCode.VSProcessing)); + info.getIssues().addAll(makeIssue(IssueSeverity.WARNING, unknownSystems.isEmpty() ? IssueType.CODEINVALID : IssueType.NOTFOUND, path, msg, OpIssueCode.VSProcessing, null)); } else if (!result) { // to match Ontoserver OperationOutcomeIssueComponent iss = new OperationOutcomeIssueComponent(org.hl7.fhir.r5.model.OperationOutcome.IssueSeverity.ERROR, org.hl7.fhir.r5.model.OperationOutcome.IssueType.CODEINVALID); @@ -303,6 +324,7 @@ public class ValueSetValidator extends ValueSetProcessBase { // info.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, code.getCoding().size() == 1 ? path+".coding[0].code" : path, msg)); } } + if (vcc.hasCoding() && code.hasText()) { vcc.setText(code.getText()); } @@ -324,16 +346,26 @@ public class ValueSetValidator extends ValueSetProcessBase { } else if (result == null) { return new ValidationResult(IssueSeverity.WARNING, info.summary(), info.getIssues()); } else if (foundCoding == null && valueset != null) { - return new ValidationResult(IssueSeverity.ERROR, "Internal Error that should not happen", makeIssue(IssueSeverity.FATAL, IssueType.EXCEPTION, path, "Internal Error that should not happen", OpIssueCode.VSProcessing)); + return new ValidationResult(IssueSeverity.ERROR, "Internal Error that should not happen", makeIssue(IssueSeverity.FATAL, IssueType.EXCEPTION, path, "Internal Error that should not happen", OpIssueCode.VSProcessing, null)); } else if (info.getIssues().size() > 0) { String disp = lookupDisplay(foundCoding); ConceptDefinitionComponent cd = new ConceptDefinitionComponent(foundCoding.getCode()); cd.setDisplay(disp); return new ValidationResult(IssueSeverity.WARNING, info.summaryList(), foundCoding.getSystem(), getVersion(foundCoding), cd, disp, info.getIssues()).addCodeableConcept(vcc); - } else { + } else if (!result) { + if (valueset != null) { + throw new Error("what?"); + } else if (vcc.hasCoding()) { + return new ValidationResult(vcc.getCodingFirstRep().getSystem(), getVersion(vcc.getCodingFirstRep()), new ConceptDefinitionComponent(vcc.getCodingFirstRep().getCode()).setDisplay(vcc.getCodingFirstRep().getDisplay()), vcc.getCodingFirstRep().getDisplay()).addCodeableConcept(vcc); + } else { + throw new Error("what?"); + } + } else if (foundCoding != null) { ConceptDefinitionComponent cd = new ConceptDefinitionComponent(foundCoding.getCode()); cd.setDisplay(lookupDisplay(foundCoding)); return new ValidationResult(foundCoding.getSystem(), getVersion(foundCoding), cd, getPreferredDisplay(cd, null)).addCodeableConcept(vcc); + } else { + throw new Error("what?"); } } @@ -431,7 +463,7 @@ public class ValueSetValidator extends ValueSetProcessBase { if (problems.size() == 0) { throw new Error("Unable to resolve systems but no reason why"); // this is an error in the java code } else if (problems.size() == 1) { - return new ValidationResult(IssueSeverity.ERROR, problems.get(0).getMessage(), makeIssue(IssueSeverity.ERROR, IssueType.UNKNOWN, path, problems.get(0).getMessage(), problems.get(0).getCode())); + return new ValidationResult(IssueSeverity.ERROR, problems.get(0).getMessage(), makeIssue(IssueSeverity.ERROR, IssueType.UNKNOWN, path, problems.get(0).getMessage(), problems.get(0).getCode(), null)); } else { CommaSeparatedStringBuilder b = new CommaSeparatedStringBuilder("; "); for (StringWithCode s : problems) { @@ -439,7 +471,7 @@ public class ValueSetValidator extends ValueSetProcessBase { } ValidationResult vr = new ValidationResult(IssueSeverity.ERROR, b.toString(), null); for (StringWithCode s : problems) { - vr.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.UNKNOWN, path, s.getMessage(), s.getCode())); + vr.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.UNKNOWN, path, s.getMessage(), s.getCode(), vr.getServer())); } return vr; } @@ -452,15 +484,15 @@ public class ValueSetValidator extends ValueSetProcessBase { code.setSystem(system); } if (!code.hasSystem()) { - res = new ValidationResult(IssueSeverity.ERROR, context.formatMessage(I18nConstants.CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE), null); + res = new ValidationResult(IssueSeverity.WARNING, context.formatMessage(I18nConstants.CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE), null); if (!code.hasUserData("val.sys.error")) { code.setUserData("val.sys.error", true); - res.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.INVALID, path, context.formatMessage(I18nConstants.CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE), OpIssueCode.InvalidData)); + res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.INVALID, path, context.formatMessage(I18nConstants.CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE), OpIssueCode.InvalidData, null)); } } else { if (!Utilities.isAbsoluteUrl(system)) { String msg = context.formatMessage(I18nConstants.TERMINOLOGY_TX_SYSTEM_RELATIVE); - issues.addAll(makeIssue(IssueSeverity.ERROR, IssueType.INVALID, path+".system", msg, OpIssueCode.InvalidData)); + issues.addAll(makeIssue(IssueSeverity.ERROR, IssueType.INVALID, path+".system", msg, OpIssueCode.InvalidData, null)); } inExpansion = checkExpansion(code, vi); inInclude = checkInclude(code, vi); @@ -487,10 +519,10 @@ public class ValueSetValidator extends ValueSetProcessBase { valueset.getUrl(), code.getSystem(), code.getCode().toString()); - issues.addAll(makeIssue(IssueSeverity.ERROR, itype, path, msg, OpIssueCode.VSProcessing)); + issues.addAll(makeIssue(IssueSeverity.ERROR, itype, path, msg, OpIssueCode.VSProcessing, null)); throw new VSCheckerException(msg, issues, TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED); } else { - issues.addAll(makeIssue(IssueSeverity.ERROR, itype, path+".system", warningMessage, oic)); + issues.addAll(makeIssue(IssueSeverity.ERROR, itype, path+".system", warningMessage, oic, null)); res = new ValidationResult(IssueSeverity.WARNING, warningMessage, issues); if (valueset == null) { throw new VSCheckerException(warningMessage, issues, TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED); @@ -507,7 +539,7 @@ public class ValueSetValidator extends ValueSetProcessBase { } if (cs != null && cs.hasSupplements()) { String msg = context.formatMessage(I18nConstants.CODESYSTEM_CS_NO_SUPPLEMENT, cs.getUrl()); - return new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.NOTFOUND, path, msg, OpIssueCode.VSProcessing)); + return new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.NOTFOUND, path, msg, OpIssueCode.VSProcessing, null)); } if (cs!=null && cs.getContent() != CodeSystemContentMode.COMPLETE) { warningMessage = "Resolved system "+system+(cs.hasVersion() ? " (v"+cs.getVersion()+")" : "")+", but the definition "; @@ -588,7 +620,7 @@ public class ValueSetValidator extends ValueSetProcessBase { if (ok == null) { String m = context.formatMessage(I18nConstants.UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_, valueset.getVersionedUrl(), CommaSeparatedStringBuilder.join(",", unknownSystems)); res.addMessage(m); - res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.NOTFOUND, path, m, OpIssueCode.VSProcessing)); + res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.NOTFOUND, path, m, OpIssueCode.VSProcessing, null)); res.setUnknownSystems(unknownSystems); res.setSeverity(IssueSeverity.ERROR); // back patching for display logic issue res.setErrorClass(TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED); @@ -600,7 +632,7 @@ public class ValueSetValidator extends ValueSetProcessBase { // { String msg = context.formatMessagePlural(1, I18nConstants.NONE_OF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_, valueset.getVersionedUrl(), "'"+code.toString()+"'"); res.addMessage(msg).setSeverity(IssueSeverity.ERROR); - res.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.NotInVS)); + res.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.NotInVS, null)); res.setDefinition(null); res.setSystem(null); res.setDisplay(null); @@ -608,13 +640,13 @@ public class ValueSetValidator extends ValueSetProcessBase { // } } else if (warningMessage!=null) { String msg = context.formatMessage(I18nConstants.CODE_FOUND_IN_EXPANSION_HOWEVER_, warningMessage); - res = new ValidationResult(IssueSeverity.WARNING, msg, makeIssue(IssueSeverity.WARNING, IssueType.EXCEPTION, path, msg, OpIssueCode.VSProcessing)); + res = new ValidationResult(IssueSeverity.WARNING, msg, makeIssue(IssueSeverity.WARNING, IssueType.EXCEPTION, path, msg, OpIssueCode.VSProcessing, null)); } else if (inExpansion) { res.setMessage("Code found in expansion, however: " + res.getMessage()); - res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.EXCEPTION, path, res.getMessage(), OpIssueCode.VSProcessing)); + res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.EXCEPTION, path, res.getMessage(), OpIssueCode.VSProcessing, null)); } else if (inInclude) { res.setMessage("Code found in include, however: " + res.getMessage()); - res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.EXCEPTION, path, res.getMessage(), OpIssueCode.VSProcessing)); + res.getIssues().addAll(makeIssue(IssueSeverity.WARNING, IssueType.EXCEPTION, path, res.getMessage(), OpIssueCode.VSProcessing, null)); } } else if (res == null) { res = new ValidationResult(system, wv, null, null); @@ -622,7 +654,7 @@ public class ValueSetValidator extends ValueSetProcessBase { } else if ((res != null && !res.isOk())) { String msg = context.formatMessagePlural(1, I18nConstants.NONE_OF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_, valueset.getVersionedUrl(), "'"+code.toString()+"'"); res.addMessage(msg); - res.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.NotInVS)); + res.getIssues().addAll(makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.NotInVS, null)); } } if (res != null && res.getSeverity() == IssueSeverity.INFORMATION) { @@ -773,10 +805,10 @@ public class ValueSetValidator extends ValueSetProcessBase { if (cc == null) { if (cs.getContent() == CodeSystemContentMode.FRAGMENT) { String msg = context.formatMessage(I18nConstants.UNKNOWN_CODE_IN_FRAGMENT, code.getCode(), cs.getUrl(), cs.getVersion()); - return new ValidationResult(IssueSeverity.WARNING, msg, makeIssue(IssueSeverity.WARNING, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.InvalidCode)); + return new ValidationResult(IssueSeverity.WARNING, msg, makeIssue(IssueSeverity.WARNING, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.InvalidCode, null)); } else { String msg = context.formatMessage(I18nConstants.UNKNOWN_CODE_IN_VERSION, code.getCode(), cs.getUrl(), cs.getVersion()); - return new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.InvalidCode)); + return new ValidationResult(IssueSeverity.ERROR, msg, makeIssue(IssueSeverity.ERROR, IssueType.CODEINVALID, path+".code", msg, OpIssueCode.InvalidCode, null)); } } Coding vc = new Coding().setCode(cc.getCode()).setSystem(cs.getUrl()).setVersion(cs.getVersion()).setDisplay(getPreferredDisplay(cc, cs)); @@ -836,10 +868,10 @@ public class ValueSetValidator extends ValueSetProcessBase { } if (b.count() == 0) { String msg = context.formatMessagePlural(options.getLanguages().getLangs().size(), I18nConstants.NO_VALID_DISPLAY_FOUND, code.getSystem(), code.getCode(), code.getDisplay(), options.langSummary()); - return new ValidationResult(IssueSeverity.WARNING, msg, code.getSystem(), cs.getVersion(), cc, getPreferredDisplay(cc, cs), makeIssue(IssueSeverity.WARNING, IssueType.INVALID, path+".display", msg, OpIssueCode.Display)).setStatus(inactive, status); + return new ValidationResult(IssueSeverity.WARNING, msg, code.getSystem(), cs.getVersion(), cc, getPreferredDisplay(cc, cs), makeIssue(IssueSeverity.WARNING, IssueType.INVALID, path+".display", msg, OpIssueCode.Display, null)).setStatus(inactive, status); } else { String msg = context.formatMessagePlural(b.count(), ws ? I18nConstants.DISPLAY_NAME_WS_FOR__SHOULD_BE_ONE_OF__INSTEAD_OF : I18nConstants.DISPLAY_NAME_FOR__SHOULD_BE_ONE_OF__INSTEAD_OF, code.getSystem(), code.getCode(), b.toString(), code.getDisplay(), options.langSummary()); - return new ValidationResult(dispWarningStatus(), msg, code.getSystem(), cs.getVersion(), cc, getPreferredDisplay(cc, cs), makeIssue(dispWarning(), IssueType.INVALID, path+".display", msg, OpIssueCode.Display)).setStatus(inactive, status); + return new ValidationResult(dispWarningStatus(), msg, code.getSystem(), cs.getVersion(), cc, getPreferredDisplay(cc, cs), makeIssue(dispWarning(), IssueType.INVALID, path+".display", msg, OpIssueCode.Display, null)).setStatus(inactive, status); } } @@ -1220,7 +1252,7 @@ public class ValueSetValidator extends ValueSetProcessBase { if (res.getErrorClass() == TerminologyServiceErrorClass.UNKNOWN || res.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED || res.getErrorClass() == TerminologyServiceErrorClass.VALUESET_UNSUPPORTED) { if (info != null && res.getErrorClass() == TerminologyServiceErrorClass.CODESYSTEM_UNSUPPORTED) { // server didn't know the code system either - we'll take it face value - info.addIssue(makeIssue(IssueSeverity.WARNING, IssueType.UNKNOWN, path, context.formatMessage(I18nConstants.TERMINOLOGY_TX_SYSTEM_NOTKNOWN, system), OpIssueCode.NotFound)); + info.addIssue(makeIssue(IssueSeverity.WARNING, IssueType.UNKNOWN, path, context.formatMessage(I18nConstants.TERMINOLOGY_TX_SYSTEM_NOTKNOWN, system), OpIssueCode.NotFound, null)); for (ConceptReferenceComponent cc : vsi.getConcept()) { if (cc.getCode().equals(code)) { return true; @@ -1249,7 +1281,7 @@ public class ValueSetValidator extends ValueSetProcessBase { checkCanonical(info.getIssues(), path, cs, valueset); if ((valueset.getCompose().hasInactive() && !valueset.getCompose().getInactive()) || options.isActiveOnly()) { if (CodeSystemUtilities.isInactive(cs, code)) { - info.addIssue(makeIssue(IssueSeverity.ERROR, IssueType.BUSINESSRULE, path+".code", context.formatMessage(I18nConstants.STATUS_CODE_WARNING_CODE, "not active", code), OpIssueCode.CodeRule)); + info.addIssue(makeIssue(IssueSeverity.ERROR, IssueType.BUSINESSRULE, path+".code", context.formatMessage(I18nConstants.STATUS_CODE_WARNING_CODE, "not active", code), OpIssueCode.CodeRule, null)); return false; } } diff --git a/org.hl7.fhir.utilities/src/main/resources/Messages.properties b/org.hl7.fhir.utilities/src/main/resources/Messages.properties index f61a205f8..7a04d223f 100644 --- a/org.hl7.fhir.utilities/src/main/resources/Messages.properties +++ b/org.hl7.fhir.utilities/src/main/resources/Messages.properties @@ -186,7 +186,7 @@ Terminology_TX_NoValid_7 = None of the codes provided could be validated against Terminology_TX_NoValid_8 = None of the codes provided are in the maximum value set {0}, and a code from this value set is required) (codes = {1}) Terminology_TX_NoValid_9 = The code provided ({2}) could not be validated against the maximum value set {0}, (error = {1}) Terminology_TX_System_Invalid = Invalid System URI: {0} -Terminology_TX_System_NotKnown = Code System URI ''{0}'' could not be found so the code cannot be validated +Terminology_TX_System_NotKnown = A definition for CodeSystem ''{0}'' could not be found, so the code cannot be validated TERMINOLOGY_TX_SYSTEM_NOT_USABLE = The definition for the Code System with URI ''{0}'' doesn't provide any codes so the code cannot be validated Terminology_TX_System_Relative = Coding.system must be an absolute reference, not a local reference Terminology_TX_System_Unknown = Unknown Code System ''{0}'' @@ -927,8 +927,8 @@ SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE = The group {0} has already been used CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = Source Code System {0} doesn''t have all content (content = {1}), so the source codes cannot be checked CONCEPTMAP_GROUP_TARGET_INCOMPLETE = Target Code System {0} doesn''t have all content (content = {1}), so the target codes cannot be checked SD_NO_TYPE_CODE_ON_CODE = Snapshot for {1} element {0} has type.code without a value -UNKNOWN_CODESYSTEM = A definition for CodeSystem {0} could not be found, so the code cannot be validated -UNKNOWN_CODESYSTEM_VERSION = A definition for CodeSystem {0} version {1} could not be found, so the code cannot be validated. Valid versions: {2} +UNKNOWN_CODESYSTEM = A definition for CodeSystem ''{0}'' could not be found, so the code cannot be validated +UNKNOWN_CODESYSTEM_VERSION = A definition for CodeSystem ''{0}'' version ''{1}'' could not be found, so the code cannot be validated. Valid versions: {2} UNABLE_TO_INFER_CODESYSTEM = The System URI could not be determined for the code {0} in the ValueSet {1} VALUESET_TOO_COSTLY = The value set {0} has too many codes to display ({1}) VALUESET_TOO_COSTLY_TIME = The value set {0} took too long to process (>{1}sec) 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 9709e6da5..870eef734 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 @@ -724,7 +724,9 @@ public class BaseValidator implements IValidationContextResourceLoader { IssueType code = IssueType.fromCode(issue.getCode().toCode()); IssueSeverity severity = IssueSeverity.fromCode(issue.getSeverity().toCode()); ValidationMessage vmsg = new ValidationMessage(Source.TerminologyEngine, code, line, col, path, issue.getDetails().getText(), severity).setTxLink(txLink); - vmsg.setServer(issue.getExtensionString(ToolingExtensions.EXT_ISSUE_SERVER)); + if (issue.getExtensionString(ToolingExtensions.EXT_ISSUE_SERVER) != null) { + vmsg.setServer(issue.getExtensionString(ToolingExtensions.EXT_ISSUE_SERVER).replace("local.fhir.org", "tx-dev.fhir.org")); + } errors.add(vmsg); return vmsg; } diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/ValidationEngine.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/ValidationEngine.java index 18ab260e1..c9da47624 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/ValidationEngine.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/ValidationEngine.java @@ -1117,7 +1117,7 @@ public class ValidationEngine implements IValidatorResourceFetcher, IValidationP @Override public CodedContentValidationPolicy policyForCodedContent(IResourceValidator validator, Object appContext, String stackPath, ElementDefinition definition, StructureDefinition structure, BindingKind kind, ValueSet valueSet, List systems) { - return CodedContentValidationPolicy.VALUESET; + return CodedContentValidationPolicy.CODE; } @Override 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 73dad7755..61ddf651d 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 @@ -60,6 +60,7 @@ import org.apache.commons.codec.binary.Base64InputStream; import org.apache.commons.lang3.NotImplementedException; import org.apache.commons.lang3.StringUtils; import org.fhir.ucum.Decimal; +import org.hl7.elm.r1.Code; import org.hl7.fhir.exceptions.DefinitionException; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.exceptions.PathEngineException; @@ -153,6 +154,7 @@ import org.hl7.fhir.r5.model.StructureDefinition.TypeDerivationRule; import org.hl7.fhir.r5.model.TimeType; import org.hl7.fhir.r5.model.Timing; import org.hl7.fhir.r5.model.UriType; +import org.hl7.fhir.r5.model.UrlType; import org.hl7.fhir.r5.model.ValueSet; import org.hl7.fhir.r5.model.ValueSet.ValueSetExpansionContainsComponent; import org.hl7.fhir.r5.renderers.DataRenderer; @@ -1394,7 +1396,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } else { checked = true; ValidationResult vr = checkCodeOnServer(stack, valueset, cc); - bh.see(processTxIssues(errors, vr, element, path, false)); + bh.see(processTxIssues(errors, vr, element, path, !isBindingStrengthMakesUnknownsMatter(binding))); if (!vr.isOk()) { bindingsOk = false; if (vr.getErrorClass() != null && vr.getErrorClass() == TerminologyServiceErrorClass.NOSERVICE) { @@ -1480,6 +1482,17 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat return checkDisp; } + /** + * The terminology server will report an error for an unknown code system or version, or a dependent valueset + * + * but we only care for validation if the binding strength is strong enough. + * @param binding + * @return + */ + private boolean isBindingStrengthMakesUnknownsMatter(ElementDefinitionBindingComponent binding) { + return binding.getStrength() == BindingStrength.REQUIRED || binding.getStrength() != BindingStrength.EXTENSIBLE; + } + private boolean processTxIssues(List errors, ValidationResult vr, Element element, String path, boolean downGradeNotFounds) { boolean ok = true; if (vr != null) { @@ -1490,6 +1503,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat if (downGradeNotFounds && i.getDetails().hasCoding("http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "not-found")) { i.setSeverity(org.hl7.fhir.r5.model.OperationOutcome.IssueSeverity.INFORMATION); } + if (baseOptions.isDisplayWarningMode() && i.getSeverity() == org.hl7.fhir.r5.model.OperationOutcome.IssueSeverity.ERROR && i.getDetails().hasCoding("http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "invalid-display")) { + i.setSeverity(org.hl7.fhir.r5.model.OperationOutcome.IssueSeverity.WARNING); + } + if (i.getDetails().hasCoding("http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "invalid-display")) { + System.out.println("!"); + } var vmsg = txIssue(errors, null, vr.getTxLink(), element.line(), element.col(), path, i); if (vmsg.isError()) { ok = false; @@ -1570,7 +1589,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat // ignore this since we can't validate but it doesn't matter.. } else { ValidationResult vr = checkCodeOnServer(stack, valueset, cc); - ok = processTxIssues(errors, vr, element, path, false) && ok; + ok = processTxIssues(errors, vr, element, path, !isBindingStrengthMakesUnknownsMatter(binding)) && ok; if (!vr.isOk()) { bindingsOk = false; if (vr.getErrorClass() != null && vr.getErrorClass().isInfrastructure()) { @@ -1683,7 +1702,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat if (binding.getStrength() == BindingStrength.REQUIRED) { removeTrackedMessagesForLocation(errors, element, path); } - ok = processTxIssues(errors, vr, element, path, false) && ok; + ok = processTxIssues(errors, vr, element, path, !isBindingStrengthMakesUnknownsMatter(binding)) && ok; timeTracker.tx(t, "vc "+system+"#"+code+" '"+display+"'"); if (vr != null && !vr.isOk()) { if (vr.IsNoService()) @@ -1972,7 +1991,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat checked = true; vr = checkCodeOnServer(stack, valueset, c); } - ok = processTxIssues(errors, vr, element, path, false) && ok; + ok = processTxIssues(errors, vr, element, path, !isBindingStrengthMakesUnknownsMatter(binding)) && ok; timeTracker.tx(t, "vc "+c.getSystem()+"#"+c.getCode()+" '"+c.getDisplay()+"'"); if (binding.getStrength() == BindingStrength.REQUIRED) { @@ -2595,7 +2614,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat return ok; } - private boolean checkPrimitive(ValidationContext valContext, List errors, String path, String type, ElementDefinition context, Element e, StructureDefinition profile, NodeStack node, Element resource) throws FHIRException { + private boolean checkPrimitive(ValidationContext valContext, List errors, String path, String type, ElementDefinition context, Element e, StructureDefinition profile, NodeStack node, NodeStack parentNode, Element resource) throws FHIRException { boolean ok = true; if (isBlank(e.primitiveValue())) { if (e.primitiveValue() == null) @@ -2883,7 +2902,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat if (context.hasBinding() && e.primitiveValue() != null) { // special cases if ("StructureDefinition.type".equals(context.getPath()) && "http://hl7.org/fhir/StructureDefinition/StructureDefinition".equals(profile.getUrl())) { - ok = checkTypeValue(errors, path, e, node.getElement()); + ok = checkTypeValue(errors, path, e, parentNode.getElement()); } else { ok = checkPrimitiveBinding(valContext, errors, path, type, context, e, profile, node) && ok; } @@ -3424,7 +3443,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } vr = checkCodeOnServer(stack, vs, value, options); } - ok = processTxIssues(errors, vr, element, path, false) && ok; + ok = processTxIssues(errors, vr, element, path, !isBindingStrengthMakesUnknownsMatter(binding)) && ok; timeTracker.tx(t, "vc "+value+""); if (binding.getStrength() == BindingStrength.REQUIRED) { @@ -6217,7 +6236,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat boolean elementValidated = false; if (type != null) { if (isPrimitiveType(type)) { - ok = checkPrimitive(valContext, errors, ei.getPath(), type, checkDefn, ei.getElement(), profile, stack, valContext.getRootResource()) && ok; + ok = checkPrimitive(valContext, errors, ei.getPath(), type, checkDefn, ei.getElement(), profile, localStack, stack, valContext.getRootResource()) && ok; } else { if (checkDefn.hasFixed()) { ok = checkFixedValue(errors, ei.getPath(), ei.getElement(), checkDefn.getFixed(), profile.getVersionedUrl(), checkDefn.getSliceName(), null, false) && ok; @@ -6229,14 +6248,14 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat if (type.equals("Identifier")) { ok = checkIdentifier(errors, ei.getPath(), ei.getElement(), checkDefn) && ok; } else if (type.equals("Coding")) { - ok = checkCoding(errors, ei.getPath(), ei.getElement(), profile, checkDefn, inCodeableConcept, checkDisplayInContext, stack) && ok; + ok = checkCoding(errors, ei.getPath(), ei.getElement(), profile, checkDefn, inCodeableConcept, checkDisplayInContext, localStack) && ok; } else if (type.equals("Quantity")) { - ok = checkQuantity(errors, ei.getPath(), ei.getElement(), profile, checkDefn, stack) && ok; + ok = checkQuantity(errors, ei.getPath(), ei.getElement(), profile, checkDefn, localStack) && ok; } else if (type.equals("Attachment")) { - ok = checkAttachment(errors, ei.getPath(), ei.getElement(), profile, checkDefn, inCodeableConcept, checkDisplayInContext, stack) && ok; + ok = checkAttachment(errors, ei.getPath(), ei.getElement(), profile, checkDefn, inCodeableConcept, checkDisplayInContext, localStack) && ok; } else if (type.equals("CodeableConcept")) { BooleanHolder bh = new BooleanHolder(); - checkDisplay = checkCodeableConcept(errors, ei.getPath(), ei.getElement(), profile, checkDefn, stack, bh); + checkDisplay = checkCodeableConcept(errors, ei.getPath(), ei.getElement(), profile, checkDefn, localStack, bh); ok = bh.ok() & ok; thisIsCodeableConcept = true; } else if (type.equals("Reference")) { @@ -6271,11 +6290,11 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat if ("CDA".equals(style)) { if (!ei.getElement().hasChild("nullFlavor", false)) { if (cdaTypeIs(defn, "CS")) { - ok = checkCDACodeSimple(valContext, errors, ei.getPath(), ei.getElement(), profile, checkDefn, stack, defn) && ok; + ok = checkCDACodeSimple(valContext, errors, ei.getPath(), ei.getElement(), profile, checkDefn, localStack, defn) && ok; } else if (cdaTypeIs(defn, "CV") || cdaTypeIs(defn, "PQ")) { - ok = checkCDACoding(errors, ei.getPath(), cdaTypeIs(defn, "PQ"), ei.getElement(), profile, checkDefn, stack, defn, inCodeableConcept, checkDisplayInContext) && ok; + ok = checkCDACoding(errors, ei.getPath(), cdaTypeIs(defn, "PQ"), ei.getElement(), profile, checkDefn, localStack, defn, inCodeableConcept, checkDisplayInContext) && ok; } else if (cdaTypeIs(defn, "CD") || cdaTypeIs(defn, "CE")) { - ok = checkCDACodeableConcept(errors, ei.getPath(), ei.getElement(), profile, checkDefn, stack, defn) && ok; + ok = checkCDACodeableConcept(errors, ei.getPath(), ei.getElement(), profile, checkDefn, localStack, defn) && ok; thisIsCodeableConcept = true; } } @@ -6283,7 +6302,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat } } } else { - if (rule(errors, NO_RULE_DATE, IssueType.STRUCTURE, ei.line(), ei.col(), stack.getLiteralPath(), checkDefn != null, I18nConstants.VALIDATION_VAL_CONTENT_UNKNOWN, ei.getName())) { + if (rule(errors, NO_RULE_DATE, IssueType.STRUCTURE, ei.line(), ei.col(), localStack.getLiteralPath(), checkDefn != null, I18nConstants.VALIDATION_VAL_CONTENT_UNKNOWN, ei.getName())) { ok = validateElement(valContext, errors, profile, checkDefn, null, null, resource, ei.getElement(), type, localStack, false, true, null, pct, mode) && ok; } else { ok = false; @@ -7213,9 +7232,10 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat public ValidationResult checkCodeOnServer(NodeStack stack, ValueSet vs, String value, ValidationOptions options) { - return checkForInctive(context.validateCode(options, value, vs)); + return checkForInactive(filterOutSpecials(context.validateCode(options, value, vs)), new CodeType(value)); } + // no delay on this one? public ValidationResult checkCodeOnServer(NodeStack stack, String code, String system, String version, String display, boolean checkDisplay) { String lang = stack.getWorkingLang(); @@ -7223,28 +7243,42 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat lang = validationLanguage; } codingObserver.seeCode(stack, system, version, code, display); - return checkForInctive(context.validateCode(baseOptions.withLanguage(lang), system, version, code, checkDisplay ? display : null)); + return checkForInactive(filterOutSpecials(context.validateCode(baseOptions.withLanguage(lang), system, version, code, checkDisplay ? display : null)), new Coding(system, version, code, display)); } public ValidationResult checkCodeOnServer(NodeStack stack, ValueSet valueset, Coding c) { codingObserver.seeCode(stack, c); if (false) { // #FIXME - return checkForInctive( context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()).withCheckValueSetOnly(), c, valueset)); + return checkForInactive(filterOutSpecials(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()).withCheckValueSetOnly(), c, valueset)), c); } else { - return checkForInctive(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()), c, valueset)); + return checkForInactive(filterOutSpecials(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()), c, valueset)), c); } } public ValidationResult checkCodeOnServer(NodeStack stack, ValueSet valueset, CodeableConcept cc) { codingObserver.seeCode(stack, cc); if (false) { // #FIXME - return checkForInctive(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()).withCheckValueSetOnly(), cc, valueset)); + return checkForInactive(filterOutSpecials(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()).withCheckValueSetOnly(), cc, valueset)), cc); } else { - return checkForInctive(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()), cc, valueset)); + return checkForInactive(filterOutSpecials(context.validateCode(baseOptions.withLanguage(stack.getWorkingLang()), cc, valueset)), cc); } } - private ValidationResult checkForInctive(ValidationResult res) { + private ValidationResult filterOutSpecials(ValidationResult vr) { + // this is where we hack around problems in the infrastructure that lead to technically correct errors + // but that are wrong to the validator user + + // first case: the type value set is wrong for primitive special types + for (OperationOutcomeIssueComponent iss : vr.getIssues()) { + if (iss.getDetails().getText().startsWith("Unable to resolve system - value set expansion has no matches for code 'http://hl7.org/fhirpath/System")) { + return new ValidationResult("http://hl7.org/fhirpath/System", null, null, null); + } + } + return vr; + + } + + private ValidationResult checkForInactive(ValidationResult res, DataType coded) { if (res == null) { return null; } @@ -7270,6 +7304,25 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat msgId = res.isOk() ? I18nConstants.STATUS_CODE_WARNING : I18nConstants.STATUS_CODE_HINT; } op.getDetails().setText(context.formatMessage(msgId, status, code)); + if (res.getServer() != null) { + op.addExtension(ToolingExtensions.EXT_ISSUE_SERVER, new UrlType(res.getServer())); + } + if (coded instanceof CodeType) { + op.addExpression(coded.fhirType()); + op.addLocation(coded.fhirType()); + } else if (coded instanceof Coding) { + op.addExpression(coded.fhirType()+".code"); + op.addLocation(coded.fhirType()+".code"); + } else if (coded instanceof CodeableConcept) { + CodeableConcept cc = (CodeableConcept) coded; + if (cc.getCoding().size() == 1) { + op.addExpression(coded.fhirType()+".coding[0].code"); + op.addLocation(coded.fhirType()+".coding[0].code"); + } else { + op.addExpression(coded.fhirType()); + op.addLocation(coded.fhirType()); + } + } res.getIssues().add(op); return res; } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/lang.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/lang.cache deleted file mode 100644 index 2a57f0f18..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/lang.cache +++ /dev/null @@ -1,15 +0,0 @@ -------------------------------------------------------------------------------------- -{"hierarchical" : false, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "inactive" : true, - "include" : [{ - "system" : "urn:ietf:bcp:47" - }] - } -}}#### -e: { - "from-server" : true, - "error" : "Cannot invoke \"org.hl7.fhir.r5.terminologies.client.ITerminologyClient.expandValueset(org.hl7.fhir.r5.model.ValueSet, org.hl7.fhir.r5.model.Parameters, java.util.Map)\" because the return value of \"org.hl7.fhir.r5.terminologies.client.TerminologyClientContext.getClient()\" is null" -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/loinc.cache deleted file mode 100644 index ade482641..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/loinc.cache +++ /dev/null @@ -1,47 +0,0 @@ -------------------------------------------------------------------------------------- -{"hierarchical" : false, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "inactive" : true, - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "A." - }], - "code" : "LA20752-4", - "display" : "Within 24 hours" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "B." - }], - "code" : "LA20753-2", - "display" : "After 24 hours but before 3 days" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "C." - }], - "code" : "LA20754-0", - "display" : "Three days or later" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "D." - }], - "code" : "LA4489-6", - "display" : "Unknown" - }] - }] - } -}}#### -e: { - "from-server" : true, - "error" : "Cannot invoke \"org.hl7.fhir.r5.terminologies.client.ITerminologyClient.expandValueset(org.hl7.fhir.r5.model.ValueSet, org.hl7.fhir.r5.model.Parameters, java.util.Map)\" because the return value of \"org.hl7.fhir.r5.terminologies.client.TerminologyClientContext.getClient()\" is null" -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/mimetypes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/mimetypes.cache deleted file mode 100644 index 5eef85a1e..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/mimetypes.cache +++ /dev/null @@ -1,15 +0,0 @@ -------------------------------------------------------------------------------------- -{"hierarchical" : false, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "inactive" : true, - "include" : [{ - "system" : "urn:ietf:bcp:13" - }] - } -}}#### -e: { - "from-server" : true, - "error" : "Cannot invoke \"org.hl7.fhir.r5.terminologies.client.ITerminologyClient.expandValueset(org.hl7.fhir.r5.model.ValueSet, org.hl7.fhir.r5.model.Parameters, java.util.Map)\" because the return value of \"org.hl7.fhir.r5.terminologies.client.TerminologyClientContext.getClient()\" is null" -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/ucum.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/ucum.cache deleted file mode 100644 index 5e88ce8e0..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.r5/ucum.cache +++ /dev/null @@ -1,99 +0,0 @@ -------------------------------------------------------------------------------------- -{"hierarchical" : false, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "inactive" : true, - "include" : [{ - "system" : "http://unitsofmeasure.org", - "concept" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "second" - }], - "code" : "s", - "display" : "second", - "designation" : [{ - "language" : "zh", - "value" : "秒" - }] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "minute" - }], - "code" : "min", - "display" : "minute", - "designation" : [{ - "language" : "zh", - "value" : "分钟" - }] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "hour" - }], - "code" : "h", - "display" : "hour", - "designation" : [{ - "language" : "zh", - "value" : "小时" - }] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "day" - }], - "code" : "d", - "display" : "day", - "designation" : [{ - "language" : "zh", - "value" : "天" - }] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "week" - }], - "code" : "wk", - "display" : "week", - "designation" : [{ - "language" : "zh", - "value" : "星期" - }] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "month - Normal practice is to use the 'mo' code as a calendar month when calculating the next occurrence." - }], - "code" : "mo", - "display" : "month", - "designation" : [{ - "language" : "zh", - "value" : "月" - }] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition", - "valueString" : "year" - }], - "code" : "a", - "display" : "year", - "designation" : [{ - "language" : "zh", - "value" : "年" - }] - }] - }] - } -}}#### -e: { - "from-server" : true, - "error" : "Cannot invoke \"org.hl7.fhir.r5.terminologies.client.ITerminologyClient.expandValueset(org.hl7.fhir.r5.model.ValueSet, org.hl7.fhir.r5.model.Parameters, java.util.Map)\" because the return value of \"org.hl7.fhir.r5.terminologies.client.TerminologyClientContext.getClient()\" is null" -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.capabilityStatement.cache index cac9a93c9..327146448 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.capabilityStatement.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/.capabilityStatement.cache @@ -16,7 +16,7 @@ "version" : "1.0.2-3.0.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2023-12-30T11:30:16.577Z", + "date" : "2024-01-03T11:04:31.312Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/http___acme.org_devices_clinical-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/http___acme.org_devices_clinical-codes.cache index 5cd0b2277..05fb0baea 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/http___acme.org_devices_clinical-codes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/http___acme.org_devices_clinical-codes.cache @@ -13,15 +13,16 @@ v: { "code" : "body-weight", "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://acme.org/devices/clinical-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r2", "unknown-systems" : "http://acme.org/devices/clinical-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r2" + "valueUrl" : "http://local.fhir.org/r2" }], "severity" : "error", "code" : "not-found", @@ -30,46 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated" - }, - "location" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/devices/clinical-codes", - "code" : "body-weight", - "display" : "Body Weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "body-weight", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.org/devices/clinical-codes", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r2" - }], - "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://acme.org/devices/clinical-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://acme.org/devices/clinical-codes' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"] }] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/loinc.cache index 32f02563b..d4ffcd31c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/loinc.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/loinc.cache @@ -15,28 +15,7 @@ v: { "code" : "3141-9", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3141-9", - "display" : "Weight Measured" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight Measured", - "code" : "3141-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r2", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/observation-category.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/observation-category.cache index eb34a36d4..abee0ee45 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/observation-category.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/observation-category.cache @@ -17,52 +17,14 @@ v: { "code" : "vital-signs", "system" : "http://hl7.org/fhir/observation-category", "version" : "1.0.2", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r2" - }], - "severity" : "information", - "code" : "business-rule", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "status-check" - }], - "text" : "Reference to experimental CodeSystem http://hl7.org/fhir/observation-category|1.0.2" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/observation-category", - "code" : "vital-signs", - "display" : "Vital Signs" - }] -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Vital Signs", - "code" : "vital-signs", - "system" : "http://hl7.org/fhir/observation-category", - "version" : "1.0.2", + "server" : "http://local.fhir.org/r2", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r2" + "valueUrl" : "http://local.fhir.org/r2" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/snomed.cache index 8070f307f..bda853250 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/snomed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/snomed.cache @@ -15,28 +15,7 @@ v: { "code" : "27113001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "27113001", - "display" : "Body weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "27113001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r2", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/ucum.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/ucum.cache index 3218f62e9..52230e89a 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/ucum.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/ucum.cache @@ -14,27 +14,7 @@ v: { "code" : "[lb_av]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "[lb_av]" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "[lb_av]", - "code" : "[lb_av]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", + "server" : "http://local.fhir.org/r2", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.capabilityStatement.cache index 4f6955508..39341668c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.capabilityStatement.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/.capabilityStatement.cache @@ -16,7 +16,7 @@ "version" : "3.0.2-3.0.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2023-12-30T11:30:19.273Z", + "date" : "2024-01-03T11:04:34.020Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.capabilityStatement.cache index 24b6b1617..b69a34a9b 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.capabilityStatement.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/.capabilityStatement.cache @@ -16,7 +16,7 @@ "version" : "3.0.2-3.0.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2023-12-30T11:30:22.024Z", + "date" : "2024-01-03T11:04:36.564Z", "contact" : [{ "telecom" : [{ "system" : "other", 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 6c93d60ce..4744079ba 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 @@ -12,6 +12,7 @@ v: { "display" : "Finnish", "code" : "fi", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -33,6 +34,7 @@ v: { "code" : "d", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -60,6 +62,7 @@ v: { "display" : "image/jpg", "code" : "image/jpg", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -87,6 +90,7 @@ v: { "display" : "application/pdf", "code" : "application/pdf", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -107,6 +111,7 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -128,15 +133,16 @@ v: { v: { "code" : "urn:ihe:iti:xds:2017:mimeTypeSufficient", "severity" : "error", - "error" : "A definition for CodeSystem http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode could not be found, so the code cannot be validated; 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|20150326'", + "error" : "A definition for CodeSystem 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode' could not be found, so the code cannot be validated; 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|20150326'", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -145,7 +151,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -153,7 +159,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -187,6 +193,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -207,6 +214,7 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.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/http___acme.org.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org.cache index 82f9c1256..3b0f05d0d 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org.cache @@ -13,15 +13,16 @@ v: { "code" : "example", "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://acme.org' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://acme.org", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://acme.org could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://acme.org' 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/3.0.2/http___acme.org_devices_clinical-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org_devices_clinical-codes.cache deleted file mode 100644 index e101084c7..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org_devices_clinical-codes.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/devices/clinical-codes", - "code" : "body-weight", - "display" : "Body Weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "body-weight", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.org/devices/clinical-codes", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://acme.org/devices/clinical-codes 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/3.0.2/http___acme.org_not-snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org_not-snomed.cache index fe46ff58e..267c66980 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org_not-snomed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org_not-snomed.cache @@ -12,15 +12,16 @@ v: { "code" : "27171005", "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/not-snomed could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://acme.org/not-snomed' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://acme.org/not-snomed", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://acme.org/not-snomed could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://acme.org/not-snomed' 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/3.0.2/http___example.org_system.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___example.org_system.cache index 9652b8e23..134038d63 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___example.org_system.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___example.org_system.cache @@ -13,15 +13,16 @@ v: { "code" : "xxx", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/system could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/system' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://example.org/system", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/system could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/system' 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/3.0.2/http___mydomain.org_fhir_cs_mydomain.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___mydomain.org_fhir_cs_mydomain.cache index b820af029..9df488b75 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___mydomain.org_fhir_cs_mydomain.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___mydomain.org_fhir_cs_mydomain.cache @@ -13,15 +13,16 @@ v: { "code" : "very-high", "severity" : "error", - "error" : "A definition for CodeSystem http://mydomain.org/fhir/cs/mydomain could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://mydomain.org/fhir/cs/mydomain' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://mydomain.org/fhir/cs/mydomain", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://mydomain.org/fhir/cs/mydomain could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://mydomain.org/fhir/cs/mydomain' 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/3.0.2/http___myownsystem.info_sct.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___myownsystem.info_sct.cache index f11496805..991aae01e 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___myownsystem.info_sct.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___myownsystem.info_sct.cache @@ -13,15 +13,16 @@ v: { "code" : "104", "severity" : "error", - "error" : "A definition for CodeSystem http://myownsystem.info/sct could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://myownsystem.info/sct' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://myownsystem.info/sct", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://myownsystem.info/sct could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://myownsystem.info/sct' 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/3.0.2/http___spms.min-saude.pt_valueset-list-empty-reason.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list-empty-reason.cache index 675990de3..c454ab988 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list-empty-reason.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list-empty-reason.cache @@ -13,15 +13,16 @@ v: { "code" : "not-found", "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list-empty-reason could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://spms.min-saude.pt/valueset-list-empty-reason' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://spms.min-saude.pt/valueset-list-empty-reason", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list-empty-reason could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://spms.min-saude.pt/valueset-list-empty-reason' 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/3.0.2/http___spms.min-saude.pt_valueset-list.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list.cache index 7871cf679..737cf5ba1 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list.cache @@ -13,15 +13,16 @@ v: { "code" : "PMT", "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://spms.min-saude.pt/valueset-list' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://spms.min-saude.pt/valueset-list", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,379 +31,10 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://spms.min-saude.pt/valueset-list' could not be found, so the code cannot be validated" }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "ORI", - "display" : "Orientação/agendamentos" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "MCDTM", - "display" : "Meios complementares de diagnóstico marcados" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "FDE", - "display" : "Focos de diagnóstio de enfermagem" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "ATI", - "display" : "Atitudes terapêuticas" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "DIS", - "display" : "Dispositivos implantáveis" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "INT", - "display" : "Intervenções cirúrgicas" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "VEN", - "display" : "Ventilação mecânica" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "INF", - "display" : "Infeção nosocomial" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "MCDTE", - "display" : "Meios complementares de diagnósticos efetuados" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://spms.min-saude.pt/valueset-list", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "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://spms.min-saude.pt/valueset-list could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___tst.org_fhir_CodeSystem_test-meds.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___tst.org_fhir_CodeSystem_test-meds.cache index 3934ae887..840ebe15c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___tst.org_fhir_CodeSystem_test-meds.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___tst.org_fhir_CodeSystem_test-meds.cache @@ -22,15 +22,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated; A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated; A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated; A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated; A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://tst.org/fhir/CodeSystem/test-meds", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -39,7 +40,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -71,15 +72,16 @@ v: { }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated; A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated; A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated; A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated; A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "http://tst.org/fhir/CodeSystem/test-meds", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -88,7 +90,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://tst.org/fhir/CodeSystem/test-meds could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://tst.org/fhir/CodeSystem/test-meds' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/https___fhir.hl7.org.uk_STU3_CodeSystem_CareConnect-NHSNumberVerificationStatus-1.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/https___fhir.hl7.org.uk_STU3_CodeSystem_CareConnect-NHSNumberVerificationStatus-1.cache index 0b6cd40e2..f88880cbf 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/https___fhir.hl7.org.uk_STU3_CodeSystem_CareConnect-NHSNumberVerificationStatus-1.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/https___fhir.hl7.org.uk_STU3_CodeSystem_CareConnect-NHSNumberVerificationStatus-1.cache @@ -13,15 +13,16 @@ v: { "code" : "01", "severity" : "error", - "error" : "A definition for CodeSystem https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1' 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/3.0.2/iso3166.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/iso3166.cache index 8031eeb30..468a4f9d7 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/iso3166.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/iso3166.cache @@ -14,30 +14,7 @@ v: { "code" : "NL", "system" : "urn:iso:std:iso:3166", "version" : "2018", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:iso:std:iso:3166", - "code" : "NL" - }] -}, "langs":"", "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" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -61,31 +38,7 @@ v: { "code" : "NL", "system" : "urn:iso:std:iso:3166", "version" : "2018", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:iso:std:iso:3166", - "code" : "NL", - "display" : "Netherlands" - }] -}, "langs":"", "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" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -109,6 +62,7 @@ v: { "code" : "NL", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -131,6 +85,7 @@ v: { "code" : "NL", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -153,6 +108,7 @@ v: { "code" : "NL", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -176,6 +132,7 @@ v: { "code" : "NL", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -199,6 +156,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -221,6 +179,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.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/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/loinc.cache index 0bf580f15..395c225f2 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/loinc.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/loinc.cache @@ -15,30 +15,8 @@ v: { "code" : "19935-6", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "19935-6", - "display" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter" - }] -}, "langs":"fi", "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" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter", - "code" : "19935-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -60,6 +38,8 @@ v: { "code" : "19935-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -82,6 +62,8 @@ v: { "code" : "19935-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -103,6 +85,8 @@ v: { "code" : "28655-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -124,6 +108,8 @@ v: { "code" : "28655-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -145,6 +131,8 @@ v: { "code" : "28655-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -167,30 +155,8 @@ v: { "code" : "29299-5", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29299-5", - "display" : "Reason for visit Narrative" - }] -}, "langs":"", "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" : "Reason for visit Narrative", - "code" : "29299-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -213,30 +179,8 @@ v: { "code" : "10183-2", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10183-2", - "display" : "Hospital discharge medications Narrative" - }] -}, "langs":"", "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 discharge medications Narrative", - "code" : "10183-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -259,30 +203,8 @@ v: { "code" : "48765-2", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" - }] -}, "langs":"", "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" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -304,30 +226,8 @@ v: { "code" : "46241-6", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "46241-6" - }], - "text" : "Reason for admission" -}, "langs":"", "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 diagnosis Narrative - Reported", - "code" : "46241-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -350,6 +250,8 @@ v: { "code" : "18842-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -371,6 +273,8 @@ v: { "code" : "18842-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -393,6 +297,8 @@ v: { "code" : "18842-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -416,12 +322,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Allergies' for http://loinc.org#48765-2 - should be one of 28 choices: 'Allergies and adverse reactions Document', 'Allergies &or adverse reactions Doc', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 医疗服务对象' (zh-CN), '客户' (zh-CN), '病人' (zh-CN), '病患' (zh-CN), '病号' (zh-CN), '超系统 - 病人 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 变态反应与不良反应 文档.其他' (zh-CN), '杂项类文档' (zh-CN), '其他文档 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 杂项' (zh-CN), '杂项类' (zh-CN), '杂项试验 过敏反应' (zh-CN), '过敏' (zh-CN), 'Allergie e reazioni avverse Documentazione miscellanea Miscellanea Osservazione paziente Punto nel tempo (episodio)' (it-IT), 'Документ Точка во времени' (ru-RU) or 'Момент' (ru-RU) (for the language(s) '--')", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "invalid", @@ -455,30 +363,8 @@ v: { "code" : "8648-8", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8648-8", - "display" : "Hospital course Narrative" - }] -}, "langs":"", "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 course Narrative", - "code" : "8648-8", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -501,30 +387,8 @@ v: { "code" : "78375-3", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "78375-3", - "display" : "Discharge diagnosis Narrative" - }] -}, "langs":"", "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" : "Discharge diagnosis Narrative", - "code" : "78375-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -547,30 +411,8 @@ v: { "code" : "75311-1", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "75311-1", - "display" : "Discharge medications Narrative" - }] -}, "langs":"", "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" : "Discharge medications Narrative", - "code" : "75311-1", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -593,30 +435,8 @@ v: { "code" : "42347-5", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "42347-5", - "display" : "Admission diagnosis (narrative)" - }] -}, "langs":"", "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" : "Admission diagnosis (narrative)", - "code" : "42347-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -639,30 +459,8 @@ v: { "code" : "42346-7", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "42346-7", - "display" : "Medications on admission (narrative)" - }] -}, "langs":"", "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" : "Medications on admission (narrative)", - "code" : "42346-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -685,30 +483,8 @@ v: { "code" : "42344-2", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "42344-2", - "display" : "Discharge diet (narrative)" - }] -}, "langs":"", "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" : "Discharge diet (narrative)", - "code" : "42344-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -731,30 +507,8 @@ v: { "code" : "10164-2", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10164-2", - "display" : "History of Present illness Narrative" - }] -}, "langs":"", "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" : "History of Present illness Narrative", - "code" : "10164-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -778,12 +532,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Plan of care' for http://loinc.org#18776-5 - should be one of 30 choices: 'Plan of care note', 'Plan of care note', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 事件发生的地方' (zh-CN), '场景' (zh-CN), '环境' (zh-CN), '背景 医疗服务(照护服务、护理服务、护理、照护、医疗照护、诊疗、诊疗服务、照顾、看护)计划(方案)记录 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 文档本体' (zh-CN), '临床文档本体' (zh-CN), '文档本体' (zh-CN), '文书本体' (zh-CN), '医疗文书本体' (zh-CN), '临床医疗文书本体 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 未加明确说明的角色 笔记' (zh-CN), '按语' (zh-CN), '注释' (zh-CN), '说明' (zh-CN), '票据' (zh-CN), '单据' (zh-CN), '证明书' (zh-CN) or 'Documentazione dell'ontologia Osservazione Piano di cura Punto nel tempo (episodio) Ruolo non specificato' (it-IT) (for the language(s) '--')", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "invalid", @@ -817,30 +573,8 @@ v: { "code" : "47420-5", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "47420-5", - "display" : "Functional status assessment note" - }] -}, "langs":"", "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" : "Functional status assessment note", - "code" : "47420-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -863,30 +597,8 @@ v: { "code" : "47519-4", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" - }] -}, "langs":"", "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" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -910,12 +622,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Review of systems Narrative Reporte' for http://loinc.org#10187-3 - should be one of 41 choices: 'Review of systems Narrative - Reported', 'Review of systems', '医疗服务对象' (zh-CN), '客户' (zh-CN), '病人' (zh-CN), '病患' (zh-CN), '病号' (zh-CN), '超系统 - 病人 历史纪录与体格检查 历史纪录与体格检查.历史记录' (zh-CN), '历史纪录与体格检查.历史记录类' (zh-CN), '历史纪录与体格检查.历史记录类别' (zh-CN), '历史纪录与体格检查.病史' (zh-CN), '历史纪录与体格检查.病史类' (zh-CN), '历史纪录与体格检查.病史类别' (zh-CN), '历史纪录与体格检查.病史记录' (zh-CN), '历史纪录与体格检查.病史记录类' (zh-CN), '历史纪录与体格检查.病史记录类别' (zh-CN), '历史纪录与体格检查小节.历史记录' (zh-CN), '历史纪录与体格检查小节.历史记录类' (zh-CN), '历史纪录与体格检查小节.历史记录类别' (zh-CN), '历史纪录与体格检查小节.病史' (zh-CN), '历史纪录与体格检查小节.病史类' (zh-CN), '历史纪录与体格检查小节.病史类别 历史纪录与体格检查小节 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 叙述' (zh-CN), '叙述性文字' (zh-CN), '报告' (zh-CN), '报告型' (zh-CN), '文字叙述' (zh-CN), '文本叙述型' (zh-CN), '文本描述' (zh-CN), '文本描述型 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 病史与体格检查 系统回顾' (zh-CN), '系统审核' (zh-CN), 'Anamnesi Osservazione paziente Punto nel tempo (episodio)' (it-IT), 'Анамнестические сведения' (ru-RU), 'Сообщенная третьим лицом информация Описательный Точка во времени' (ru-RU) or 'Момент' (ru-RU) (for the language(s) '--')", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "invalid", @@ -950,12 +664,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Administrative information' for http://loinc.org#87504-7 - should be 'LCDS v4.00 - Administrative information - discharge [CMS Assessment]' (for the language(s) '--')", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "invalid", @@ -989,75 +705,7 @@ v: { "code" : "2069-3", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "2069-3", - "display" : "Chloride [Moles/volume] in Blood" - }] -}, "langs":"", "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" : "Chloride [Moles/volume] in Blood", - "code" : "2069-3", - "system" : "http://loinc.org", - "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body Weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3141-9", - "display" : "Body weight Measured" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight Measured", - "code" : "3141-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.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/referencerange-meaning.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/referencerange-meaning.cache index f63f54b3e..f29708f3f 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/referencerange-meaning.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/referencerange-meaning.cache @@ -18,13 +18,14 @@ v: { "code" : "normal", "system" : "http://hl7.org/fhir/referencerange-meaning", "version" : "3.0.2", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "information", "code" : "business-rule", 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 db420dbbe..d5f236bc3 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 @@ -14,30 +14,8 @@ v: { "code" : "66493003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "66493003" - }], - "text" : "Theophylline 200mg" -}, "langs":"", "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 theophylline (medicinal product)", - "code" : "66493003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -60,30 +38,8 @@ v: { "code" : "394899003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "394899003", - "display" : "oral administration of treatment" - }] -}, "langs":"", "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" : "Oral administration of treatment", - "code" : "394899003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -107,12 +63,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Laboratory test finding (finding)' for http://snomed.info/sct#118246004 - should be one of 4 choices: 'Laboratory test finding', 'Laboratory test observations', 'Laboratory test result' or 'Laboratory test finding (navigational concept)' (for the language(s) '--')", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "invalid", @@ -147,12 +105,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Chemistry' for http://snomed.info/sct#275711006 - should be one of 2 choices: 'Serum chemistry test' or 'Serum chemistry test (procedure)' (for the language(s) '--')", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "invalid", @@ -186,6 +146,8 @@ v: { "code" : "281302008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -208,6 +170,8 @@ v: { "code" : "419891008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -230,30 +194,8 @@ v: { "code" : "371525003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "371525003", - "display" : "Clinical procedure report (record artifact)" - }] -}, "langs":"", "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" : "Clinical procedure report", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -276,6 +218,8 @@ v: { "code" : "17621005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -298,30 +242,8 @@ v: { "code" : "722172003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "722172003", - "display" : "Military health institution (environment)" - }] -}, "langs":"", "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" : "Military health institution (environment)", - "code" : "722172003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -344,30 +266,8 @@ v: { "code" : "394609007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "394609007", - "display" : "General surgery (qualifier value)" - }] -}, "langs":"", "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" : "General surgery (qualifier value)", - "code" : "394609007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -390,6 +290,8 @@ v: { "code" : "71388002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -412,12 +314,14 @@ v: { "severity" : "error", "error" : "Unknown code '823681000000100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -451,12 +355,14 @@ v: { "severity" : "error", "error" : "Unknown code '886921000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -490,12 +396,14 @@ v: { "severity" : "error", "error" : "Unknown code '1077881000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -529,12 +437,14 @@ v: { "severity" : "error", "error" : "Unknown code '887181000000106' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -568,12 +478,14 @@ v: { "severity" : "error", "error" : "Unknown code '887161000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -607,12 +519,14 @@ v: { "severity" : "error", "error" : "Unknown code '1052891000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -646,12 +560,14 @@ v: { "severity" : "error", "error" : "Unknown code '715851000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -685,12 +601,14 @@ v: { "severity" : "error", "error" : "Unknown code '717121000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -724,12 +642,14 @@ v: { "severity" : "error", "error" : "Unknown code '933361000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -763,12 +683,14 @@ v: { "severity" : "error", "error" : "Unknown code '887171000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -802,12 +724,14 @@ v: { "severity" : "error", "error" : "Unknown code '887201000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -841,12 +765,14 @@ v: { "severity" : "error", "error" : "Unknown code '1052951000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -880,12 +806,14 @@ v: { "severity" : "error", "error" : "Unknown code '886731000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -919,12 +847,14 @@ v: { "severity" : "error", "error" : "Unknown code '887231000000104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -958,12 +888,14 @@ v: { "severity" : "error", "error" : "Unknown code '9290701000001101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -997,30 +929,8 @@ v: { "code" : "443938003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "443938003", - "display" : "Procedure carried out on subject" - }] -}, "langs":"", "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" : "Procedure carried out on subject (situation)", - "code" : "443938003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1043,6 +953,8 @@ v: { "code" : "17621005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1064,30 +976,8 @@ v: { "code" : "27171005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "27171005" - }], - "text" : "Urinalysis (Protein / Glucose)" -}, "langs":"", "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" : "Urinalysis", - "code" : "27171005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1109,6 +999,8 @@ v: { "code" : "55011004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1138,6 +1030,8 @@ v: { "code" : "55011004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1159,12 +1053,14 @@ v: { "severity" : "error", "error" : "Unknown code '11181000146103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -1182,26 +1078,3 @@ v: { } ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "27113001", - "display" : "Body weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "27113001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/ucum.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/ucum.cache index c5858c697..e20cd8791 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/ucum.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/ucum.cache @@ -14,6 +14,8 @@ v: { "code" : "L/min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -35,12 +37,14 @@ v: { "severity" : "error", "error" : "Unknown code '21612-7' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -57,7 +61,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "information", "code" : "code-invalid", @@ -90,12 +94,14 @@ v: { "severity" : "error", "error" : "Unknown code 'tbl' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", "class" : "UNKNOWN", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "code-invalid", @@ -112,7 +118,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "information", "code" : "code-invalid", @@ -145,27 +151,7 @@ v: { "code" : "mmol/L", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "[lb_av]" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "[lb_av]", - "code" : "[lb_av]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", + "server" : "http://local.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/urn_oid_1.2.840.10008.2.16.4.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_1.2.840.10008.2.16.4.cache index 3695aaf55..00b027397 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_1.2.840.10008.2.16.4.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_1.2.840.10008.2.16.4.cache @@ -13,15 +13,16 @@ v: { "code" : "US", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:1.2.840.10008.2.16.4 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:1.2.840.10008.2.16.4' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "urn:oid:1.2.840.10008.2.16.4", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:1.2.840.10008.2.16.4 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:1.2.840.10008.2.16.4' 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/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.34.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.34.cache index 35931a241..27877eae5 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.34.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.34.cache @@ -14,15 +14,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:2.16.840.1.113883.2.4.4.16.34 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:2.16.840.1.113883.2.4.4.16.34' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "urn:oid:2.16.840.1.113883.2.4.4.16.34", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -31,7 +32,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:2.16.840.1.113883.2.4.4.16.34 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:2.16.840.1.113883.2.4.4.16.34' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.35.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.35.cache index ec3faa1f5..0379e81c2 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.35.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/urn_oid_2.16.840.1.113883.2.4.4.16.35.cache @@ -14,15 +14,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:2.16.840.1.113883.2.4.4.16.35 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:2.16.840.1.113883.2.4.4.16.35' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r3", "unknown-systems" : "urn:oid:2.16.840.1.113883.2.4.4.16.35", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" + "valueUrl" : "http://local.fhir.org/r3" }], "severity" : "error", "code" : "not-found", @@ -31,7 +32,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:2.16.840.1.113883.2.4.4.16.35 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:2.16.840.1.113883.2.4.4.16.35' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.capabilityStatement.cache index 93a1eca87..0c806ddd1 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.capabilityStatement.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.capabilityStatement.cache @@ -12,7 +12,7 @@ "version" : "4.0.1-3.0.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2023-12-30T11:30:29.355Z", + "date" : "2024-01-03T11:04:43.485Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.cache index 16f04c62b..74a3d4769 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.terminologyCapabilities.cache @@ -5,7 +5,7 @@ "version" : "2.0.0", "name" : "FHIR Reference Server Teminology Capability Statement", "status" : "active", - "date" : "2023-12-30T11:30:29.370Z", + "date" : "2024-01-03T11:04:43.503Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/11073.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/11073.cache index e7994a2b5..b59c591f0 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/11073.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/11073.cache @@ -15,13 +15,14 @@ v: { "code" : "150456", "system" : "urn:iso:std:iso:11073:10101", "version" : "2023-04-26", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/Location.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/Location.cache index 1f6296f64..476b02fe6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/Location.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/Location.cache @@ -12,15 +12,16 @@ v: { "code" : "Location", "severity" : "error", - "error" : "A definition for CodeSystem Location could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'Location' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "Location", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem Location could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'Location' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -37,7 +38,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSeticd-10.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSeticd-10.cache index 6fa1303ce..1cd357334 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSeticd-10.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSeticd-10.cache @@ -14,13 +14,14 @@ v: { "severity" : "error", "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/icd-10')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetmeasure-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetmeasure-type.cache index 8daf8a04d..b71092e43 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetmeasure-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetmeasure-type.cache @@ -15,13 +15,14 @@ v: { "severity" : "error", "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/measure-type')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetparticipant-role.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetparticipant-role.cache index 69bf09abd..adbe96ba3 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetparticipant-role.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetparticipant-role.cache @@ -14,13 +14,14 @@ v: { "severity" : "error", "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/participant-role')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", 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 a797fe31c..c7139ab51 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 @@ -12,6 +12,7 @@ v: { "display" : "application/octet-stream", "code" : "application/octet-stream", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -32,94 +33,12 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:oid:2.51.1.1", - "code" : "7680669830038" - }, - { - "system" : "urn:oid:2.16.756.5.30.2.6.1", - "code" : "7739208" - }, - { - "system" : "https://mednet.swiss/fhir/productNumber", - "code" : "6698301" - }], - "text" : "Paracetamol Axapharm Filmtabl 500 mg Ds 100 Stk" -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated; A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated; A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "urn:oid:2.16.756.5.30.2.6.1,urn:oid:2.51.1.1,https://mednet.swiss/fhir/productNumber", - "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 urn:oid:2.51.1.1 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }, - { - "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 urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[1].system"], - "expression" : ["CodeableConcept.coding[1].system"] - }, - { - "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 https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[2].system"], - "expression" : ["CodeableConcept.coding[2].system"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -135,6 +54,7 @@ v: { "display" : "application/pdf", "code" : "application/pdf", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -156,6 +76,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -177,6 +98,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -197,6 +119,7 @@ v: { "display" : "image/*", "code" : "image/*", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -218,6 +141,7 @@ v: { "code" : "d", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -238,6 +162,7 @@ v: { "display" : "English (India)", "code" : "en-IN", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -258,6 +183,7 @@ v: { "display" : "image/jpg", "code" : "image/jpg", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -278,6 +204,7 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -298,94 +225,12 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:oid:2.51.1.1", - "code" : "7680336700282" - }, - { - "system" : "urn:oid:2.16.756.5.30.2.6.1", - "code" : "0058985" - }, - { - "system" : "https://mednet.swiss/fhir/productNumber", - "code" : "3367001" - }], - "text" : "Aspirin C Brausetabl 10 Stk" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "severity" : "error", - "error" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated; A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated; A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "urn:oid:2.16.756.5.30.2.6.1,urn:oid:2.51.1.1,https://mednet.swiss/fhir/productNumber", - "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 urn:oid:2.51.1.1 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }, - { - "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 urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[1].system"], - "expression" : ["CodeableConcept.coding[1].system"] - }, - { - "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 https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[2].system"], - "expression" : ["CodeableConcept.coding[2].system"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -402,6 +247,7 @@ v: { "code" : "min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -423,6 +269,7 @@ v: { "code" : "mmol/L", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -444,6 +291,7 @@ v: { "code" : "%", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -465,6 +313,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -487,13 +336,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#cm' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -525,6 +375,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -547,13 +398,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#kg/m2' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -587,6 +439,7 @@ v: { "code" : "112144000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -617,13 +470,14 @@ v: { "code" : "A", "system" : "https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup", "version" : "0.5.0", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -654,13 +508,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#kg' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -693,13 +548,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#kg/m2' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -731,6 +587,7 @@ v: { "code" : "wk", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -754,6 +611,7 @@ v: { "code" : "722446000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -777,6 +635,7 @@ v: { "code" : "371531000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -797,6 +656,7 @@ v: { "display" : "application/pdf", "code" : "application/pdf", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -820,6 +680,7 @@ v: { "code" : "4241000179101", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -843,94 +704,12 @@ v: { "code" : "422735006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:oid:2.51.1.1", - "code" : "7680336700282" - }, - { - "system" : "urn:oid:2.16.756.5.30.2.6.1", - "code" : "0058985" - }, - { - "system" : "https://mednet.swiss/fhir/productNumber", - "code" : "3367001" - }], - "text" : "ASPIRIN C Brausetabl 10 Stk" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "severity" : "error", - "error" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated; A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated; A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "urn:oid:2.16.756.5.30.2.6.1,urn:oid:2.51.1.1,https://mednet.swiss/fhir/productNumber", - "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 urn:oid:2.51.1.1 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }, - { - "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 urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[1].system"], - "expression" : ["CodeableConcept.coding[1].system"] - }, - { - "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 https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[2].system"], - "expression" : ["CodeableConcept.coding[2].system"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -948,13 +727,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#min' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -987,13 +767,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#min' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1026,13 +807,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#min' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1065,13 +847,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#mmol/L' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1104,13 +887,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#mmol/L' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1143,13 +927,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#mmol/L' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1182,13 +967,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#%' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1221,13 +1007,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#%' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1260,13 +1047,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#%' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1299,13 +1087,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#wk' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1338,13 +1127,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#wk' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1377,13 +1167,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#kg' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1415,6 +1206,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1437,13 +1229,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#cm' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1475,6 +1268,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1497,13 +1291,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#kg/m2' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1535,6 +1330,7 @@ v: { "code" : "kg/m2", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1556,6 +1352,7 @@ v: { "code" : "wk", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1576,6 +1373,7 @@ v: { "display" : "json", "code" : "json", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1596,6 +1394,7 @@ v: { "display" : "xml", "code" : "xml", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1616,6 +1415,7 @@ v: { "display" : "application/fhir+json", "code" : "application/fhir+json", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1636,6 +1436,7 @@ v: { "display" : "English (Region=United States)", "code" : "en-US", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1656,6 +1457,7 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1676,6 +1478,7 @@ v: { "display" : "text/plain", "code" : "text/plain", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1699,6 +1502,7 @@ v: { "code" : "371525003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1721,6 +1525,7 @@ v: { "code" : "CHE", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1741,6 +1546,7 @@ v: { "display" : "text/css", "code" : "text/css", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1761,6 +1567,7 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1785,13 +1592,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1823,15 +1631,16 @@ v: { v: { "code" : "urn:hl7-org:sdwg:ccda-structuredBody:2.1", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:1.3.6.1.4.1.19376.1.2.3 could not be found, so the code cannot be validated; The provided code 'urn:oid:1.3.6.1.4.1.19376.1.2.3#urn:hl7-org:sdwg:ccda-structuredBody:2.1 ('Documents following C-CDA constraints using a structured body')' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1'", + "error" : "A definition for CodeSystem 'urn:oid:1.3.6.1.4.1.19376.1.2.3' could not be found, so the code cannot be validated; The provided code 'urn:oid:1.3.6.1.4.1.19376.1.2.3#urn:hl7-org:sdwg:ccda-structuredBody:2.1 ('Documents following C-CDA constraints using a structured body')' was not found in the value set 'http://hl7.org/fhir/ValueSet/formatcodes|4.0.1'", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:1.3.6.1.4.1.19376.1.2.3", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -1840,7 +1649,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:1.3.6.1.4.1.19376.1.2.3 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:1.3.6.1.4.1.19376.1.2.3' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -1848,7 +1657,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1882,6 +1691,7 @@ v: { "code" : "34133-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1902,6 +1712,7 @@ v: { "display" : "English (United States)", "code" : "en-US", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1923,15 +1734,16 @@ v: { v: { "code" : "1", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260 could not be found, so the code cannot be validated; The provided code 'urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260#1 ('Surgery Case')' was not found in the value set 'http://terminology.hl7.org/ValueSet/v3-ActEncounterCode|2.0.0'", + "error" : "A definition for CodeSystem 'urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260' could not be found, so the code cannot be validated; The provided code 'urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260#1 ('Surgery Case')' was not found in the value set 'http://terminology.hl7.org/ValueSet/v3-ActEncounterCode|2.0.0'", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -1940,7 +1752,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -1948,7 +1760,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1979,6 +1791,7 @@ v: { "display" : "English (New Zeland)", "code" : "en-NZ", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2000,6 +1813,7 @@ v: { "code" : "d", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2021,6 +1835,7 @@ v: { "code" : "Cel", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2042,6 +1857,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2063,6 +1879,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2084,6 +1901,7 @@ v: { "code" : "NZ", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2107,13 +1925,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#26643006' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2147,13 +1966,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#767525000' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2186,6 +2006,7 @@ v: { "code" : "237599002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2208,6 +2029,7 @@ v: { "code" : "1201005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2231,13 +2053,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#109081006' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2270,6 +2093,7 @@ v: { "code" : "5913000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2293,13 +2117,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#292954005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2332,6 +2157,7 @@ v: { "code" : "52910006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2355,13 +2181,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#428673006' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2394,6 +2221,7 @@ v: { "code" : "265132005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2417,13 +2245,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#7947003' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2457,13 +2286,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#81464008' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2497,13 +2327,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#48546005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2536,6 +2367,7 @@ v: { "code" : "40425004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2559,13 +2391,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#158965000' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2599,13 +2432,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#96309000' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2639,13 +2473,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#714081009' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2679,13 +2514,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#25246002' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2719,13 +2555,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#96067005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2758,6 +2595,7 @@ v: { "code" : "90560007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2781,13 +2619,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#34206005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2821,13 +2660,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#108537001' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2861,13 +2701,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#126212009' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2901,13 +2742,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#292360004' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2941,13 +2783,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#16217701000119102' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2981,13 +2824,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#287903004' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3018,6 +2862,7 @@ v: { "display" : "application/xml", "code" : "application/xml", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3038,6 +2883,7 @@ v: { "display" : "text/xml", "code" : "text/xml", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3058,15 +2904,16 @@ v: { v: { "code" : "URGENT", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/admission-class could not be found, so the code cannot be validated; The provided code 'http://fhir.mimic.mit.edu/CodeSystem/admission-class#URGENT' was not found in the value set 'http://terminology.hl7.org/ValueSet/v3-ActEncounterCode|2.0.0'", + "error" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/admission-class' could not be found, so the code cannot be validated; The provided code 'http://fhir.mimic.mit.edu/CodeSystem/admission-class#URGENT' was not found in the value set 'http://terminology.hl7.org/ValueSet/v3-ActEncounterCode|2.0.0'", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.mimic.mit.edu/CodeSystem/admission-class", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -3075,7 +2922,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/admission-class could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/admission-class' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -3083,7 +2930,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3117,6 +2964,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3137,6 +2985,7 @@ v: { "display" : "text/cql.identifier", "code" : "text/cql.identifier", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3158,6 +3007,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3193,13 +3043,14 @@ v: { "code" : "150456", "system" : "urn:iso:std:iso:11073:10101", "version" : "2023-04-26", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -3232,13 +3083,14 @@ v: { "severity" : "error", "error" : "The provided code 'urn:iso:std:iso:11073:10101#150456 ('MDC_PULS_OXIM_SAT_O2')' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -3253,7 +3105,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3269,34 +3121,6 @@ v: { }] } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8310-5" - }, - { - "system" : "http://snomed.info/sct", - "code" : "276885007" - }] -}, "langs":"", "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" : "Core body temperature", - "code" : "276885007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -3315,13 +3139,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#276885007' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3353,6 +3178,7 @@ v: { "code" : "Cel", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3373,6 +3199,7 @@ v: { "display" : "English (Australia)", "code" : "en-AU", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3393,6 +3220,7 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3413,6 +3241,7 @@ v: { "display" : "English (United States)", "code" : "en-US", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3435,6 +3264,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3456,6 +3286,7 @@ v: { "code" : "wk", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3477,13 +3308,14 @@ v: { "severity" : "error", "error" : "The provided code 'urn:ietf:bcp:13#[%payloadFormat%]' was not found in the value set 'http://hl7.org/fhir/ValueSet/mimetypes|4.0.1'; Unknown code '[%payloadFormat%]' in the CodeSystem 'urn:ietf:bcp:13' version ''", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3500,7 +3332,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/allergy-intolerance-criticality.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/allergy-intolerance-criticality.cache index 470a374bb..ec1bec506 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/allergy-intolerance-criticality.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/allergy-intolerance-criticality.cache @@ -16,13 +16,14 @@ v: { "code" : "high", "system" : "http://hl7.org/fhir/allergy-intolerance-criticality", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -55,13 +56,14 @@ v: { "code" : "low", "system" : "http://hl7.org/fhir/allergy-intolerance-criticality", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-genderstatus.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-genderstatus.cache index a5f475019..18a778b2b 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-genderstatus.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-genderstatus.cache @@ -16,13 +16,14 @@ v: { "code" : "neutered", "system" : "http://hl7.org/fhir/animal-genderstatus", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-species.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-species.cache index cbde45fb2..f7d61be9a 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-species.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/animal-species.cache @@ -17,13 +17,14 @@ v: { "code" : "canislf", "system" : "http://hl7.org/fhir/animal-species", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/condition-clinical.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/condition-clinical.cache index 85676170e..77bf24c30 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/condition-clinical.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/condition-clinical.cache @@ -14,15 +14,16 @@ v: { "code" : "active", "severity" : "error", - "error" : "A definition for CodeSystem http://terminology.hl7.org/CodeSystem/condition-clinical version 0.5.0 could not be found, so the code cannot be validated. Valid versions: [2.0.0,4.0.1]", + "error" : "A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/condition-clinical' version '0.5.0' could not be found, so the code cannot be validated. Valid versions: [2.0.0,4.0.1]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://terminology.hl7.org/CodeSystem/condition-clinical|0.5.0", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -31,7 +32,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://terminology.hl7.org/CodeSystem/condition-clinical version 0.5.0 could not be found, so the code cannot be validated. Valid versions: [2.0.0,4.0.1]" + "text" : "A definition for CodeSystem 'http://terminology.hl7.org/CodeSystem/condition-clinical' version '0.5.0' could not be found, so the code cannot be validated. Valid versions: [2.0.0,4.0.1]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -55,6 +56,7 @@ v: { "code" : "active", "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical", "version" : "2.0.0", + "server" : "http://local.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/contract-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/contract-type.cache index fe80ce6a6..e2319468c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/contract-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/contract-type.cache @@ -17,13 +17,14 @@ v: { "code" : "healthinsurance", "system" : "http://terminology.hl7.org/CodeSystem/contract-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache index 36cdee781..0e2760fb7 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache @@ -15,31 +15,7 @@ v: { "code" : "207", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "207", - "display" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose" - }] -}, "langs":"", "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" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose", - "code" : "207", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -64,13 +40,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'X SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose' for http://hl7.org/fhir/sid/cvx#207 - should be 'SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -104,31 +81,7 @@ v: { "code" : "208", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "208", - "display" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 30 mcg/0.3mL dose" - }] -}, "langs":"en-NZ", "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" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 30 mcg/0.3mL dose", - "code" : "208", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -152,31 +105,7 @@ v: { "code" : "141", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "141", - "display" : "Influenza, seasonal, injectable" - }] -}, "langs":"en-NZ", "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" : "Influenza, seasonal, injectable", - "code" : "141", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -200,31 +129,7 @@ v: { "code" : "20", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "20", - "display" : "diphtheria, tetanus toxoids and acellular pertussis vaccine" - }] -}, "langs":"en-NZ", "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" : "diphtheria, tetanus toxoids and acellular pertussis vaccine", - "code" : "20", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -248,31 +153,7 @@ v: { "code" : "138", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "138", - "display" : "tetanus and diphtheria toxoids, not adsorbed, for adult use" - }] -}, "langs":"en-NZ", "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" : "tetanus and diphtheria toxoids, not adsorbed, for adult use", - "code" : "138", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -296,31 +177,7 @@ v: { "code" : "133", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "133", - "display" : "pneumococcal conjugate vaccine, 13 valent" - }] -}, "langs":"en-NZ", "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" : "pneumococcal conjugate vaccine, 13 valent", - "code" : "133", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -344,6 +201,7 @@ v: { "code" : "208", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -367,6 +225,7 @@ v: { "code" : "141", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -390,6 +249,7 @@ v: { "code" : "20", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -413,6 +273,7 @@ v: { "code" : "138", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -436,6 +297,7 @@ v: { "code" : "133", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -458,30 +320,7 @@ v: { "code" : "208", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "208" - }] -}, "langs":"", "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" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 30 mcg/0.3mL dose", - "code" : "208", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -504,6 +343,7 @@ v: { "code" : "208", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -526,13 +366,14 @@ v: { "severity" : "error", "error" : "Unknown code '209' in the CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20210406'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -565,13 +406,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://hl7.org/fhir/sid/cvx#209' was not found in the value set 'http://hl7.org/fhir/uv/shc-vaccination/ValueSet/vaccine-cvx|0.6.2'; Unknown code '209' in the CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20210406'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -588,7 +430,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -621,30 +463,7 @@ v: { "code" : "210", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "210" - }] -}, "langs":"", "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" : "SARS-COV-2 (COVID-19) vaccine, vector non-replicating, recombinant spike protein-ChAdOx1, preservative free, 0.5 mL", - "code" : "210", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -667,30 +486,7 @@ v: { "code" : "207", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "207" - }] -}, "langs":"", "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" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose", - "code" : "207", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -713,6 +509,7 @@ v: { "code" : "210", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -735,6 +532,7 @@ v: { "code" : "207", "system" : "http://hl7.org/fhir/sid/cvx", "version" : "20210406", + "server" : "http://local.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/dose-rate-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/dose-rate-type.cache index 508a21f4a..8a302660c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/dose-rate-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/dose-rate-type.cache @@ -17,13 +17,14 @@ v: { "code" : "ordered", "system" : "http://terminology.hl7.org/CodeSystem/dose-rate-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -57,13 +58,14 @@ v: { "code" : "ordered", "system" : "http://terminology.hl7.org/CodeSystem/dose-rate-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___acme.org_obs-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___acme.org_obs-codes.cache index b8bed89b2..bd0b9fa2e 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___acme.org_obs-codes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___acme.org_obs-codes.cache @@ -12,15 +12,16 @@ v: { "code" : "obs1", "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/obs-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://acme.org/obs-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://acme.org/obs-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://acme.org/obs-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://acme.org/obs-codes' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -51,15 +52,16 @@ v: { v: { "code" : "obs2", "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/obs-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://acme.org/obs-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://acme.org/obs-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -68,7 +70,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://acme.org/obs-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://acme.org/obs-codes' 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/http___ehelse.no_fhir_CodeSystem_colonoscopy-model-specific-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___ehelse.no_fhir_CodeSystem_colonoscopy-model-specific-codes.cache index 216077ade..73073dda6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___ehelse.no_fhir_CodeSystem_colonoscopy-model-specific-codes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___ehelse.no_fhir_CodeSystem_colonoscopy-model-specific-codes.cache @@ -13,15 +13,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -54,15 +55,16 @@ v: { }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -71,7 +73,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://ehelse.no/fhir/CodeSystem/colonoscopy-model-specific-codes' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org.cache index cc9b1d183..6bce6c357 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org.cache @@ -12,15 +12,16 @@ v: { "code" : "aabbcc", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org' 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/http___example.org_fhir_animal-breed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_animal-breed.cache index 259cd01f4..5a9d6b470 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_animal-breed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_animal-breed.cache @@ -13,15 +13,16 @@ v: { "code" : "gret", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/fhir/animal-breed could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/fhir/animal-breed' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/fhir/animal-breed", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/fhir/animal-breed could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/fhir/animal-breed' 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/http___example.org_fhir_us_spl_CodeSystem_codesystem-organizationTypes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_us_spl_CodeSystem_codesystem-organizationTypes.cache index ab70675fe..4af49fada 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_us_spl_CodeSystem_codesystem-organizationTypes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_us_spl_CodeSystem_codesystem-organizationTypes.cache @@ -12,15 +12,16 @@ v: { "code" : "USAgent", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,50 +30,10 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes' could not be found, so the code cannot be validated" }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes", - "code" : "Labeler" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes", - "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://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_mySystem.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_mySystem.cache index d224f21c1..ae42b3148 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_mySystem.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_mySystem.cache @@ -12,15 +12,16 @@ v: { "code" : "1an", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/mySystem could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/mySystem' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/mySystem", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/mySystem could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/mySystem' 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/http___example.org_profile2.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile2.cache index e40dff236..118842df6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile2.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile2.cache @@ -12,15 +12,16 @@ v: { "code" : "code2", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/profile2 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/profile2' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/profile2", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/profile2 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/profile2' 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/http___example.org_profile3.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile3.cache index 1bc8c4754..252ac2473 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile3.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile3.cache @@ -12,15 +12,16 @@ v: { "code" : "code3", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/profile3 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/profile3' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/profile3", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/profile3 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/profile3' 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/http___fhir.de_CodeSystem_ask.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ask.cache index b38e82854..a082cf651 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ask.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ask.cache @@ -13,15 +13,16 @@ v: { "code" : "05482", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ask", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -53,15 +54,16 @@ v: { v: { "code" : "06225", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ask", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -70,7 +72,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -93,15 +95,16 @@ v: { v: { "code" : "1234", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ask", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -110,7 +113,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -133,15 +136,16 @@ v: { v: { "code" : "10669", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ask", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -150,7 +154,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -173,15 +177,16 @@ v: { v: { "code" : "03800", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ask", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -190,7 +195,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -213,15 +218,16 @@ v: { v: { "code" : "06226", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ask", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -230,7 +236,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ask could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ask' 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/http___fhir.de_CodeSystem_dimdi_icd-10-gm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_dimdi_icd-10-gm.cache index 732b298ed..5ba5669df 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_dimdi_icd-10-gm.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_dimdi_icd-10-gm.cache @@ -15,15 +15,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/dimdi/icd-10-gm could not be found, so the code cannot be validated; A definition for CodeSystem http://fhir.de/CodeSystem/dimdi/icd-10-gm version 2021 could not be found, so the code cannot be validated. Valid versions: []", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/dimdi/icd-10-gm' could not be found, so the code cannot be validated; A definition for CodeSystem 'http://fhir.de/CodeSystem/dimdi/icd-10-gm' version '2021' could not be found, so the code cannot be validated. Valid versions: []", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/dimdi/icd-10-gm,http://fhir.de/CodeSystem/dimdi/icd-10-gm|2021", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -32,7 +33,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/dimdi/icd-10-gm version 2021 could not be found, so the code cannot be validated. Valid versions: []" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/dimdi/icd-10-gm' version '2021' could not be found, so the code cannot be validated. Valid versions: []" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -40,7 +41,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -49,7 +50,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/dimdi/icd-10-gm could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/dimdi/icd-10-gm' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ifa_pzn.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ifa_pzn.cache index 1ca94d9ee..437a4c785 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ifa_pzn.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ifa_pzn.cache @@ -13,15 +13,16 @@ v: { "code" : "07115663", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.de/CodeSystem/ifa/pzn could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ifa/pzn' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.de/CodeSystem/ifa/pzn", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.de/CodeSystem/ifa/pzn could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.de/CodeSystem/ifa/pzn' 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/http___fhir.mimic.mit.edu_CodeSystem_admission-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_admission-type.cache index 10969d12a..fe322b572 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_admission-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_admission-type.cache @@ -12,15 +12,16 @@ v: { "code" : "URGENT", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/admission-type could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/admission-type' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.mimic.mit.edu/CodeSystem/admission-type", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/admission-type could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/admission-type' 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/http___fhir.mimic.mit.edu_CodeSystem_admit-source.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_admit-source.cache index 569d7a6cf..02851ae54 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_admit-source.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_admit-source.cache @@ -11,15 +11,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/admit-source could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/admit-source' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.mimic.mit.edu/CodeSystem/admit-source", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -28,7 +29,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/admit-source could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/admit-source' 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/http___fhir.mimic.mit.edu_CodeSystem_discharge-dispostion.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_discharge-dispostion.cache index 441f161de..45ec3ad55 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_discharge-dispostion.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.mimic.mit.edu_CodeSystem_discharge-dispostion.cache @@ -11,15 +11,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -28,50 +29,10 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion' could not be found, so the code cannot be validated" }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion", - "display" : "HOME" - }] -}, "langs":"en", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion", - "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://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.whatever.com_codes_AllergyClinicalStatus.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.whatever.com_codes_AllergyClinicalStatus.cache index 64a8b13a7..3370941b4 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.whatever.com_codes_AllergyClinicalStatus.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.whatever.com_codes_AllergyClinicalStatus.cache @@ -13,15 +13,16 @@ v: { "code" : "active", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.whatever.com/codes/AllergyClinicalStatus could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.whatever.com/codes/AllergyClinicalStatus' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.whatever.com/codes/AllergyClinicalStatus", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.whatever.com/codes/AllergyClinicalStatus could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.whatever.com/codes/AllergyClinicalStatus' 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/http___fkcfhir.org_fhir_CodeSystem_FMCInctrMedRoute.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCInctrMedRoute.cache index 31859f4a2..ee49ea225 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCInctrMedRoute.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCInctrMedRoute.cache @@ -12,15 +12,16 @@ v: { "code" : "Sub Q", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCInctrMedRoute could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCInctrMedRoute' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCInctrMedRoute", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCInctrMedRoute could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCInctrMedRoute' 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/http___fkcfhir.org_fhir_CodeSystem_FMCMedTiming.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCMedTiming.cache index 902a5199f..0c37605d8 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCMedTiming.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCMedTiming.cache @@ -12,15 +12,16 @@ v: { "code" : "Pre Dialysis", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCMedTiming could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCMedTiming' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCMedTiming", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCMedTiming could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCMedTiming' 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/http___fkcfhir.org_fhir_CodeSystem_FMCModality.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCModality.cache index 6abe9a04c..c1db97e36 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCModality.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCModality.cache @@ -13,15 +13,16 @@ v: { "code" : "IHD", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCModality could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCModality' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCModality", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCModality could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCModality' 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/http___fkcfhir.org_fhir_CodeSystem_FMCOrderAbbreviation.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderAbbreviation.cache index bf23d93c2..85454bb08 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderAbbreviation.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderAbbreviation.cache @@ -12,15 +12,16 @@ v: { "code" : "IMed_Mircera", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderAbbreviation could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderAbbreviation' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderAbbreviation", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderAbbreviation could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderAbbreviation' 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/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSchedule.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSchedule.cache index 72bafd4a0..8bad16353 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSchedule.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSchedule.cache @@ -12,15 +12,16 @@ v: { "code" : "Every 4 weeks", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderSchedule could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderSchedule' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderSchedule", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderSchedule could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderSchedule' 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/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSubType.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSubType.cache index 5c55447aa..1f525cc57 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSubType.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSubType.cache @@ -13,15 +13,16 @@ v: { "code" : "Anemia", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderSubType could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderSubType' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderSubType", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderSubType could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderSubType' 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/http___fkcfhir.org_fhir_CodeSystem_FMCOrderType.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderType.cache index efa261e60..c4bd02366 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderType.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderType.cache @@ -13,15 +13,16 @@ v: { "code" : "Treatment Medications", "severity" : "error", - "error" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderType could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderType' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderType", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fkcfhir.org/fhir/CodeSystem/FMCOrderType could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fkcfhir.org/fhir/CodeSystem/FMCOrderType' 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/http___ncicb.nci.nih.gov_xml_owl_EVS_Thesaurus.owl.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___ncicb.nci.nih.gov_xml_owl_EVS_Thesaurus.owl.cache index 8dcd7f175..2e1e5fd6f 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___ncicb.nci.nih.gov_xml_owl_EVS_Thesaurus.owl.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___ncicb.nci.nih.gov_xml_owl_EVS_Thesaurus.owl.cache @@ -16,13 +16,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Foreign Facility's United States Agent' for http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C73330 - should be 'UNITED STATES AGENT' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -55,30 +56,7 @@ v: { "display" : "MANUFACTURE", "code" : "C43360", "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "code" : "C43360", - "display" : "manufacture" - }] -}, "langs":"", "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" : "MANUFACTURE", - "code" : "C43360", - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -101,30 +79,7 @@ v: { "display" : "Manufactures human prescription drug products", "code" : "C106643", "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "code" : "C106643", - "display" : "Manufactures human prescription drug products" - }] -}, "langs":"", "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" : "Manufactures human prescription drug products", - "code" : "C106643", - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", + "server" : "http://local.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___nucc.org_provider-taxonomy.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___nucc.org_provider-taxonomy.cache index 4f93e92f8..a51e7d439 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___nucc.org_provider-taxonomy.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___nucc.org_provider-taxonomy.cache @@ -16,13 +16,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'General Practice' for http://nucc.org/provider-taxonomy#208D00000X - should be 'General Practice Physician' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -55,6 +56,7 @@ v: { "code" : "208D00000X", "system" : "http://nucc.org/provider-taxonomy", "version" : "22.1", + "server" : "http://local.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___something_something.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___something_something.cache index 8fe1e6495..ef48db5e6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___something_something.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___something_something.cache @@ -11,7 +11,7 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://something/something could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://something/something' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___standardterms.edqm.eu.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___standardterms.edqm.eu.cache index b0005781c..095f424d7 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___standardterms.edqm.eu.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___standardterms.edqm.eu.cache @@ -15,31 +15,7 @@ v: { "code" : "20049000", "system" : "http://standardterms.edqm.eu", "version" : "5 March 2019", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://standardterms.edqm.eu", - "code" : "20049000", - "display" : "Nasal use" - }] -}, "langs":"", "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" : "Nasal use", - "code" : "20049000", - "system" : "http://standardterms.edqm.eu", - "version" : "5 March 2019", + "server" : "http://local.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___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-product-name.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-product-name.cache index 18ee49ba6..365499440 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-product-name.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-product-name.cache @@ -13,15 +13,16 @@ v: { "code" : "alecensa", "severity" : "error", - "error" : "A definition for CodeSystem http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-product-name could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-product-name' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-product-name", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-product-name could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-product-name' 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/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-sr-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-sr-type.cache index 32967da65..74b1c79e6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-sr-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.gene.com_fhir_usix_uapi_CodeSystem_uapi-sr-type.cache @@ -12,15 +12,16 @@ v: { "code" : "biPA", "severity" : "error", - "error" : "A definition for CodeSystem http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,50 +30,10 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type' could not be found, so the code cannot be validated" }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type", - "code" : "starter" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type", - "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://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.hl7.org_ValueSet_v3-ServiceDeliveryLocationRoleType.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.hl7.org_ValueSet_v3-ServiceDeliveryLocationRoleType.cache index 7556ed130..928872245 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.hl7.org_ValueSet_v3-ServiceDeliveryLocationRoleType.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.hl7.org_ValueSet_v3-ServiceDeliveryLocationRoleType.cache @@ -14,13 +14,14 @@ v: { "severity" : "error", "error" : "The Coding references a value set, not a code system ('http://terminology.hl7.org/ValueSet/v3-ServiceDeliveryLocationRoleType')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___varnomen.hgvs.org.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___varnomen.hgvs.org.cache index 1e619c0fe..da858bd6c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___varnomen.hgvs.org.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___varnomen.hgvs.org.cache @@ -14,30 +14,7 @@ v: { "code" : "NC_000019.8:g.1171707G>A", "system" : "http://varnomen.hgvs.org", "version" : "2.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://varnomen.hgvs.org", - "code" : "NC_000019.8:g.1171707G>A" - }] -}, "langs":"", "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" : "NC_000019.8:g.1171707G>A", - "code" : "NC_000019.8:g.1171707G>A", - "system" : "http://varnomen.hgvs.org", - "version" : "2.0", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -60,6 +37,7 @@ v: { "code" : "NC_000019.8:g.1171707G>A", "system" : "http://varnomen.hgvs.org", "version" : "2.0", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -82,6 +60,7 @@ v: { "code" : "NC_000019.8:g.1171707G>A", "system" : "http://varnomen.hgvs.org", "version" : "2.0", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -104,13 +83,14 @@ v: { "severity" : "error", "error" : "Unknown code 'NC_000019.8:g.1171707G>AXXX' in the CodeSystem 'http://varnomen.hgvs.org' version '2.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -143,13 +123,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://varnomen.hgvs.org#NC_000019.8:g.1171707G>AXXX' was not found in the value set 'http://hl7.org/fhir/us/mcode/ValueSet/mcode-hgvs-vs--0|1.0.0'; Unknown code 'NC_000019.8:g.1171707G>AXXX' in the CodeSystem 'http://varnomen.hgvs.org' version '2.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -166,7 +147,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", 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 a20d454bc..62a2c1752 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 @@ -15,32 +15,7 @@ v: { "code" : "210965D", "system" : "http://www.ada.org/snodent", "version" : "2.1.0", - "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" -}, "langs":"", "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" : "Anterior part of lower alveolar ridge", - "code" : "210965D", - "system" : "http://www.ada.org/snodent", - "version" : "2.1.0", + "server" : "http://local.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.ama-assn.org_go_cpt.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ama-assn.org_go_cpt.cache index 6ce9fb86f..eced2f5c1 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ama-assn.org_go_cpt.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ama-assn.org_go_cpt.cache @@ -14,31 +14,7 @@ v: { "code" : "99234", "system" : "http://www.ama-assn.org/go/cpt", "version" : "2023", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://www.ama-assn.org/go/cpt", - "code" : "99234" - }], - "text" : "Inpatient hospital care" -}, "langs":"", "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 inpatient or observation care, for the evaluation and management of a patient including admission and discharge on the same date, which requires a medically appropriate history and/or examination and straightforward or low level of medical decision making. When using total time on the date of the encounter for code selection, 45 minutes must be met or exceeded.", - "code" : "99234", - "system" : "http://www.ama-assn.org/go/cpt", - "version" : "2023", + "server" : "http://local.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.genenames.org_geneId.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.genenames.org_geneId.cache index eb5c37214..dca86c908 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.genenames.org_geneId.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.genenames.org_geneId.cache @@ -12,15 +12,16 @@ v: { "code" : "HGNC:11389", "severity" : "error", - "error" : "A definition for CodeSystem http://www.genenames.org/geneId could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://www.genenames.org/geneId' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://www.genenames.org/geneId", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://www.genenames.org/geneId could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://www.genenames.org/geneId' 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/http___www.ncbi.nlm.nih.gov_clinvar.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ncbi.nlm.nih.gov_clinvar.cache index 5ef1ef2f5..9829d9f62 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ncbi.nlm.nih.gov_clinvar.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ncbi.nlm.nih.gov_clinvar.cache @@ -12,15 +12,16 @@ v: { "code" : "619728", "severity" : "error", - "error" : "A definition for CodeSystem http://www.ncbi.nlm.nih.gov/clinvar could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://www.ncbi.nlm.nih.gov/clinvar' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://www.ncbi.nlm.nih.gov/clinvar", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://www.ncbi.nlm.nih.gov/clinvar could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://www.ncbi.nlm.nih.gov/clinvar' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -51,15 +52,16 @@ v: { v: { "code" : "619728", "severity" : "error", - "error" : "A definition for CodeSystem http://www.ncbi.nlm.nih.gov/clinvar could not be found, so the code cannot be validated; Unable to check whether the code is in the value set http://hl7.org/fhir/us/mcode/ValueSet/mcode-clinvar-vs--0|1.0.0 because the code system http://www.ncbi.nlm.nih.gov/clinvar| was not found", + "error" : "A definition for CodeSystem 'http://www.ncbi.nlm.nih.gov/clinvar' could not be found, so the code cannot be validated; Unable to check whether the code is in the value set http://hl7.org/fhir/us/mcode/ValueSet/mcode-clinvar-vs--0|1.0.0 because the code system http://www.ncbi.nlm.nih.gov/clinvar| was not found", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://www.ncbi.nlm.nih.gov/clinvar", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -68,7 +70,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://www.ncbi.nlm.nih.gov/clinvar could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://www.ncbi.nlm.nih.gov/clinvar' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -76,7 +78,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "warning", "code" : "not-found", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___fhir.hl7.org.uk_CodeSystem_UKCore-SDSJobRoleName.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___fhir.hl7.org.uk_CodeSystem_UKCore-SDSJobRoleName.cache index 2a5b83943..e4b14ddb9 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___fhir.hl7.org.uk_CodeSystem_UKCore-SDSJobRoleName.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___fhir.hl7.org.uk_CodeSystem_UKCore-SDSJobRoleName.cache @@ -13,15 +13,16 @@ v: { "code" : "R8000", "severity" : "error", - "error" : "A definition for CodeSystem https://fhir.hl7.org.uk/CodeSystem/UKCore-SDSJobRoleName could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'https://fhir.hl7.org.uk/CodeSystem/UKCore-SDSJobRoleName' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "https://fhir.hl7.org.uk/CodeSystem/UKCore-SDSJobRoleName", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://fhir.hl7.org.uk/CodeSystem/UKCore-SDSJobRoleName could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://fhir.hl7.org.uk/CodeSystem/UKCore-SDSJobRoleName' 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/https___hl7.fi_fhir_finnish-base-profiles_CodeSystem_SecurityLabelCS.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___hl7.fi_fhir_finnish-base-profiles_CodeSystem_SecurityLabelCS.cache index 15af3565a..4a1c21b5f 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___hl7.fi_fhir_finnish-base-profiles_CodeSystem_SecurityLabelCS.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___hl7.fi_fhir_finnish-base-profiles_CodeSystem_SecurityLabelCS.cache @@ -12,15 +12,16 @@ v: { "code" : "TURVAKIELTO", "severity" : "error", - "error" : "A definition for CodeSystem https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS could not be found, so the code cannot be validated; The provided code 'https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS#TURVAKIELTO' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|4.0.1'", + "error" : "A definition for CodeSystem 'https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS' could not be found, so the code cannot be validated; The provided code 'https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS#TURVAKIELTO' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|4.0.1'", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -35,7 +36,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -44,7 +45,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -52,7 +53,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_CodeSystem_mni-obs-bloodGroup.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_CodeSystem_mni-obs-bloodGroup.cache index 1f6b238c3..3e03ea854 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_CodeSystem_mni-obs-bloodGroup.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_CodeSystem_mni-obs-bloodGroup.cache @@ -13,15 +13,16 @@ v: { "code" : "A", "severity" : "error", - "error" : "A definition for CodeSystem https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup' 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/https___mednet.swiss_fhir_productNumber.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_productNumber.cache index a3ecce203..83195b4b1 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_productNumber.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_productNumber.cache @@ -12,15 +12,16 @@ v: { "code" : "3367001", "severity" : "error", - "error" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'https://mednet.swiss/fhir/productNumber' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "https://mednet.swiss/fhir/productNumber", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://mednet.swiss/fhir/productNumber' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[2].system"], "expression" : ["CodeableConcept.coding[2].system"] @@ -51,15 +52,16 @@ v: { v: { "code" : "6698301", "severity" : "error", - "error" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'https://mednet.swiss/fhir/productNumber' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "https://mednet.swiss/fhir/productNumber", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -68,7 +70,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://mednet.swiss/fhir/productNumber could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://mednet.swiss/fhir/productNumber' 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/https___www.humanservices.gov.au_organisations_health-professionals_enablers_air-vaccine-code-formats.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___www.humanservices.gov.au_organisations_health-professionals_enablers_air-vaccine-code-formats.cache index 753132192..52a0ca36c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___www.humanservices.gov.au_organisations_health-professionals_enablers_air-vaccine-code-formats.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___www.humanservices.gov.au_organisations_health-professionals_enablers_air-vaccine-code-formats.cache @@ -14,30 +14,7 @@ v: { "code" : "COVAST", "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", "version" : "20210222", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", - "code" : "COVAST" - }] -}, "langs":"", "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" : "COVID-19 Vaccine AstraZeneca", - "code" : "COVAST", - "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", - "version" : "20210222", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -60,6 +37,7 @@ v: { "code" : "COVAST", "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", "version" : "20210222", + "server" : "http://local.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/icd-10-cm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10-cm.cache index 22532ce44..70a3d128d 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10-cm.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10-cm.cache @@ -14,13 +14,14 @@ v: { "severity" : "error", "error" : "Unknown code 'E10.3211+TT1.2' in the CodeSystem 'http://hl7.org/fhir/sid/icd-10-cm' version '2021'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10.cache index 5a53df753..2a4e8f8ce 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10.cache @@ -15,13 +15,14 @@ v: { "code" : "C18.0", "system" : "http://hl7.org/fhir/sid/icd-10", "version" : "2019-covid-expanded", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -55,13 +56,14 @@ v: { "code" : "C18.0", "system" : "http://hl7.org/fhir/sid/icd-10", "version" : "2019-covid-expanded", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -94,13 +96,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Malignant neoplasm of pyriform sinus' for http://hl7.org/fhir/sid/icd-10#C12 - should be 'Malignant neoplasm of piriform sinus' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -115,7 +118,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-9-cm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-9-cm.cache index b639899ae..48dde6731 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-9-cm.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-9-cm.cache @@ -14,30 +14,7 @@ v: { "code" : "99.00", "system" : "http://hl7.org/fhir/sid/icd-9-cm", "version" : "2015", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/sid/icd-9-cm", - "code" : "99.00" - }] -}, "langs":"", "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" : "Perioperative autologous transfusion of whole blood or blood components", - "code" : "99.00", - "system" : "http://hl7.org/fhir/sid/icd-9-cm", - "version" : "2015", + "server" : "http://local.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/iso3166.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/iso3166.cache index 16cbe561a..e938c6096 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/iso3166.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/iso3166.cache @@ -15,31 +15,7 @@ v: { "code" : "NO", "system" : "urn:iso:std:iso:3166", "version" : "2018", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:iso:std:iso:3166", - "code" : "NO", - "display" : "Norway" - }] -}, "langs":"", "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" : "Norway", - "code" : "NO", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -62,6 +38,7 @@ v: { "code" : "CHE", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -84,6 +61,7 @@ v: { "code" : "CHE", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -107,6 +85,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -129,6 +108,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -151,6 +131,7 @@ v: { "code" : "NO", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -173,6 +154,7 @@ v: { "code" : "FIN", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -195,6 +177,7 @@ v: { "code" : "US", "system" : "urn:iso:std:iso:3166", "version" : "2018", + "server" : "http://local.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/lang.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/lang.cache index f0d6d5803..c2e942f32 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/lang.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/lang.cache @@ -14,6 +14,7 @@ v: { "display" : "German (Region=Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -35,6 +36,7 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -59,13 +61,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'German (Region=Switzerland)' for urn:ietf:bcp:47#de-CH - should be one of 7 choices: 'German (Switzerland)', 'German (Switzerland)' (en), 'Duits (Zwitserland)' (nl), 'Немецкий (Швейцария)' (ru), '德语 (瑞士)' (zh), 'Deutsch (Schweiz)' (de) or 'Tysk (Schweiz)' (da) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -98,6 +101,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -119,6 +123,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -141,6 +146,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -163,6 +169,7 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -184,6 +191,7 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -206,6 +214,7 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -228,6 +237,7 @@ v: { "display" : "German (Region=Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -249,6 +259,7 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -273,13 +284,14 @@ v: { "system" : "urn:ietf:bcp:47", "severity" : "warning", "error" : "Wrong Display Name 'German (Region=Switzerland)' for urn:ietf:bcp:47#de-CH - should be one of 7 choices: 'German (Switzerland)', 'German (Switzerland)' (en), 'Duits (Zwitserland)' (nl), 'Немецкий (Швейцария)' (ru), '德语 (瑞士)' (zh), 'Deutsch (Schweiz)' (de) or 'Tysk (Schweiz)' (da) (for the language(s) '--')", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "warning", "code" : "invalid", @@ -312,6 +324,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -333,6 +346,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -355,6 +369,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -377,6 +392,7 @@ v: { "display" : "German (Region=Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -398,6 +414,7 @@ v: { "display" : "German (Switzerland)", "code" : "de-CH", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -422,13 +439,14 @@ v: { "system" : "urn:ietf:bcp:47", "severity" : "warning", "error" : "Wrong Display Name 'German (Region=Switzerland)' for urn:ietf:bcp:47#de-CH - should be one of 2 choices: 'German (Switzerland)' or 'German (Switzerland)' (en) (for the language(s) 'en')", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "warning", "code" : "invalid", @@ -461,6 +479,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -482,6 +501,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -504,6 +524,7 @@ v: { "display" : "French", "code" : "fr", "system" : "urn:ietf:bcp:47", + "server" : "http://local.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/list-example-use-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/list-example-use-codes.cache index fd1c042f1..a03e97575 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/list-example-use-codes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/list-example-use-codes.cache @@ -16,13 +16,14 @@ v: { "code" : "medications", "system" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", 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 0f87a68ff..4d961cf54 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 @@ -16,13 +16,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'O2 % BldC Oximetry' for http://loinc.org#59408-5 - should be one of 26 choices: 'Oxygen saturation in Arterial blood by Pulse oximetry', 'SaO2 % BldA PulseOx', 'O2 SaO2' (pl-PL), 'saturacja krwi tlenem' (pl-PL), 'MFr O2' (zh-CN), 'tO2' (zh-CN), '总氧' (zh-CN), '氧气 SaO2 动脉血 动脉血O2饱和度 可用数量表示的' (zh-CN), '定量性' (zh-CN), '数值型' (zh-CN), '数量型' (zh-CN), '连续数值型标尺 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 肺部测量指标与呼吸机管理 脉搏血氧测定法' (zh-CN), '脉搏血氧定量' (zh-CN), '脉搏血氧测定' (zh-CN), '脉搏血氧仪 血氧测定法 饱和 饱和状态 饱和程度' (zh-CN), 'O2-Sättigung' (de-DE), 'Frazione di massa Gestione ventilazione polmonare Punto nel tempo (episodio) Sangue arterioso' (it-IT), 'Oksijen doymuşluğu' (tr-TR), 'Количественный Кровь артериальная Массовая доля Насыщение кислородом Оксигемометрия' (ru-RU), 'Гемоксиметрия Точка во времени' (ru-RU), 'Момент' (ru-RU), 'zuurstofsaturatiemeting' (nl-NL) or 'O2 SatO2' (fr-BE) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -56,6 +57,7 @@ v: { "code" : "2708-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -79,13 +81,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -118,6 +121,7 @@ v: { "code" : "2708-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -141,6 +145,7 @@ v: { "code" : "3150-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -164,13 +169,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -205,13 +211,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Flow Rate' for http://loinc.org#3151-8 - should be one of 37 choices: 'Inhaled oxygen flow rate', 'Inhaled O2 flow rate', 'O2' (zh-CN), 'tO2' (zh-CN), '总氧' (zh-CN), '氧气 体积速率(单位时间)' (zh-CN), '单位时间内体积的变化速率' (zh-CN), '流量 可用数量表示的' (zh-CN), '定量性' (zh-CN), '数值型' (zh-CN), '数量型' (zh-CN), '连续数值型标尺 吸入气' (zh-CN), '吸入气体' (zh-CN), '吸入的空气 所吸入的氧' (zh-CN), '已吸入的氧气 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 气 气体类 空气' (zh-CN), 'Inhaled O2' (pt-BR), 'vRate' (pt-BR), 'Volume rate' (pt-BR), 'Flow' (pt-BR), 'Point in time' (pt-BR), 'Random' (pt-BR), 'IhG' (pt-BR), 'Inhaled Gas' (pt-BR), 'Inspired' (pt-BR), 'Quantitative' (pt-BR), 'QNT' (pt-BR), 'Quant' (pt-BR), 'Quan' (pt-BR), 'Gases' (pt-BR), 'Clinico Gas inalati Punto nel tempo (episodio) Tasso di Volume' (it-IT), 'Количественный Объемная скорость Точка во времени' (ru-RU), 'Момент' (ru-RU), 'ingeademde O2' (nl-NL) or 'O2-Zufuhr' (de-AT) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -245,13 +252,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -267,31 +275,6 @@ v: { }] } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "3150-0", - "display" : "Inhaled Oxygen Concentration" - }] -}, "langs":"", "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.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -309,6 +292,7 @@ v: { "code" : "59408-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -332,13 +316,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -371,6 +356,7 @@ v: { "code" : "3150-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -394,6 +380,7 @@ v: { "code" : "3150-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -416,6 +403,7 @@ v: { "code" : "3151-8", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -438,7 +426,7 @@ v: { }}#### v: { "severity" : "error", - "error" : "Error from http://tx-dev.fhir.org/r4: Unable to resolve value set \"http://hl7.org/fhir/ValueSet/birthDate\"", + "error" : "Error from http://local.fhir.org/r4: Unable to resolve value set \"http://hl7.org/fhir/ValueSet/birthDate\"", "class" : "SERVER_ERROR", "issues" : { "resourceType" : "OperationOutcome" @@ -461,30 +449,7 @@ v: { "code" : "5792-7", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "5792-7" - }] -}, "langs":"", "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" : "Glucose [Mass/volume] in Urine by Test strip", - "code" : "5792-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -507,6 +472,7 @@ v: { "code" : "11502-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -529,6 +495,7 @@ v: { "code" : "11502-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -551,6 +518,7 @@ v: { "code" : "11502-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -574,6 +542,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -596,6 +565,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -619,6 +589,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -642,31 +613,7 @@ v: { "code" : "76437-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "76437-3", - "display" : "Primary insurance" - }] -}, "langs":"de-CH", "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 insurance", - "code" : "76437-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -690,31 +637,7 @@ v: { "code" : "10160-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" - }] -}, "langs":"de-CH", "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" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -738,31 +661,7 @@ v: { "code" : "48765-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" - }] -}, "langs":"de-CH", "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" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -786,31 +685,7 @@ v: { "code" : "11450-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" - }] -}, "langs":"de-CH", "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" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -834,31 +709,7 @@ v: { "code" : "47519-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" - }] -}, "langs":"de-CH", "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" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -882,31 +733,7 @@ v: { "code" : "30954-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "30954-2", - "display" : "Relevant diagnostic tests/laboratory data Narrative" - }] -}, "langs":"de-CH", "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" : "Relevant diagnostic tests/laboratory data Narrative", - "code" : "30954-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -930,31 +757,7 @@ v: { "code" : "8716-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8716-3", - "display" : "Vital signs" - }] -}, "langs":"de-CH", "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" : "Vital signs", - "code" : "8716-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -978,31 +781,7 @@ v: { "code" : "29762-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29762-2", - "display" : "Social history Narrative" - }] -}, "langs":"de-CH", "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" : "Social history Narrative", - "code" : "29762-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1026,31 +805,7 @@ v: { "code" : "10162-6", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10162-6", - "display" : "History of pregnancies Narrative" - }] -}, "langs":"de-CH", "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" : "History of pregnancies Narrative", - "code" : "10162-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1074,31 +829,7 @@ v: { "code" : "51899-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "51899-3", - "display" : "Details Document" - }] -}, "langs":"de-CH", "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" : "Details Document", - "code" : "51899-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1122,31 +853,7 @@ v: { "code" : "46418-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "46418-0", - "display" : "INR in Capillary blood by Coagulation assay" - }] -}, "langs":"", "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" : "INR in Capillary blood by Coagulation assay", - "code" : "46418-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1170,31 +877,7 @@ v: { "code" : "77140-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "77140-2", - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood" - }] -}, "langs":"", "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" : "Creatinine [Moles/volume] in Serum, Plasma or Blood", - "code" : "77140-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1218,31 +901,7 @@ v: { "code" : "4535-1", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "4535-1", - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method" - }] -}, "langs":"", "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" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method", - "code" : "4535-1", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1266,6 +925,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1288,6 +948,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1311,31 +972,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" - }] -}, "langs":"", "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" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1359,6 +996,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1381,6 +1019,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1404,31 +1043,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" - }] -}, "langs":"", "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" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1452,6 +1067,7 @@ v: { "code" : "39156-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1474,6 +1090,7 @@ v: { "code" : "39156-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1497,31 +1114,7 @@ v: { "code" : "39156-5", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "39156-5", - "display" : "Body mass index (BMI) [Ratio]" - }] -}, "langs":"", "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" : "Body mass index (BMI) [Ratio]", - "code" : "39156-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1545,6 +1138,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1567,6 +1161,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1590,6 +1185,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1613,6 +1209,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1635,6 +1232,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1658,6 +1256,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1681,6 +1280,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1703,6 +1303,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1726,81 +1327,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" - }] -}, "langs":"", "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" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" - }] -}, "langs":"", "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" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" - }] -}, "langs":"", "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" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1824,31 +1351,7 @@ v: { "code" : "883-9", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "883-9", - "display" : "ABO group [Type] in Blood" - }] -}, "langs":"", "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" : "ABO group [Type] in Blood", - "code" : "883-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1872,31 +1375,7 @@ v: { "code" : "57024-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "57024-2", - "display" : "Health Quality Measure Document" - }] -}, "langs":"", "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" : "Health Quality Measure document", - "code" : "57024-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1921,13 +1400,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Patient Authorization Signature' for http://loinc.org#59284-0 - should be one of 29 choices: 'Consent Document', 'Consent', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 事件发生的地方' (zh-CN), '场景' (zh-CN), '环境' (zh-CN), '背景 医疗服务对象' (zh-CN), '客户' (zh-CN), '病人' (zh-CN), '超系统 - 病人 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 同意书' (zh-CN), '知情同意' (zh-CN), '知情同意书 文档本体' (zh-CN), '临床文档本体' (zh-CN), '文档本体' (zh-CN), '文书本体' (zh-CN), '医疗文书本体' (zh-CN), '临床医疗文书本体 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间' (zh-CN) or 'Documentazione dell'ontologia Osservazione Punto nel tempo (episodio)' (it-IT) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -1960,6 +1440,7 @@ v: { "code" : "59284-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1983,6 +1464,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2005,6 +1487,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2028,6 +1511,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2051,31 +1535,7 @@ v: { "code" : "76437-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "76437-3", - "display" : "Primary insurance" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary insurance", - "code" : "76437-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2099,31 +1559,7 @@ v: { "code" : "10160-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2147,31 +1583,7 @@ v: { "code" : "48765-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2195,31 +1607,7 @@ v: { "code" : "11450-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2243,31 +1631,7 @@ v: { "code" : "47519-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2291,31 +1655,7 @@ v: { "code" : "30954-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "30954-2", - "display" : "Relevant diagnostic tests/laboratory data Narrative" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Relevant diagnostic tests/laboratory data Narrative", - "code" : "30954-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2339,31 +1679,7 @@ v: { "code" : "8716-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8716-3", - "display" : "Vital signs" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Vital signs", - "code" : "8716-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2387,31 +1703,7 @@ v: { "code" : "29762-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29762-2", - "display" : "Social history Narrative" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Social history Narrative", - "code" : "29762-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2435,31 +1727,7 @@ v: { "code" : "10162-6", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10162-6", - "display" : "History of pregnancies Narrative" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of pregnancies Narrative", - "code" : "10162-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2483,31 +1751,7 @@ v: { "code" : "51899-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "51899-3", - "display" : "Details Document" - }] -}, "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Details Document", - "code" : "51899-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2531,6 +1775,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2553,6 +1798,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2576,6 +1822,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2599,6 +1846,7 @@ v: { "code" : "46418-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2621,6 +1869,7 @@ v: { "code" : "46418-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2644,6 +1893,7 @@ v: { "code" : "46418-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2667,6 +1917,7 @@ v: { "code" : "77140-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2689,6 +1940,7 @@ v: { "code" : "77140-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2712,6 +1964,7 @@ v: { "code" : "77140-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2735,6 +1988,7 @@ v: { "code" : "4535-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2757,6 +2011,7 @@ v: { "code" : "4535-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2780,6 +2035,7 @@ v: { "code" : "4535-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2803,6 +2059,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2825,6 +2082,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2848,6 +2106,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2871,6 +2130,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2893,6 +2153,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2916,6 +2177,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2939,6 +2201,7 @@ v: { "code" : "39156-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2961,6 +2224,7 @@ v: { "code" : "39156-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2984,6 +2248,7 @@ v: { "code" : "39156-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3007,6 +2272,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3029,6 +2295,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3052,6 +2319,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3075,6 +2343,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3097,6 +2366,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3120,6 +2390,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3143,6 +2414,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3165,6 +2437,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3188,6 +2461,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3211,6 +2485,7 @@ v: { "code" : "883-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3234,13 +2509,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#883-9' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3256,256 +2532,6 @@ v: { }] } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "46418-0", - "display" : "INR in Capillary blood by Coagulation assay" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "INR in Capillary blood by Coagulation assay", - "code" : "46418-0", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "77140-2", - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood", - "code" : "77140-2", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "4535-1", - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method", - "code" : "4535-1", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "39156-5", - "display" : "Body mass index (BMI) [Ratio]" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body mass index (BMI) [Ratio]", - "code" : "39156-5", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "883-9", - "display" : "ABO group [Type] in Blood" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "ABO group [Type] in Blood", - "code" : "883-9", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -3524,13 +2550,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#46418-0' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3564,13 +2591,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#77140-2' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3604,13 +2632,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#4535-1' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3644,13 +2673,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#29463-7' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3684,13 +2714,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#8302-2' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3724,13 +2755,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#39156-5' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3764,13 +2796,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#85354-9' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3804,13 +2837,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#883-9' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3844,6 +2878,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3866,6 +2901,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3889,6 +2925,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3912,31 +2949,7 @@ v: { "code" : "48765-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" - }] -}, "langs":"", "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" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3960,31 +2973,7 @@ v: { "code" : "10160-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" - }] -}, "langs":"", "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" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4008,31 +2997,7 @@ v: { "code" : "11450-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" - }] -}, "langs":"", "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" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4057,13 +3022,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'NDC labeler code request' for http://loinc.org#51726-8 - should be one of 22 choices: 'FDA product label NDC labeler code request', 'FDA label NDC labeler code request', 'FDA 药品标签 National Drug Code' (zh-CN), 'NDC' (zh-CN), '国家药品验证号' (zh-CN), '国家药品代码' (zh-CN), '美国国家药品代码' (zh-CN), '全国药品代码' (zh-CN), 'NDC labeler code' (zh-CN), 'NDC 标识者识别代码' (zh-CN), 'NDC 厂家号' (zh-CN), 'NDC 贴签厂商代码请求' (zh-CN), 'NDC 标签号申请 叙述' (zh-CN), '叙述性文字' (zh-CN), '报告' (zh-CN), '报告型' (zh-CN), '文字叙述' (zh-CN), '文本叙述型' (zh-CN), '文本描述' (zh-CN), '文本描述型 监管类文档' (zh-CN), 'Documentazione normativa Etichetta di prodotto della Food and Drug Administ' (it-IT) or 'Описательный' (ru-RU) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -4097,31 +3063,7 @@ v: { "code" : "80764-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "80764-4", - "display" : "Pain medicine Plan of care note" - }] -}, "langs":"", "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" : "Pain medicine Plan of care note", - "code" : "80764-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4146,6 +3088,7 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4168,6 +3111,7 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4192,6 +3136,7 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4217,13 +3162,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Allergies and adverse reactions' for http://loinc.org#48765-2 - should be one of 28 choices: 'Allergies and adverse reactions Document', 'Allergies &or adverse reactions Doc', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 医疗服务对象' (zh-CN), '客户' (zh-CN), '病人' (zh-CN), '病患' (zh-CN), '病号' (zh-CN), '超系统 - 病人 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 变态反应与不良反应 文档.其他' (zh-CN), '杂项类文档' (zh-CN), '其他文档 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 杂项' (zh-CN), '杂项类' (zh-CN), '杂项试验 过敏反应' (zh-CN), '过敏' (zh-CN), 'Allergie e reazioni avverse Documentazione miscellanea Miscellanea Osservazione paziente Punto nel tempo (episodio)' (it-IT), 'Документ Точка во времени' (ru-RU) or 'Момент' (ru-RU) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -4257,6 +3203,7 @@ v: { "code" : "34133-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4279,6 +3226,7 @@ v: { "code" : "34133-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4302,6 +3250,7 @@ v: { "code" : "34133-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4324,6 +3273,7 @@ v: { "code" : "34133-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4348,32 +3298,7 @@ v: { "code" : "57852-6", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "57852-6", - "display" : "Problem list Narrative - Reported" - }] -}, "langs":"", "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" : "Problem list Narrative - Reported", - "code" : "57852-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4397,6 +3322,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4419,6 +3345,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4442,6 +3369,7 @@ v: { "code" : "60591-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4465,31 +3393,7 @@ v: { "code" : "48765-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" - }] -}, "langs":"en-NZ", "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" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4513,31 +3417,7 @@ v: { "code" : "11450-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" - }] -}, "langs":"en-NZ", "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" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4561,31 +3441,7 @@ v: { "code" : "10160-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" - }] -}, "langs":"en-NZ", "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" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4609,31 +3465,7 @@ v: { "code" : "11369-6", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "11369-6", - "display" : "History of Immunization Narrative" - }] -}, "langs":"en-NZ", "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" : "History of Immunization Narrative", - "code" : "11369-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4657,31 +3489,7 @@ v: { "code" : "47519-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" - }] -}, "langs":"en-NZ", "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" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4705,31 +3513,7 @@ v: { "code" : "30954-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "30954-2", - "display" : "Relevant diagnostic tests/laboratory data Narrative" - }] -}, "langs":"en-NZ", "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" : "Relevant diagnostic tests/laboratory data Narrative", - "code" : "30954-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4753,31 +3537,7 @@ v: { "code" : "8716-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8716-3", - "display" : "Vital signs" - }] -}, "langs":"en-NZ", "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" : "Vital signs", - "code" : "8716-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4801,31 +3561,7 @@ v: { "code" : "29762-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29762-2", - "display" : "Social history Narrative" - }] -}, "langs":"en-NZ", "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" : "Social history Narrative", - "code" : "29762-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4849,31 +3585,7 @@ v: { "code" : "47420-5", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "47420-5", - "display" : "Functional status assessment note" - }] -}, "langs":"en-NZ", "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" : "Functional status assessment note", - "code" : "47420-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4897,6 +3609,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4919,6 +3632,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4942,31 +3656,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8310-5", - "display" : "Body temperature" - }] -}, "langs":"en-NZ", "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" : "Body temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4990,6 +3680,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5012,6 +3703,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5035,31 +3727,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" - }] -}, "langs":"en-NZ", "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" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5083,6 +3751,7 @@ v: { "code" : "9279-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5105,6 +3774,7 @@ v: { "code" : "9279-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5128,31 +3798,7 @@ v: { "code" : "9279-1", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "9279-1", - "display" : "Respiratory rate" - }] -}, "langs":"en-NZ", "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" : "Respiratory rate", - "code" : "9279-1", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5176,6 +3822,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5198,6 +3845,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5221,6 +3869,7 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5244,6 +3893,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5266,6 +3916,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5289,6 +3940,7 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5312,6 +3964,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5334,6 +3987,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5357,81 +4011,7 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" - }] -}, "langs":"en-NZ", "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" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" - }] -}, "langs":"en-NZ", "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" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" - }] -}, "langs":"en-NZ", "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" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5455,6 +4035,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5477,6 +4058,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5500,31 +4082,7 @@ v: { "code" : "8302-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" - }] -}, "langs":"en-NZ", "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" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5548,6 +4106,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5570,6 +4129,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5593,31 +4153,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" - }] -}, "langs":"en-NZ", "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" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5641,31 +4177,7 @@ v: { "code" : "72166-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "72166-2", - "display" : "Tobacco smoking status" - }] -}, "langs":"en-NZ", "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" : "Tobacco smoking status", - "code" : "72166-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5689,31 +4201,7 @@ v: { "code" : "LA15920-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "LA15920-4", - "display" : "Former smoker" - }] -}, "langs":"en-NZ", "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" : "Former smoker", - "code" : "LA15920-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5737,6 +4225,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5759,6 +4248,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5782,6 +4272,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5805,6 +4296,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5827,6 +4319,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5850,6 +4343,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5873,6 +4367,7 @@ v: { "code" : "9279-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5895,6 +4390,7 @@ v: { "code" : "9279-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5918,6 +4414,7 @@ v: { "code" : "9279-1", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5941,31 +4438,7 @@ v: { "code" : "72166-2", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "72166-2", - "display" : "Tobacco smoking status" - }] -}, "langs":"", "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" : "Tobacco smoking status", - "code" : "72166-2", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5989,6 +4462,7 @@ v: { "code" : "LA15920-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6011,6 +4485,7 @@ v: { "code" : "LA15920-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6034,31 +4509,7 @@ v: { "code" : "LA15920-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "LA15920-4", - "display" : "Former smoker" - }] -}, "langs":"", "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" : "Former smoker", - "code" : "LA15920-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6082,6 +4533,7 @@ v: { "code" : "18842-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6104,6 +4556,7 @@ v: { "code" : "18842-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6127,6 +4580,7 @@ v: { "code" : "18842-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6149,31 +4603,7 @@ v: { "code" : "29299-5", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29299-5" - }], - "text" : "Reason for visit Narrative" -}, "langs":"", "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" : "Reason for visit Narrative", - "code" : "29299-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6197,13 +4627,14 @@ v: { "severity" : "error", "error" : "Unknown code '�g��' in the CodeSystem 'http://loinc.org' version '2.74'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6237,6 +4668,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6259,6 +4691,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6282,32 +4715,7 @@ v: { "code" : "8867-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" - }], - "text" : "Heart rate" -}, "langs":"en", "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" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6331,32 +4739,7 @@ v: { "code" : "883-9", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "883-9", - "display" : "ABO group [Type] in Blood" - }], - "text" : "Blood Group" -}, "langs":"en", "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" : "ABO group [Type] in Blood", - "code" : "883-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6380,32 +4763,7 @@ v: { "code" : "10331-7", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10331-7", - "display" : "Rh [Type] in Blood" - }], - "text" : "Blood Rh Group" -}, "langs":"en", "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" : "Rh [Type] in Blood", - "code" : "10331-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6430,13 +4788,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name '����' for http://loinc.org#18684-1 - should be 'First Blood pressure Set' (for the language(s) 'en')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -6471,13 +4830,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name '���k������' for http://loinc.org#8480-6 - should be one of 2 choices: 'Systolic blood pressure' or 'BP sys' (for the language(s) 'en')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -6512,13 +4872,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name '�g��������' for http://loinc.org#8462-4 - should be one of 2 choices: 'Diastolic blood pressure' or 'BP dias' (for the language(s) 'en')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -6552,32 +4913,7 @@ v: { "code" : "718-7", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "718-7", - "display" : "Hemoglobin [Mass/volume] in Blood" - }], - "text" : "Hb" -}, "langs":"en", "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" : "Hemoglobin [Mass/volume] in Blood", - "code" : "718-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6601,32 +4937,7 @@ v: { "code" : "38483-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "38483-4", - "display" : "Creat Bld-mCnc" - }], - "text" : "Cr" -}, "langs":"en", "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" : "Creatinine [Mass/volume] in Blood", - "code" : "38483-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6650,32 +4961,7 @@ v: { "code" : "2093-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "2093-3", - "display" : "Cholesterol [Mass/volume] in Serum or Plasma" - }], - "text" : "Tchol" -}, "langs":"en", "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" : "Cholesterol [Mass/volume] in Serum or Plasma", - "code" : "2093-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6699,6 +4985,7 @@ v: { "code" : "44261-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6723,6 +5010,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6747,6 +5035,7 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6770,6 +5059,7 @@ v: { "code" : "59408-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6793,32 +5083,7 @@ v: { "code" : "3151-8", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "3151-8", - "display" : "Inhaled oxygen flow rate" - }], - "text" : "Inhaled oxygen flow rate" -}, "langs":"", "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.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6842,6 +5107,7 @@ v: { "code" : "2708-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6866,13 +5132,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#59408-5 ('Oxygen saturation in Arterial blood by Pulse oximetry')' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6905,30 +5172,7 @@ v: { "code" : "69548-6", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "69548-6" - }] -}, "langs":"", "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" : "Genetic variant assessment", - "code" : "69548-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6951,30 +5195,7 @@ v: { "code" : "LA9633-4", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "LA9633-4" - }] -}, "langs":"", "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" : "Present", - "code" : "LA9633-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6997,30 +5218,7 @@ v: { "code" : "LA26398-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "LA26398-0" - }] -}, "langs":"", "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" : "Sequencing", - "code" : "LA26398-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7043,30 +5241,7 @@ v: { "code" : "48018-6", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48018-6" - }] -}, "langs":"", "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" : "Gene studied [ID]", - "code" : "48018-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7089,30 +5264,7 @@ v: { "code" : "81252-9", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "81252-9" - }] -}, "langs":"", "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" : "Discrete genetic variant", - "code" : "81252-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7135,30 +5287,7 @@ v: { "code" : "81290-9", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "81290-9" - }] -}, "langs":"", "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" : "Genomic DNA change (gHGVS)", - "code" : "81290-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7181,30 +5310,7 @@ v: { "code" : "48002-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "48002-0" - }] -}, "langs":"", "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" : "Genomic source class [Type]", - "code" : "48002-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7227,30 +5333,7 @@ v: { "code" : "LA6684-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "LA6684-0" - }] -}, "langs":"", "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" : "Somatic", - "code" : "LA6684-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7273,6 +5356,7 @@ v: { "code" : "69548-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7295,6 +5379,7 @@ v: { "code" : "69548-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7329,6 +5414,7 @@ v: { "code" : "LA9633-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7363,6 +5449,7 @@ v: { "code" : "LA9633-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7397,6 +5484,7 @@ v: { "code" : "LA26398-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7431,6 +5519,7 @@ v: { "code" : "LA26398-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7465,6 +5554,7 @@ v: { "code" : "LA6684-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7499,6 +5589,7 @@ v: { "code" : "LA6684-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7521,6 +5612,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7543,6 +5635,7 @@ v: { "code" : "8310-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7566,31 +5659,7 @@ v: { "code" : "96607-7", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "96607-7", - "display" : "Blood pressure panel mean systolic and mean diastolic" - }] -}, "langs":"", "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" : "Blood pressure panel mean systolic and mean diastolic", - "code" : "96607-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7614,31 +5683,7 @@ v: { "code" : "96608-5", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "96608-5", - "display" : "Systolic blood pressure mean" - }] -}, "langs":"", "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" : "Systolic blood pressure mean", - "code" : "96608-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7662,31 +5707,7 @@ v: { "code" : "96609-3", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "96609-3", - "display" : "Diastolic blood pressure mean" - }] -}, "langs":"", "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" : "Diastolic blood pressure mean", - "code" : "96609-3", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7710,13 +5731,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#96607-7' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7750,13 +5772,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#96608-5' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7790,13 +5813,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://loinc.org#96609-3' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7812,32 +5836,6 @@ v: { }] } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" - }], - "text" : "Blood pressure systolic & diastolic" -}, "langs":"", "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" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -7856,6 +5854,7 @@ v: { "code" : "LA20271-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7879,6 +5878,7 @@ v: { "code" : "LA20278-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7902,6 +5902,7 @@ v: { "code" : "LA20275-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7925,6 +5926,7 @@ v: { "code" : "LA20276-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7948,6 +5950,7 @@ v: { "code" : "LA20296-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7971,6 +5974,7 @@ v: { "code" : "LA32-8", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7994,6 +5998,7 @@ v: { "code" : "LA33-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8144,6 +6149,7 @@ v: { "code" : "LA20271-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8222,6 +6228,7 @@ v: { "code" : "LA20278-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8280,6 +6287,7 @@ v: { "code" : "LA20275-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8370,6 +6378,7 @@ v: { "code" : "LA20276-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8440,6 +6449,7 @@ v: { "code" : "LA20296-2", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8478,6 +6488,7 @@ v: { "code" : "LA32-8", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8516,6 +6527,7 @@ v: { "code" : "LA33-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8538,6 +6550,7 @@ v: { "code" : "LA33-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8560,6 +6573,7 @@ v: { "code" : "LA32-8", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8595,6 +6609,7 @@ v: { "code" : "LA33-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8630,6 +6645,7 @@ v: { "code" : "LA32-8", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8653,31 +6669,7 @@ v: { "code" : "88123-5", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "88123-5", - "display" : "Within the past 12 months the food we bought just didn't last and we didn't have money to get more [U.S. FSS]" - }] -}, "langs":"", "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" : "Within the past 12 months the food we bought just didn't last and we didn't have money to get more [U.S. FSS]", - "code" : "88123-5", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8701,32 +6693,7 @@ v: { "code" : "LA28397-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "LA28397-0", - "display" : "Often true" - }], - "text" : "Often true" -}, "langs":"", "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" : "Often true", - "code" : "LA28397-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8750,13 +6717,14 @@ v: { "severity" : "error", "error" : "Unknown code 'test' in the CodeSystem 'http://loinc.org' version '2.74'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8789,30 +6757,7 @@ v: { "code" : "10155-0", "system" : "http://loinc.org", "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "10155-0" - }] -}, "langs":"", "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" : "History of allergies, reported", - "code" : "10155-0", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.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/measure-scoring.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-scoring.cache index 727db5ffb..7d1b5634c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-scoring.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-scoring.cache @@ -12,15 +12,16 @@ v: { "code" : "proportion", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/measure-scoring could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/measure-scoring' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/measure-scoring", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/measure-scoring could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/measure-scoring' 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/measure-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-type.cache index 00faf1704..acdfece50 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-type.cache @@ -12,15 +12,16 @@ v: { "code" : "process", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/measure-type could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/measure-type' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/measure-type", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/measure-type could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/measure-type' 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/medicationrequest-category.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-category.cache index 0bca6276b..a500c5cf8 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-category.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-category.cache @@ -17,13 +17,14 @@ v: { "code" : "community", "system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -56,13 +57,14 @@ v: { "code" : "community", "system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -96,13 +98,14 @@ v: { "code" : "inpatient", "system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -136,13 +139,14 @@ v: { "code" : "outpatient", "system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-course-of-therapy.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-course-of-therapy.cache index 8a83c43b8..f9a7c138a 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-course-of-therapy.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/medicationrequest-course-of-therapy.cache @@ -17,13 +17,14 @@ v: { "code" : "acute", "system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/null.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/null.cache index 819dde0b8..a5dd8c32c 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/null.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/null.cache @@ -15,15 +15,16 @@ v: { "severity" : "error", "error" : "Coding has no system. A code with no system has no defined meaning, and it cannot be validated. A system should be provided", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], - "severity" : "error", + "severity" : "warning", "code" : "invalid", "details" : { "coding" : [{ @@ -54,15 +55,16 @@ v: { "severity" : "error", "error" : "Coding has no system. A code with no system has no defined meaning, and it cannot be validated. A system should be provided", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], - "severity" : "error", + "severity" : "warning", "code" : "invalid", "details" : { "coding" : [{ diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/organization-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/organization-type.cache index 18c901d95..5886d03a3 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/organization-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/organization-type.cache @@ -17,13 +17,14 @@ v: { "code" : "ins", "system" : "http://terminology.hl7.org/CodeSystem/organization-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -57,13 +58,14 @@ v: { "code" : "prov", "system" : "http://terminology.hl7.org/CodeSystem/organization-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -96,13 +98,14 @@ v: { "code" : "ins", "system" : "http://terminology.hl7.org/CodeSystem/organization-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -136,13 +139,14 @@ v: { "code" : "ins", "system" : "http://terminology.hl7.org/CodeSystem/organization-type", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/questionnaire-item-control.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/questionnaire-item-control.cache index e878f88e6..f5123114e 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/questionnaire-item-control.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/questionnaire-item-control.cache @@ -16,13 +16,14 @@ v: { "code" : "autocomplete", "system" : "http://hl7.org/fhir/questionnaire-item-control", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/rxnorm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/rxnorm.cache index 8a3251977..4aea412fa 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/rxnorm.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/rxnorm.cache @@ -15,31 +15,7 @@ v: { "code" : "1000990", "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", "version" : "??rx1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1000990", - "display" : "oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray" - }] -}, "langs":"", "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" : "oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray", - "code" : "1000990", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -63,31 +39,7 @@ v: { "code" : "1010603", "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", "version" : "??rx1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1010603", - "display" : "Suboxone 2 MG / 0.5 MG Sublingual Film" - }] -}, "langs":"", "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" : "buprenorphine 2 MG / naloxone 0.5 MG Sublingual Film [Suboxone]", - "code" : "1010603", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -111,31 +63,7 @@ v: { "code" : "1298088", "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", "version" : "??rx1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1298088", - "display" : "Flurazepam Hydrochloride 15 MG Oral Capsule" - }] -}, "langs":"", "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" : "flurazepam hydrochloride 15 MG Oral Capsule", - "code" : "1298088", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -159,31 +87,7 @@ v: { "code" : "1010600", "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", "version" : "??rx1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1010600", - "display" : "buprenorphine 2 MG / naloxone 0.5 MG Sublingual Film" - }] -}, "langs":"", "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" : "buprenorphine 2 MG / naloxone 0.5 MG Sublingual Film", - "code" : "1010600", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -206,6 +110,7 @@ v: { "code" : "1591957", "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", "version" : "??rx1", + "server" : "http://local.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/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache index 7b11505ef..87928d67e 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 @@ -15,6 +15,7 @@ v: { "code" : "721912009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -38,32 +39,7 @@ v: { "code" : "91935009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "91935009", - "display" : "Allergy to peanuts" - }], - "text" : "Allergy to peanuts" -}, "langs":"", "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" : "Allergy to peanuts", - "code" : "91935009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -87,32 +63,7 @@ v: { "code" : "3718001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "3718001", - "display" : "Cow's milk" - }], - "text" : "Allergy to cow's milk" -}, "langs":"", "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" : "Cow's milk", - "code" : "3718001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -136,6 +87,7 @@ v: { "code" : "255604002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -158,6 +110,7 @@ v: { "code" : "255604002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -181,6 +134,7 @@ v: { "code" : "255604002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -204,32 +158,7 @@ v: { "code" : "409002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "409002", - "display" : "Food allergy diet" - }], - "text" : "Food allergy diet" -}, "langs":"", "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" : "Food allergy diet", - "code" : "409002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -254,13 +183,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Moderate' for http://snomed.info/sct#6736007 - should be one of 4 choices: 'Midgrade', 'Moderate (severity modifier) (qualifier value)', 'Moderate (severity modifier)' or 'Moderate severity' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -293,6 +223,7 @@ v: { "code" : "6736007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -316,32 +247,7 @@ v: { "code" : "437009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "437009", - "display" : "Abnormal composition of urine" - }], - "text" : "Abnormal composition of urine" -}, "langs":"", "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" : "Abnormal composition of urine", - "code" : "437009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -365,31 +271,7 @@ v: { "code" : "9846003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "9846003", - "display" : "Right kidney" - }] -}, "langs":"", "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" : "Right kidney", - "code" : "9846003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -413,32 +295,7 @@ v: { "code" : "189009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "189009", - "display" : "Excision of lesion of artery" - }], - "text" : "Excision of lesion of artery" -}, "langs":"", "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" : "Excision of lesion of artery", - "code" : "189009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -462,32 +319,7 @@ v: { "code" : "911003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "911003", - "display" : "Removal of subarachnoid-ureteral shunt" - }], - "text" : "Removal of subarachnoid-ureteral shunt" -}, "langs":"", "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" : "Removal of subarachnoid-ureteral shunt", - "code" : "911003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -511,6 +343,7 @@ v: { "code" : "112144000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -534,31 +367,7 @@ v: { "code" : "80943009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "80943009", - "display" : "Risk Factor" - }] -}, "langs":"", "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" : "Risk factor", - "code" : "80943009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -582,32 +391,7 @@ v: { "code" : "77176002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "77176002", - "display" : "Smoker" - }], - "text" : "Smoker" -}, "langs":"", "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" : "Smoker", - "code" : "77176002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -631,32 +415,7 @@ v: { "code" : "38341003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "38341003", - "display" : "Hypertensive disorder, systemic arterial (disorder)" - }], - "text" : "Hypertensive disorder, systemic arterial (disorder)" -}, "langs":"", "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" : "High blood pressure", - "code" : "38341003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -680,9 +439,28 @@ v: { "code" : "1419004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '1419004' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -706,15 +484,23 @@ v: { "code" : "1419004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "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" : "invalid", "details" : { "text" : "The code '1419004' is valid but is not active" - } + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] }] } @@ -736,32 +522,7 @@ v: { "code" : "93880001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "93880001", - "display" : "Primary malignant neoplasm of lung (disorder)" - }], - "text" : "Primary malignant neoplasm of lung (disorder)" -}, "langs":"", "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 malignant neoplasm of lung", - "code" : "93880001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -785,31 +546,7 @@ v: { "code" : "248986005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "248986005", - "display" : "Estimated date of conception" - }] -}, "langs":"", "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" : "Estimated date of conception", - "code" : "248986005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -833,31 +570,7 @@ v: { "code" : "161714006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "161714006", - "display" : "Estimated date of delivery" - }] -}, "langs":"", "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" : "Estimated date of delivery", - "code" : "161714006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -881,31 +594,7 @@ v: { "code" : "161713000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "161713000", - "display" : "Last menstrual period - First day" - }] -}, "langs":"", "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" : "Last menstrual period -1st day", - "code" : "161713000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -929,31 +618,7 @@ v: { "code" : "445872007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "445872007", - "display" : "Length of gestation at time of procedure" - }] -}, "langs":"", "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" : "Length of gestation at time of procedure (observable entity)", - "code" : "445872007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -977,6 +642,7 @@ v: { "code" : "722446000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1000,31 +666,7 @@ v: { "code" : "371531000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "371531000", - "display" : "Report of clinical encounter (record artifact)" - }] -}, "langs":"", "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" : "Encounter report", - "code" : "371531000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1048,6 +690,7 @@ v: { "code" : "4241000179101", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1071,31 +714,7 @@ v: { "code" : "422735006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "422735006", - "display" : "Summary clinical document (record artifact)" - }] -}, "langs":"", "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" : "Summary clinical document (record artifact)", - "code" : "422735006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1119,31 +738,7 @@ v: { "code" : "440545006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "440545006", - "display" : "Prescription record" - }] -}, "langs":"en-IN", "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" : "Prescription record (record artifact)", - "code" : "440545006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1167,9 +762,28 @@ v: { "code" : "324252006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '324252006' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -1192,15 +806,23 @@ v: { "code" : "324252006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "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" : "invalid", "details" : { "text" : "The code '324252006' is valid but is not active" - } + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] }] } @@ -1223,13 +845,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Traveller's Diarrhea (disorder)' for http://snomed.info/sct#11840006 - should be one of 4 choices: 'Traveler's diarrhea', 'Turista', 'Traveler's diarrhoea' or 'Traveler's diarrhea (disorder)' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -1263,32 +886,7 @@ v: { "code" : "21522001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "21522001", - "display" : "Abdominal pain" - }], - "text" : "Abdominal pain" -}, "langs":"", "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" : "Abdominal pain", - "code" : "21522001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1312,31 +910,7 @@ v: { "code" : "311504000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "311504000", - "display" : "With or after food" - }] -}, "langs":"", "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" : "With or after food", - "code" : "311504000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1360,31 +934,7 @@ v: { "code" : "26643006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "26643006", - "display" : "Oral Route" - }] -}, "langs":"", "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" : "Oral route", - "code" : "26643006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1408,31 +958,7 @@ v: { "code" : "421521009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "421521009", - "display" : "Swallow" - }] -}, "langs":"", "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" : "Swallow - dosing instruction imperative (qualifier value)", - "code" : "421521009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1456,9 +982,28 @@ v: { "code" : "602001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '602001' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -1481,15 +1026,23 @@ v: { "code" : "602001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "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" : "invalid", "details" : { "text" : "The code '602001' is valid but is not active" - } + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] }] } @@ -1511,32 +1064,7 @@ v: { "code" : "91935009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "91935009", - "display" : "Allergy to peanuts" - }], - "text" : "Allergy to peanuts" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergy to peanuts", - "code" : "91935009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1560,32 +1088,7 @@ v: { "code" : "3718001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "3718001", - "display" : "Cow's milk" - }], - "text" : "Allergy to cow's milk" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cow's milk", - "code" : "3718001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1609,6 +1112,7 @@ v: { "code" : "255604002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1631,6 +1135,7 @@ v: { "code" : "255604002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1654,6 +1159,7 @@ v: { "code" : "255604002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1677,32 +1183,7 @@ v: { "code" : "409002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "409002", - "display" : "Food allergy diet" - }], - "text" : "Food allergy diet" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Food allergy diet", - "code" : "409002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1728,13 +1209,14 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "severity" : "warning", "error" : "Wrong Display Name 'Moderate' for http://snomed.info/sct#6736007 - should be one of 4 choices: 'Midgrade', 'Moderate (severity modifier) (qualifier value)', 'Moderate (severity modifier)' or 'Moderate severity' (for the language(s) 'en')", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "warning", "code" : "invalid", @@ -1767,6 +1249,7 @@ v: { "code" : "6736007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1792,13 +1275,14 @@ v: { "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "severity" : "warning", "error" : "Wrong Display Name 'Moderate' for http://snomed.info/sct#6736007 - should be one of 4 choices: 'Midgrade', 'Moderate (severity modifier) (qualifier value)', 'Moderate (severity modifier)' or 'Moderate severity' (for the language(s) 'en')", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "warning", "code" : "invalid", @@ -1832,32 +1316,7 @@ v: { "code" : "437009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "437009", - "display" : "Abnormal composition of urine" - }], - "text" : "Abnormal composition of urine" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Abnormal composition of urine", - "code" : "437009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1881,31 +1340,7 @@ v: { "code" : "9846003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "9846003", - "display" : "Right kidney" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Right kidney", - "code" : "9846003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1929,32 +1364,7 @@ v: { "code" : "189009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "189009", - "display" : "Excision of lesion of artery" - }], - "text" : "Excision of lesion of artery" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Excision of lesion of artery", - "code" : "189009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1978,31 +1388,7 @@ v: { "code" : "8821006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "8821006", - "display" : "Peroneal artery" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Peroneal artery", - "code" : "8821006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2026,32 +1412,7 @@ v: { "code" : "911003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "911003", - "display" : "Removal of subarachnoid-ureteral shunt" - }], - "text" : "Removal of subarachnoid-ureteral shunt" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Removal of subarachnoid-ureteral shunt", - "code" : "911003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2075,6 +1436,7 @@ v: { "code" : "112144000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2097,6 +1459,7 @@ v: { "code" : "112144000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2120,31 +1483,7 @@ v: { "code" : "80943009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "80943009", - "display" : "Risk Factor" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Risk factor", - "code" : "80943009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2168,32 +1507,7 @@ v: { "code" : "77176002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "77176002", - "display" : "Smoker" - }], - "text" : "Smoker" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Smoker", - "code" : "77176002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2217,32 +1531,7 @@ v: { "code" : "38341003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "38341003", - "display" : "Hypertensive disorder, systemic arterial (disorder)" - }], - "text" : "Hypertensive disorder, systemic arterial (disorder)" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "High blood pressure", - "code" : "38341003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2266,9 +1555,28 @@ v: { "code" : "1419004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '1419004' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -2292,15 +1600,23 @@ v: { "code" : "1419004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "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" : "invalid", "details" : { "text" : "The code '1419004' is valid but is not active" - } + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] }] } @@ -2322,32 +1638,7 @@ v: { "code" : "93880001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "93880001", - "display" : "Primary malignant neoplasm of lung (disorder)" - }], - "text" : "Primary malignant neoplasm of lung (disorder)" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary malignant neoplasm of lung", - "code" : "93880001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2371,31 +1662,7 @@ v: { "code" : "248986005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "248986005", - "display" : "Estimated date of conception" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Estimated date of conception", - "code" : "248986005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2419,31 +1686,7 @@ v: { "code" : "161714006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "161714006", - "display" : "Estimated date of delivery" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Estimated date of delivery", - "code" : "161714006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2467,31 +1710,7 @@ v: { "code" : "161713000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "161713000", - "display" : "Last menstrual period - First day" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Last menstrual period -1st day", - "code" : "161713000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2515,31 +1734,7 @@ v: { "code" : "445872007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "445872007", - "display" : "Length of gestation at time of procedure" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Length of gestation at time of procedure (observable entity)", - "code" : "445872007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2563,6 +1758,7 @@ v: { "code" : "722446000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2585,6 +1781,7 @@ v: { "code" : "722446000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2608,6 +1805,7 @@ v: { "code" : "371531000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2630,6 +1828,7 @@ v: { "code" : "371531000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2653,6 +1852,7 @@ v: { "code" : "4241000179101", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2675,6 +1875,7 @@ v: { "code" : "4241000179101", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2698,6 +1899,7 @@ v: { "code" : "422735006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2720,56 +1922,7 @@ v: { "code" : "422735006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "371531000", - "display" : "Report of clinical encounter (record artifact)" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Encounter report", - "code" : "371531000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "422735006", - "display" : "Summary clinical document (record artifact)" - }] -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Summary clinical document (record artifact)", - "code" : "422735006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2793,13 +1946,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#77176002' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2833,13 +1987,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#38341003' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0|0.5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -2873,15 +2028,23 @@ v: { "code" : "78615007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "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" : "invalid", "details" : { "text" : "The code '78615007' is valid but is not active" - } + }, + "location" : ["Coding.code"], + "expression" : ["Coding.code"] }] } @@ -2903,6 +2066,7 @@ v: { "code" : "246075003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2926,6 +2090,7 @@ v: { "code" : "363702006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -2950,32 +2115,7 @@ v: { "code" : "454281000124100", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/731000124108/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108", - "code" : "454281000124100", - "display" : "Assessment of risk for opioid abuse (procedure)" - }] -}, "langs":"", "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" : "Assessment of risk for opioid abuse (procedure)", - "code" : "454281000124100", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3000,13 +2140,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Progress note' for http://snomed.info/sct#371532007 - should be one of 3 choices: 'Progress report', 'Report of subsequent visit' or 'Progress report (record artifact)' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -3040,31 +2181,7 @@ v: { "code" : "371525003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "371525003", - "display" : "Clinical procedure report" - }] -}, "langs":"", "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" : "Clinical procedure report", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3087,6 +2204,7 @@ v: { "code" : "371532007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3109,6 +2227,7 @@ v: { "code" : "371525003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3133,13 +2252,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct|http://snomed.info/sct/2011000195101#264358009' was not found in the value set 'http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType|0.1.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3174,13 +2294,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct|http://snomed.info/sct/2011000195101#46224007' was not found in the value set 'http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType|0.1.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -3214,6 +2335,7 @@ v: { "code" : "264372000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/2011000195101/version/20230607", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3237,6 +2359,7 @@ v: { "code" : "419891008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3260,31 +2383,7 @@ v: { "code" : "371525003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "371525003", - "display" : "Clinical procedure report (record artifact)" - }] -}, "langs":"", "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" : "Clinical procedure report", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3308,6 +2407,7 @@ v: { "code" : "17621005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3331,31 +2431,7 @@ v: { "code" : "722172003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "722172003", - "display" : "Military health institution (environment)" - }] -}, "langs":"", "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" : "Military health institution (environment)", - "code" : "722172003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3379,31 +2455,7 @@ v: { "code" : "394609007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "394609007", - "display" : "General surgery (qualifier value)" - }] -}, "langs":"", "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" : "General surgery (qualifier value)", - "code" : "394609007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3427,31 +2479,7 @@ v: { "code" : "71388002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "71388002", - "display" : "Procedure (procedure)" - }] -}, "langs":"", "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" : "Procedure", - "code" : "71388002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3474,15 +2502,16 @@ v: { v: { "code" : "271872005", "severity" : "error", - "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/11000146104/version/20220930", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -3491,7 +2520,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -3518,13 +2547,14 @@ v: { "severity" : "error", "error" : "No Message returned", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -3558,31 +2588,7 @@ v: { "code" : "410534003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "410534003", - "display" : "Not indicated (qualifier value)" - }] -}, "langs":"", "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" : "Not indicated (qualifier value)", - "code" : "410534003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3606,31 +2612,7 @@ v: { "code" : "158965000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "158965000", - "display" : "Doctor" - }] -}, "langs":"en-NZ", "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" : "Medical practitioner", - "code" : "158965000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3654,31 +2636,7 @@ v: { "code" : "96067005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "96067005", - "display" : "Flucloxacillin-containing product" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3702,31 +2660,7 @@ v: { "code" : "292954005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "292954005", - "display" : "Penicillin adverse reaction" - }] -}, "langs":"en-NZ", "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" : "Penicillin adverse reaction", - "code" : "292954005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3750,31 +2684,7 @@ v: { "code" : "48546005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "48546005", - "display" : "Diazepam-containing product" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3798,31 +2708,7 @@ v: { "code" : "292360004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "292360004", - "display" : "Diazepam adverse reaction" - }] -}, "langs":"en-NZ", "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" : "Diazepam adverse reaction", - "code" : "292360004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3846,31 +2732,7 @@ v: { "code" : "40425004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "40425004", - "display" : "Postconcussion syndrome" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3894,31 +2756,7 @@ v: { "code" : "237599002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "237599002", - "display" : "Diabetes type 2 on insulin" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3942,31 +2780,7 @@ v: { "code" : "90560007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "90560007", - "display" : "Gout" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -3990,31 +2804,7 @@ v: { "code" : "1201005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "1201005", - "display" : "Benign essential hypertension" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4038,31 +2828,7 @@ v: { "code" : "52910006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "52910006", - "display" : "Anxiety disorder due to a general medical condition" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4086,31 +2852,7 @@ v: { "code" : "5913000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "5913000", - "display" : "Fracture of neck of femur" - }] -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4134,32 +2876,7 @@ v: { "code" : "126212009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4183,31 +2900,7 @@ v: { "code" : "34206005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "34206005", - "display" : "subcutaneous route" - }] -}, "langs":"en-NZ", "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" : "Subcutaneous route", - "code" : "34206005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4230,6 +2923,7 @@ v: { "code" : "767525000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4253,32 +2947,7 @@ v: { "code" : "714081009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4302,32 +2971,7 @@ v: { "code" : "109081006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4351,31 +2995,7 @@ v: { "code" : "26643006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "26643006", - "display" : "Oral route" - }] -}, "langs":"en-NZ", "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" : "Oral route", - "code" : "26643006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4398,6 +3018,7 @@ v: { "code" : "428673006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4421,32 +3042,7 @@ v: { "code" : "108537001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4470,32 +3066,7 @@ v: { "code" : "96309000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4519,32 +3090,7 @@ v: { "code" : "7947003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4568,32 +3114,7 @@ v: { "code" : "25246002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4617,31 +3138,7 @@ v: { "code" : "16217701000119102", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "16217701000119102", - "display" : "Structure of left deltoid muscle" - }] -}, "langs":"en-NZ", "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" : "Structure of left deltoid muscle", - "code" : "16217701000119102", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4665,32 +3162,7 @@ v: { "code" : "265132005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "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" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4714,32 +3186,7 @@ v: { "code" : "287903004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "287903004", - "display" : "Suturing of hand" - }], - "text" : "Hand closure" -}, "langs":"en-NZ", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4763,31 +3210,7 @@ v: { "code" : "81464008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "81464008", - "display" : "Clinical pathologist" - }] -}, "langs":"en-NZ", "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" : "Clinical pathologist", - "code" : "81464008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4811,6 +3234,7 @@ v: { "code" : "96067005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4834,13 +3258,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -4873,6 +3298,7 @@ v: { "code" : "96067005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4896,6 +3322,7 @@ v: { "code" : "96067005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4919,6 +3346,7 @@ v: { "code" : "292954005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -4942,13 +3370,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -4982,6 +3411,7 @@ v: { "code" : "48546005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5005,13 +3435,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -5044,6 +3475,7 @@ v: { "code" : "48546005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5067,6 +3499,7 @@ v: { "code" : "48546005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5090,6 +3523,7 @@ v: { "code" : "292360004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5113,13 +3547,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -5153,6 +3588,7 @@ v: { "code" : "40425004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5175,6 +3611,7 @@ v: { "code" : "40425004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5198,6 +3635,7 @@ v: { "code" : "40425004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5221,6 +3659,7 @@ v: { "code" : "237599002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5243,6 +3682,7 @@ v: { "code" : "237599002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5266,6 +3706,7 @@ v: { "code" : "237599002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5289,6 +3730,7 @@ v: { "code" : "90560007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5311,6 +3753,7 @@ v: { "code" : "90560007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5334,6 +3777,7 @@ v: { "code" : "90560007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5357,6 +3801,7 @@ v: { "code" : "1201005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5379,6 +3824,7 @@ v: { "code" : "1201005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5402,6 +3848,7 @@ v: { "code" : "1201005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5425,6 +3872,7 @@ v: { "code" : "52910006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5447,6 +3895,7 @@ v: { "code" : "52910006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5470,6 +3919,7 @@ v: { "code" : "52910006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5493,6 +3943,7 @@ v: { "code" : "5913000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5515,6 +3966,7 @@ v: { "code" : "5913000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5538,6 +3990,7 @@ v: { "code" : "5913000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5561,6 +4014,7 @@ v: { "code" : "126212009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5583,6 +4037,7 @@ v: { "code" : "126212009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5606,13 +4061,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -5646,6 +4102,7 @@ v: { "code" : "126212009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5669,31 +4126,7 @@ v: { "code" : "34206005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "34206005", - "display" : "subcutaneous route" - }] -}, "langs":"", "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" : "Subcutaneous route", - "code" : "34206005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5716,6 +4149,7 @@ v: { "code" : "767525000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5739,6 +4173,7 @@ v: { "code" : "714081009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5761,6 +4196,7 @@ v: { "code" : "714081009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5784,13 +4220,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -5824,6 +4261,7 @@ v: { "code" : "714081009", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5847,6 +4285,7 @@ v: { "code" : "109081006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5869,6 +4308,7 @@ v: { "code" : "109081006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5892,13 +4332,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -5932,6 +4373,7 @@ v: { "code" : "109081006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -5955,31 +4397,7 @@ v: { "code" : "26643006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "26643006", - "display" : "Oral route" - }] -}, "langs":"", "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" : "Oral route", - "code" : "26643006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6002,6 +4420,7 @@ v: { "code" : "428673006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6025,6 +4444,7 @@ v: { "code" : "108537001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6047,6 +4467,7 @@ v: { "code" : "108537001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6070,13 +4491,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6110,6 +4532,7 @@ v: { "code" : "108537001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6133,6 +4556,7 @@ v: { "code" : "96309000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6155,6 +4579,7 @@ v: { "code" : "96309000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6178,13 +4603,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6218,6 +4644,7 @@ v: { "code" : "96309000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6241,6 +4668,7 @@ v: { "code" : "7947003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6263,6 +4691,7 @@ v: { "code" : "7947003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6286,13 +4715,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6326,6 +4756,7 @@ v: { "code" : "7947003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6349,6 +4780,7 @@ v: { "code" : "25246002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6371,6 +4803,7 @@ v: { "code" : "25246002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6394,13 +4827,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6434,6 +4868,7 @@ v: { "code" : "25246002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6457,6 +4892,7 @@ v: { "code" : "16217701000119102", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6479,6 +4915,7 @@ v: { "code" : "16217701000119102", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6502,6 +4939,7 @@ v: { "code" : "16217701000119102", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6525,6 +4963,7 @@ v: { "code" : "265132005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6547,6 +4986,7 @@ v: { "code" : "265132005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6570,13 +5010,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6610,13 +5051,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6650,13 +5092,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6690,13 +5133,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6730,13 +5174,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6770,13 +5215,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6810,13 +5256,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6850,13 +5297,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6890,6 +5338,7 @@ v: { "code" : "265132005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6913,6 +5362,7 @@ v: { "code" : "287903004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6935,6 +5385,7 @@ v: { "code" : "287903004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -6958,13 +5409,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -6998,13 +5450,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7038,13 +5491,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7078,13 +5532,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7118,13 +5573,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7158,13 +5614,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7198,13 +5655,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7238,13 +5696,14 @@ v: { "severity" : "error", "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7278,6 +5737,7 @@ v: { "code" : "287903004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7301,6 +5761,7 @@ v: { "code" : "81464008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7324,32 +5785,7 @@ v: { "code" : "112144000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "112144000", - "display" : "Blood group A (finding)" - }], - "text" : "A" -}, "langs":"en", "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" : "Blood group A", - "code" : "112144000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7373,32 +5809,7 @@ v: { "code" : "10828004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "10828004", - "display" : "Positive (qualifier value)" - }], - "text" : "Positive" -}, "langs":"en", "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" : "Positive", - "code" : "10828004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7422,31 +5833,7 @@ v: { "code" : "233588003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "233588003", - "display" : "Continuous hemodiafiltration" - }] -}, "langs":"en", "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" : "Continuous haemodiafiltration", - "code" : "233588003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7470,31 +5857,7 @@ v: { "code" : "324689003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "324689003", - "display" : "Nystatin 100000 unit/mL oral suspension" - }] -}, "langs":"", "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 precisely nystatin 100000 unit/1 milliliter conventional release oral suspension (clinical drug)", - "code" : "324689003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7518,32 +5881,7 @@ v: { "code" : "442311008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "442311008", - "display" : "Liveborn born in hospital" - }], - "text" : "Single liveborn, born in hospital" -}, "langs":"", "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" : "Liveborn born in hospital", - "code" : "442311008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7567,31 +5905,7 @@ v: { "code" : "840539006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "840539006", - "display" : "COVID-19" - }] -}, "langs":"", "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" : "Disease caused by 2019 novel coronavirus", - "code" : "840539006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7616,13 +5930,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'COVID-19' for http://snomed.info/sct#840535000 - should be 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) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -7656,32 +5971,7 @@ v: { "code" : "840535000", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "840535000", - "display" : "Antibody to 2019 novel coronavirus" - }], - "text" : "COVID-19" -}, "langs":"", "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" : "Antibody to 2019 novel coronavirus", - "code" : "840535000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7705,31 +5995,7 @@ v: { "code" : "32485007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "32485007", - "display" : "Hospital admission (procedure)" - }] -}, "langs":"", "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", - "code" : "32485007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7753,31 +6019,7 @@ v: { "code" : "32713005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "32713005", - "display" : "Cecum structure (body structure)" - }] -}, "langs":"", "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" : "Cecum", - "code" : "32713005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7801,13 +6043,14 @@ v: { "severity" : "error", "error" : "Unknown code '10821000202101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7842,13 +6085,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Diagnostisk med biopsi' for http://snomed.info/sct#446745002 - should be one of 2 choices: 'Colonoscopy and biopsy of colon (procedure)' or 'Colonoscopy and biopsy of colon' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -7882,31 +6126,7 @@ v: { "code" : "73761001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "73761001", - "display" : "Colonoscopy (procedure)" - }] -}, "langs":"", "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" : "Colonoscopy", - "code" : "73761001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -7930,13 +6150,14 @@ v: { "severity" : "error", "error" : "Unknown code '8921000202108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -7970,13 +6191,14 @@ v: { "severity" : "error", "error" : "Unknown code '8951000202101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8010,31 +6232,7 @@ v: { "code" : "300577008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "300577008", - "display" : "Finding of lesion (finding)" - }] -}, "langs":"", "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" : "Finding of lesion", - "code" : "300577008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8058,13 +6256,14 @@ v: { "severity" : "error", "error" : "Unknown code '10291000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8098,31 +6297,7 @@ v: { "code" : "722818007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "722818007", - "display" : "Boston bowel preparation scale (assessment scale)" - }] -}, "langs":"", "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" : "Boston bowel preparation scale", - "code" : "722818007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8146,13 +6321,14 @@ v: { "severity" : "error", "error" : "Unknown code '8901000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8186,31 +6362,7 @@ v: { "code" : "10291000132101", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "10291000132101", - "display" : "Portion of mucosa of colon segment seen, but other areas of colon segment not well seen due to staining, residual stool and/or opaque liquid (finding)" - }] -}, "langs":"", "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" : "Portion of mucosa of the colon segment seen, but other areas of the colon segment are not well seen because of staining, residual stool, or opaque liquid, 1", - "code" : "10291000132101", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8234,13 +6386,14 @@ v: { "severity" : "error", "error" : "Unknown code '8911000202100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8274,31 +6427,7 @@ v: { "code" : "10301000132102", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "10301000132102", - "display" : "Minor amount of residual staining, small fragments of stool and/or opaque liquid, but mucosa of colon segment seen well (finding)" - }] -}, "langs":"", "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" : "Minor amount of residual staining, small fragments of stool and/or opaque liquid, but mucosa of colon segment seen well (finding)", - "code" : "10301000132102", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8322,13 +6451,14 @@ v: { "severity" : "error", "error" : "Unknown code '8891000202103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8362,31 +6492,7 @@ v: { "code" : "10311000132100", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "10311000132100", - "display" : "Entire mucosa of colon segment seen well with no residual staining, small fragments of stool or opaque liquid (finding)" - }] -}, "langs":"", "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" : "Entire mucosa of colon segment seen well with no residual staining, small fragments of stool or opaque liquid (finding)", - "code" : "10311000132100", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8409,30 +6515,7 @@ v: { "code" : "246206008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "246206008" - }] -}, "langs":"", "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" : "Number of lesions", - "code" : "246206008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8456,13 +6539,14 @@ v: { "severity" : "error", "error" : "Unknown code '15991000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8478,31 +6562,6 @@ v: { }] } -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "17621005", - "display" : "Normal (qualifier value)" - }] -}, "langs":"", "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" : "Normal", - "code" : "17621005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -8521,31 +6580,7 @@ v: { "code" : "712510007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "712510007", - "display" : "Intestinal hemorrhage (disorder)" - }] -}, "langs":"", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8569,6 +6604,7 @@ v: { "code" : "372756006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8592,56 +6628,7 @@ v: { "code" : "387458008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "372756006", - "display" : "Warfarin (substance)" - }] -}, "langs":"", "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/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "387458008", - "display" : "Aspirin (substance)" - }] -}, "langs":"", "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/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8664,15 +6651,16 @@ v: { v: { "code" : "27113001", "severity" : "error", - "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/900000000000207008/version/20210731", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -8681,7 +6669,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -8705,15 +6693,16 @@ v: { v: { "code" : "38266002", "severity" : "error", - "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/900000000000207008/version/20210731", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -8722,7 +6711,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -8746,15 +6735,16 @@ v: { v: { "code" : "27113001", "severity" : "error", - "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]; 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", + "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]; 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", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/900000000000207008/version/20210731", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -8763,7 +6753,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -8771,7 +6761,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "warning", "code" : "not-found", @@ -8804,30 +6794,7 @@ v: { "code" : "276885007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "276885007" - }] -}, "langs":"", "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" : "Core body temperature", - "code" : "276885007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8850,13 +6817,14 @@ v: { "severity" : "error", "error" : "Unknown code '276885007x' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -8873,7 +6841,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "code-invalid", @@ -8907,31 +6875,7 @@ v: { "code" : "723961002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "723961002", - "display" : "Structure of left brachial artery (body structure)" - }] -}, "langs":"", "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" : "Structure of left brachial artery (body structure)", - "code" : "723961002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -8955,9 +6899,28 @@ v: { "code" : "58108001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '58108001' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -8978,6 +6941,7 @@ v: { "code" : "119339001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -9001,6 +6965,7 @@ v: { "code" : "5933001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -9023,15 +6988,16 @@ v: { v: { "code" : "459231000124102", "severity" : "error", - "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/900000000000207008/version/20210331", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -9040,7 +7006,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -9064,15 +7030,16 @@ v: { v: { "code" : "36989005", "severity" : "error", - "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/11000146104/version/20220930", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -9081,7 +7048,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -9107,13 +7074,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Paracetamol 500mg tablets' for http://snomed.info/sct#322236009 - should be 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) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -9147,13 +7115,14 @@ v: { "severity" : "error", "error" : "Unknown code '35901911000001104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -9186,6 +7155,7 @@ v: { "code" : "258773002", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -9210,13 +7180,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Ibuprofen 200mg tablets' for http://snomed.info/sct#329652003 - should be 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) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -9250,13 +7221,14 @@ v: { "severity" : "error", "error" : "Unknown code '39695211000001102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -9290,13 +7262,14 @@ v: { "severity" : "error", "error" : "Unknown code '56248011000036107' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -9329,13 +7302,14 @@ v: { "severity" : "error", "error" : "Unknown code '1' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -9368,13 +7342,14 @@ v: { "severity" : "error", "error" : "Unknown code '2' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemimaginary.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemimaginary.cache index cbf09e40c..cc8536b5d 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemimaginary.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemimaginary.cache @@ -12,15 +12,16 @@ v: { "code" : "code-a", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/imaginary could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/imaginary' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/imaginary", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,50 +30,10 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/imaginary could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/imaginary' could not be found, so the code cannot be validated" }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/test/CodeSystem/imaginary", - "code" : "code-c" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/imaginary could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/imaginary", - "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/CodeSystem/imaginary could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemother.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemother.cache index 41f454654..e73138738 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemother.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemother.cache @@ -12,15 +12,16 @@ v: { "code" : "other", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/other could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/other' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/other", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/other could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/other' 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/testCodeSystemsupplement-cs.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemsupplement-cs.cache index 84be32580..0ebd56c48 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemsupplement-cs.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemsupplement-cs.cache @@ -13,15 +13,16 @@ }}#### v: { "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/supplement-cs could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/supplement-cs' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/supplement-cs", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/supplement-cs could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/supplement-cs' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ucum.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ucum.cache index c846341ab..18040da92 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ucum.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ucum.cache @@ -14,6 +14,7 @@ v: { "code" : "%", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -36,6 +37,7 @@ v: { "code" : "%", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -59,13 +61,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#L/min' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -98,6 +101,7 @@ v: { "code" : "L/min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -120,6 +124,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -143,13 +148,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#cm' was not found in the value set 'https://bb/ValueSet/BBDemographicAgeUnit|20190731'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -182,6 +188,7 @@ v: { "code" : "min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -204,6 +211,7 @@ v: { "code" : "mmol/L", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -226,6 +234,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -248,6 +257,7 @@ v: { "code" : "kg/m2", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -270,6 +280,7 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -292,6 +303,7 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -314,6 +326,7 @@ v: { "code" : "wk", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -336,6 +349,7 @@ v: { "code" : "min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -358,6 +372,7 @@ v: { "code" : "mmol/L", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -380,6 +395,7 @@ v: { "code" : "%", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -402,6 +418,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -424,6 +441,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -446,6 +464,7 @@ v: { "code" : "kg/m2", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -468,6 +487,7 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -490,6 +510,7 @@ v: { "code" : "wk", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -512,6 +533,7 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -534,6 +556,7 @@ v: { "code" : "h", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -556,6 +579,7 @@ v: { "code" : "ar", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -578,6 +602,7 @@ v: { "code" : "l", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -600,6 +625,7 @@ v: { "code" : "{capsule}", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -622,6 +648,7 @@ v: { "code" : "{patch}", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -644,6 +671,7 @@ v: { "code" : "m", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -667,13 +695,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#m' was not found in the value set 'http://hl7.org/fhir/ValueSet/age-units|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -706,6 +735,7 @@ v: { "code" : "mmol/L", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -728,6 +758,7 @@ v: { "code" : "mmol/mol", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -750,6 +781,7 @@ v: { "code" : "Cel", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -772,6 +804,7 @@ v: { "code" : "/min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -794,6 +827,7 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -816,6 +850,7 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -838,6 +873,7 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -860,6 +896,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -882,6 +919,7 @@ v: { "code" : "mmol/mol", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -904,6 +942,7 @@ v: { "code" : "Cel", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -926,6 +965,7 @@ v: { "code" : "/min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -948,6 +988,7 @@ v: { "code" : "/min", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -970,6 +1011,7 @@ v: { "code" : "mg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -992,6 +1034,7 @@ v: { "code" : "mm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1014,6 +1057,7 @@ v: { "code" : "kg", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1036,6 +1080,7 @@ v: { "code" : "g", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1058,6 +1103,7 @@ v: { "code" : "mm[Hg]{hg}", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -1080,13 +1126,14 @@ v: { "severity" : "error", "error" : "Unknown code 'fmm[Hg]' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1103,7 +1150,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "code-invalid", @@ -1137,13 +1184,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#mm[Hg]{hg}' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1176,13 +1224,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://unitsofmeasure.org#fmm[Hg]' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-vitals-common|4.0.1'; Unknown code 'fmm[Hg]' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "code-invalid", @@ -1199,7 +1248,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1216,7 +1265,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -1249,6 +1298,7 @@ v: { "code" : "J/C", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.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/urn_oid_1.2.840.10008.2.16.4.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_1.2.840.10008.2.16.4.cache index beef798f5..a69d1b2cd 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_1.2.840.10008.2.16.4.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_1.2.840.10008.2.16.4.cache @@ -13,15 +13,16 @@ v: { "code" : "US", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:1.2.840.10008.2.16.4 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:1.2.840.10008.2.16.4' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:1.2.840.10008.2.16.4", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:1.2.840.10008.2.16.4 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:1.2.840.10008.2.16.4' 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/urn_oid_1.3.6.1.4.1.19376.1.2.3.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_1.3.6.1.4.1.19376.1.2.3.cache index 0438f7461..81510a21a 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_1.3.6.1.4.1.19376.1.2.3.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_1.3.6.1.4.1.19376.1.2.3.cache @@ -12,15 +12,16 @@ v: { "code" : "urn:hl7-org:sdwg:ccda-structuredBody:1.1", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:1.3.6.1.4.1.19376.1.2.3 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:1.3.6.1.4.1.19376.1.2.3' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:1.3.6.1.4.1.19376.1.2.3", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:1.3.6.1.4.1.19376.1.2.3 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:1.3.6.1.4.1.19376.1.2.3' 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/urn_oid_2.16.756.5.30.2.6.1.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.16.756.5.30.2.6.1.cache index a64e5d948..a0e9fe432 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.16.756.5.30.2.6.1.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.16.756.5.30.2.6.1.cache @@ -12,15 +12,16 @@ v: { "code" : "0058985", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:2.16.756.5.30.2.6.1' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:2.16.756.5.30.2.6.1", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:2.16.756.5.30.2.6.1' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[1].system"], "expression" : ["CodeableConcept.coding[1].system"] @@ -51,15 +52,16 @@ v: { v: { "code" : "7739208", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:2.16.756.5.30.2.6.1' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:2.16.756.5.30.2.6.1", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -68,7 +70,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:2.16.756.5.30.2.6.1 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:2.16.756.5.30.2.6.1' 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/urn_oid_2.51.1.1.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.51.1.1.cache index dae40b150..a454e2071 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.51.1.1.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.51.1.1.cache @@ -12,15 +12,16 @@ v: { "code" : "7680336700282", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:2.51.1.1' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:2.51.1.1", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:2.51.1.1' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -51,15 +52,16 @@ v: { v: { "code" : "7680669830038", "severity" : "error", - "error" : "A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:oid:2.51.1.1' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:oid:2.51.1.1", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -68,7 +70,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:oid:2.51.1.1 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:oid:2.51.1.1' 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/uscoreCodeSystemus-core-documentreference-category.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uscoreCodeSystemus-core-documentreference-category.cache deleted file mode 100644 index efa615298..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uscoreCodeSystemus-core-documentreference-category.cache +++ /dev/null @@ -1,51 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", - "code" : "clinical-note", - "display" : "Clinical Note" - }], - "text" : "Clinical Note" -}, "langs":"", "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" : "Clinical Note", - "code" : "clinical-note", - "system" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", - "version" : "6.1.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", - "code" : "clinical-note" - }] -}, "langs":"", "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" : "Clinical Note", - "code" : "clinical-note", - "system" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", - "version" : "6.1.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- 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 ab064c33f..dd928def0 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 @@ -13,15 +13,16 @@ v: { "code" : "no-allergy-info", "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", + "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://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,51 +31,10 @@ v: { "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" + "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" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips", - "code" : "no-problem-info", - "display" : "No information about problems" - }] -}, "langs":"", "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: { - "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", - "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" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache index 4e9ba4a75..500622db6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache @@ -14,13 +14,14 @@ v: { "code" : "Not-at-all", "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", "version" : "3.0.0", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -51,13 +52,14 @@ v: { "code" : "Several-days", "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", "version" : "3.0.0", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -88,13 +90,14 @@ v: { "code" : "More than half the days", "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", "version" : "3.0.0", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -125,13 +128,14 @@ v: { "code" : "Nearly every day", "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", "version" : "3.0.0", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v2-0074.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v2-0074.cache deleted file mode 100644 index 9e0d3235c..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v2-0074.cache +++ /dev/null @@ -1,70 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v2-0074", - "code" : "LAB", - "display" : "Laboratory" - }] -}, "langs":"en-NZ", "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" : "Laboratory", - "code" : "LAB", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0074", - "version" : "2.9", - "severity" : "warning", - "error" : "Wrong Display Name 'Laboratory' for http://terminology.hl7.org/CodeSystem/v2-0074#LAB - should be (for the language(s) 'en-NZ')", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "warning", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name 'Laboratory' for http://terminology.hl7.org/CodeSystem/v2-0074#LAB - should be (for the language(s) 'en-NZ')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v2-0074", - "code" : "LAB", - "display" : "Laboratory" - }] -}, "langs":"", "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" : "Laboratory", - "code" : "LAB", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0074", - "version" : "2.9", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v2-0203.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v2-0203.cache deleted file mode 100644 index b5650cd84..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v2-0203.cache +++ /dev/null @@ -1,49 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - }] -}, "langs":"", "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" : "National provider identifier", - "code" : "NPI", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "version" : "3.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PRN" - }] -}, "langs":"", "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" : "Provider number", - "code" : "PRN", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "version" : "3.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v20203.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v20203.cache index 385a2a065..c088c5c22 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v20203.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v20203.cache @@ -13,15 +13,16 @@ v: { "code" : "MR", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/v2/0203 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/v2/0203' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/v2/0203", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/v2/0203 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/v2/0203' 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/v3-ActClass.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-ActClass.cache deleted file mode 100644 index c867862c1..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-ActClass.cache +++ /dev/null @@ -1,25 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-ActClass", - "code" : "PCPR" - }] -}, "langs":"en-NZ", "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" : "care provision", - "code" : "PCPR", - "system" : "http://terminology.hl7.org/CodeSystem/v3-ActClass", - "version" : "3.1.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-NullFlavor.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-NullFlavor.cache index b1955aa37..39634340b 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-NullFlavor.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-NullFlavor.cache @@ -1,28 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", - "code" : "NA" - }] -}, "langs":"", "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" : "not applicable", - "code" : "NA", - "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", - "version" : "2.1.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", "code" : "NA" @@ -38,6 +14,7 @@ v: { "code" : "NA", "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", "version" : "2.1.0", + "server" : "http://local.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/v3-ParticipationType.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-ParticipationType.cache deleted file mode 100644 index 5810d087b..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-ParticipationType.cache +++ /dev/null @@ -1,26 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "IRCP", - "display" : "information recipient" - }] -}, "langs":"", "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" : "information recipient", - "code" : "IRCP", - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "version" : "4.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-Race.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-Race.cache deleted file mode 100644 index 390554a26..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-Race.cache +++ /dev/null @@ -1,73 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "code" : "2036-2" - }] -}, "langs":"", "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" : "Filipino", - "code" : "2036-2", - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "version" : "3.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "code" : "2038-8" - }] -}, "langs":"", "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" : "Indonesian", - "code" : "2038-8", - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "version" : "3.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "code" : "2106-3" - }] -}, "langs":"", "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" : "White", - "code" : "2106-3", - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "version" : "3.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RoleClass.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RoleClass.cache deleted file mode 100644 index cb0625488..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RoleClass.cache +++ /dev/null @@ -1,26 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass", - "code" : "PROV", - "display" : "healthcare provider" - }] -}, "langs":"", "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" : "healthcare provider", - "code" : "PROV", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass", - "version" : "3.1.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RoleCode.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RoleCode.cache deleted file mode 100644 index 8622bca29..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RoleCode.cache +++ /dev/null @@ -1,105 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "code" : "FTH", - "display" : "father" - }], - "text" : "Father of the patient" -}, "langs":"", "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" : "father", - "code" : "FTH", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "version" : "2018-08-12", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "code" : "SON", - "display" : "natural son" - }], - "text" : "Son of the patient" -}, "langs":"", "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" : "natural son", - "code" : "SON", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "version" : "2018-08-12", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "code" : "FTH", - "display" : "father" - }], - "text" : "Father of the patient" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "father", - "code" : "FTH", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "version" : "2018-08-12", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "code" : "SON", - "display" : "natural son" - }], - "text" : "Son of the patient" -}, "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"true", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "natural son", - "code" : "SON", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "version" : "2018-08-12", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RouteOfAdministration.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RouteOfAdministration.cache deleted file mode 100644 index 98ba173eb..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-RouteOfAdministration.cache +++ /dev/null @@ -1,26 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration", - "code" : "IM", - "display" : "Injection, intramuscular" - }] -}, "langs":"en-NZ", "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" : "Injection, intramuscular", - "code" : "IM", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration", - "version" : "2018-08-12", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.capabilityStatement.cache index c006745a6..65027144f 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.capabilityStatement.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.capabilityStatement.cache @@ -12,7 +12,7 @@ "version" : "4.0.1-3.0.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2023-12-30T11:35:45.876Z", + "date" : "2024-01-03T11:07:01.045Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.terminologyCapabilities.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.terminologyCapabilities.cache index e64dbc195..4409561f6 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.terminologyCapabilities.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.terminologyCapabilities.cache @@ -5,7 +5,7 @@ "version" : "2.0.0", "name" : "FHIR Reference Server Teminology Capability Statement", "status" : "active", - "date" : "2023-12-30T11:35:45.882Z", + "date" : "2024-01-03T11:07:01.064Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.capabilityStatement.cache index af87d961c..afe5cd2b1 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.capabilityStatement.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.capabilityStatement.cache @@ -12,7 +12,7 @@ "version" : "4.0.1-3.0.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2023-12-30T11:35:49.433Z", + "date" : "2024-01-03T11:07:04.887Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.terminologyCapabilities.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.terminologyCapabilities.cache index ef805e2eb..2c2672548 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.terminologyCapabilities.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/.terminologyCapabilities.cache @@ -5,7 +5,7 @@ "version" : "2.0.0", "name" : "FHIR Reference Server Teminology Capability Statement", "status" : "active", - "date" : "2023-12-30T11:35:49.440Z", + "date" : "2024-01-03T11:07:04.900Z", "contact" : [{ "telecom" : [{ "system" : "other", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/R4codesystem-assert-response-code-types.html.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/R4codesystem-assert-response-code-types.html.cache index 3568fd078..f54652bad 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/R4codesystem-assert-response-code-types.html.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/R4codesystem-assert-response-code-types.html.cache @@ -13,15 +13,16 @@ v: { "code" : "notModified", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/R4/codesystem-assert-response-code-types.html could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/R4/codesystem-assert-response-code-types.html' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/R4/codesystem-assert-response-code-types.html", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/R4/codesystem-assert-response-code-types.html could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/R4/codesystem-assert-response-code-types.html' 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/ValueSetaccount-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ValueSetaccount-type.cache index e53d32d31..1f3e396ef 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ValueSetaccount-type.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ValueSetaccount-type.cache @@ -15,13 +15,14 @@ v: { "severity" : "error", "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/account-type')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", 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 0a96c82ae..049dd95fa 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 @@ -12,6 +12,8 @@ v: { "display" : "text/plain", "code" : "text/plain", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -31,6 +33,8 @@ v: { "display" : "json", "code" : "json", "system" : "urn:ietf:bcp:13", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -51,12 +55,14 @@ v: { "display" : "World", "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -85,173 +91,8 @@ v: { "display" : "Dutch (Region=Netherlands)", "code" : "nl-NL", "system" : "urn:ietf:bcp:47", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" - }, - { - "system" : "http://snomed.info/sct", - "code" : "271649006", - "display" : "Systolic blood pressure" - }, - { - "system" : "http://fhir.ch/ig/local", - "code" : "3456" - }] -}, "langs":"", "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" : "Systolic blood pressure", - "code" : "271649006", - "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.ch/ig/local could not be found, so the code cannot be validated", - "class" : "UNKNOWN", - "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://fhir.ch/ig/local could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[2].system"], - "expression" : ["CodeableConcept.coding[2].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" - }, - { - "system" : "http://fhir.ch/ig/local", - "code" : "7890" - }] -}, "langs":"", "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" : "Diastolic blood pressure", - "code" : "8462-4", - "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.ch/ig/local could not be found, so the code cannot be validated", - "class" : "UNKNOWN", - "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://fhir.ch/ig/local could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[1].system"], - "expression" : ["CodeableConcept.coding[1].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "271649006", - "display" : "Systolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "5.0.0", "langs":"", "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" : "Systolic blood pressure", - "code" : "271649006", - "severity" : "error", - "error" : "The provided code 'http://snomed.info/sct#271649006 ('Systolic blood pressure')' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult|5.0.0'", - "class" : "UNKNOWN", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "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" : "The provided code 'http://snomed.info/sct#271649006 ('Systolic blood pressure')' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult|5.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "35200-5", - "display" : "Cholest SerPl-msCnc" - }, - { - "system" : "http://snomed.info/sct", - "code" : "85600001", - "display" : "Triacylglycerol" - }], - "text" : "Cholesterol" -}, "langs":"", "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" : "Triacylglycerol", - "code" : "85600001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -271,6 +112,8 @@ v: { "display" : "English (Region=Australia)", "code" : "en-AU", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -290,6 +133,8 @@ v: { "display" : "English", "code" : "en", "system" : "urn:ietf:bcp:47", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -311,12 +156,14 @@ v: { "display" : "World", "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -332,162 +179,3 @@ v: { } ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.com/config/fhir/codesystems/internal", - "code" : "internal-label" -}, "url": "http://hl7.org/fhir/ValueSet/designation-use", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "internal-label", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.com/config/fhir/codesystems/internal could not be found, so the code cannot be validated; The provided code 'http://acme.com/config/fhir/codesystems/internal#internal-label' was not found in the value set 'http://hl7.org/fhir/ValueSet/designation-use|5.0.0'", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.com/config/fhir/codesystems/internal", - "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://acme.com/config/fhir/codesystems/internal could not be found, so the code cannot be validated" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }, - { - "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" : "The provided code 'http://acme.com/config/fhir/codesystems/internal#internal-label' was not found in the value set 'http://hl7.org/fhir/ValueSet/designation-use|5.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "[lb_av]" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "[lb_av]", - "code" : "[lb_av]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "fr-CA" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "French (Canada)", - "code" : "fr-CA", - "system" : "urn:ietf:bcp:47", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "439401001", - "display" : "Diagnosis" -}, "url": "http://hl7.org/fhir/ValueSet/condition-category", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diagnosis (observable entity)", - "code" : "439401001", - "severity" : "error", - "error" : "The provided code 'http://snomed.info/sct#439401001 ('Diagnosis')' was not found in the value set 'http://hl7.org/fhir/ValueSet/condition-category|5.0.0'", - "class" : "UNKNOWN", - "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" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://snomed.info/sct#439401001 ('Diagnosis')' was not found in the value set 'http://hl7.org/fhir/ValueSet/condition-category|5.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "d" -}, "url": "http://hl7.org/fhir/ValueSet/units-of-time", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "day", - "code" : "d", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-genderstatus.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-genderstatus.cache deleted file mode 100644 index a5f475019..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-genderstatus.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/animal-genderstatus", - "code" : "neutered" - }] -}, "langs":"", "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" : "Neutered", - "code" : "neutered", - "system" : "http://hl7.org/fhir/animal-genderstatus", - "version" : "4.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "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 draft CodeSystem http://hl7.org/fhir/animal-genderstatus|4.0.1" - } - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-species.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-species.cache index be6e0a763..d2623f1a9 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-species.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-species.cache @@ -15,13 +15,14 @@ v: { "code" : "canislf", "system" : "http://hl7.org/fhir/animal-species", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -55,13 +56,14 @@ v: { "code" : "canislf", "system" : "http://hl7.org/fhir/animal-species", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dicom.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dicom.cache index f57a65785..1c3e7b597 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dicom.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dicom.cache @@ -14,32 +14,8 @@ v: { "display" : "Login", "code" : "110122", "system" : "http://dicom.nema.org/resources/ontology/DCM", - "version" : "2023.4.20230907", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://dicom.nema.org/resources/ontology/DCM", - "code" : "110122", - "display" : "Login" - }] -}, "langs":"", "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" : "Login", - "code" : "110122", - "system" : "http://dicom.nema.org/resources/ontology/DCM", - "version" : "2023.4.20230907", + "version" : "2023.5.2023111", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dose-rate-type.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dose-rate-type.cache deleted file mode 100644 index 1af7ddbf0..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dose-rate-type.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/dose-rate-type", - "code" : "ordered", - "display" : "Ordered" - }] -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Ordered", - "code" : "ordered", - "system" : "http://terminology.hl7.org/CodeSystem/dose-rate-type", - "version" : "4.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "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 draft CodeSystem http://terminology.hl7.org/CodeSystem/dose-rate-type|4.0.1" - } - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.org_devices_clinical-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.org_devices_clinical-codes.cache index 07c211b6e..69d88c373 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.org_devices_clinical-codes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.org_devices_clinical-codes.cache @@ -13,15 +13,16 @@ v: { "code" : "bp-s", "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://acme.org/devices/clinical-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://acme.org/devices/clinical-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,47 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/devices/clinical-codes", - "code" : "body-weight", - "display" : "Body Weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "body-weight", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.org/devices/clinical-codes could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.org/devices/clinical-codes", - "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://acme.org/devices/clinical-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://acme.org/devices/clinical-codes' 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/http___acme.ped_apgarcolor.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarcolor.cache deleted file mode 100644 index 5e806c1a6..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarcolor.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.ped/apgarcolor", - "code" : "2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "2", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.ped/apgarcolor could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.ped/apgarcolor", - "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://acme.ped/apgarcolor 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/http___acme.ped_apgarheartrate.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarheartrate.cache deleted file mode 100644 index f1813353c..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarheartrate.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.ped/apgarheartrate", - "code" : "2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "2", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.ped/apgarheartrate could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.ped/apgarheartrate", - "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://acme.ped/apgarheartrate 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/http___acme.ped_apgarmuscletone.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarmuscletone.cache deleted file mode 100644 index 7baa84433..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarmuscletone.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.ped/apgarmuscletone", - "code" : "2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "2", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.ped/apgarmuscletone could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.ped/apgarmuscletone", - "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://acme.ped/apgarmuscletone 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/http___acme.ped_apgarreflexirritability.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarreflexirritability.cache deleted file mode 100644 index d9d77b79a..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarreflexirritability.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.ped/apgarreflexirritability", - "code" : "2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "2", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.ped/apgarreflexirritability could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.ped/apgarreflexirritability", - "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://acme.ped/apgarreflexirritability 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/http___acme.ped_apgarrespiratoryeffort.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarrespiratoryeffort.cache deleted file mode 100644 index eadbf2eae..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___acme.ped_apgarrespiratoryeffort.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.ped/apgarrespiratoryeffort", - "code" : "2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "2", - "severity" : "error", - "error" : "A definition for CodeSystem http://acme.ped/apgarrespiratoryeffort could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://acme.ped/apgarrespiratoryeffort", - "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://acme.ped/apgarrespiratoryeffort 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/http___build.fhir.org_assert-response-code-types.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___build.fhir.org_assert-response-code-types.cache index f9f7d9868..7e006d89d 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___build.fhir.org_assert-response-code-types.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___build.fhir.org_assert-response-code-types.cache @@ -14,15 +14,16 @@ v: { "code" : "population", "severity" : "error", - "error" : "A definition for CodeSystem http://build.fhir.org/assert-response-code-types could not be found, so the code cannot be validated; A definition for CodeSystem http://build.fhir.org/assert-response-code-types version 4.4.0 could not be found, so the code cannot be validated. Valid versions: []", + "error" : "A definition for CodeSystem 'http://build.fhir.org/assert-response-code-types' could not be found, so the code cannot be validated; A definition for CodeSystem 'http://build.fhir.org/assert-response-code-types' version '4.4.0' could not be found, so the code cannot be validated. Valid versions: []", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://build.fhir.org/assert-response-code-types|4.4.0,http://build.fhir.org/assert-response-code-types", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -31,7 +32,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://build.fhir.org/assert-response-code-types version 4.4.0 could not be found, so the code cannot be validated. Valid versions: []" + "text" : "A definition for CodeSystem 'http://build.fhir.org/assert-response-code-types' version '4.4.0' could not be found, so the code cannot be validated. Valid versions: []" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -39,7 +40,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -48,7 +49,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://build.fhir.org/assert-response-code-types could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://build.fhir.org/assert-response-code-types' 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/http___example.org_fhir_animal-breed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_fhir_animal-breed.cache index 259cd01f4..5a9d6b470 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_fhir_animal-breed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_fhir_animal-breed.cache @@ -13,15 +13,16 @@ v: { "code" : "gret", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/fhir/animal-breed could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/fhir/animal-breed' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/fhir/animal-breed", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/fhir/animal-breed could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/fhir/animal-breed' 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/http___example.org_obs-code.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_obs-code.cache index a518768ab..1c17874d2 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_obs-code.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_obs-code.cache @@ -12,15 +12,16 @@ v: { "code" : "obs1", "severity" : "error", - "error" : "A definition for CodeSystem http://example.org/obs-code could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://example.org/obs-code' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://example.org/obs-code", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://example.org/obs-code could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://example.org/obs-code' 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/http___fhir.ch_ig_local.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_ig_local.cache index 2467adb61..26833de2d 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_ig_local.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_ig_local.cache @@ -12,15 +12,16 @@ v: { "code" : "1234", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.ch/ig/local could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.ch/ig/local' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.ch/ig/local", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.ch/ig/local could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.ch/ig/local' 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/http___fhir.ch_whateversysstem.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_whateversysstem.cache index 0ca443ff6..1577a8e49 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_whateversysstem.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_whateversysstem.cache @@ -13,15 +13,16 @@ v: { "code" : "adfasfdf", "severity" : "error", - "error" : "A definition for CodeSystem http://fhir.ch/whateversysstem could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://fhir.ch/whateversysstem' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://fhir.ch/whateversysstem", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://fhir.ch/whateversysstem could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://fhir.ch/whateversysstem' 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/http___foo.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___foo.cache index ffab07a0b..d7e6add2e 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___foo.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___foo.cache @@ -12,15 +12,16 @@ v: { "code" : "123", "severity" : "error", - "error" : "A definition for CodeSystem http://foo could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://foo' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://foo", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,7 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://foo could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://foo' 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/http___snomed.info_sct_32506021000036107_version_20170403.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___snomed.info_sct_32506021000036107_version_20170403.cache index 4ee3c0598..66be66318 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___snomed.info_sct_32506021000036107_version_20170403.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___snomed.info_sct_32506021000036107_version_20170403.cache @@ -13,15 +13,16 @@ v: { "code" : "132037003", "severity" : "error", - "error" : "A definition for CodeSystem http://snomed.info/sct/32506021000036107/version/20170403 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://snomed.info/sct/32506021000036107/version/20170403' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct/32506021000036107/version/20170403", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://snomed.info/sct/32506021000036107/version/20170403 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://snomed.info/sct/32506021000036107/version/20170403' 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/http___test.org.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___test.org.cache index e2101dd45..d6b06c1d7 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___test.org.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___test.org.cache @@ -12,15 +12,16 @@ v: { "code" : "x", "severity" : "error", - "error" : "A definition for CodeSystem http://test.org could not be found, so the code cannot be validated; The provided code 'http://test.org#x' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|5.0.0'", + "error" : "A definition for CodeSystem 'http://test.org' could not be found, so the code cannot be validated; The provided code 'http://test.org#x' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|5.0.0'", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://test.org", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -35,7 +36,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -44,7 +45,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://test.org could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://test.org' could not be found, so the code cannot be validated" }, "location" : ["Coding.system"], "expression" : ["Coding.system"] @@ -52,7 +53,7 @@ v: { { "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___unstats.un.org_unsd_methods_m49_m49.htm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___unstats.un.org_unsd_methods_m49_m49.htm.cache index 6bec0a0a0..08755ed65 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___unstats.un.org_unsd_methods_m49_m49.htm.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___unstats.un.org_unsd_methods_m49_m49.htm.cache @@ -13,6 +13,7 @@ v: { "display" : "World", "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -34,6 +35,7 @@ v: { "display" : "World", "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" @@ -56,6 +58,7 @@ v: { "display" : "World", "code" : "001", "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___www.whocc.no_atc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___www.whocc.no_atc.cache index 114a8a81d..8d6298aac 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___www.whocc.no_atc.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___www.whocc.no_atc.cache @@ -16,13 +16,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Barbiturates and derivatives' for http://www.whocc.no/atc#N02AA - should be 'Natural opium alkaloids' (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/https___api-v8-r4.hspconsortium.org_DrugFormulary0_open_CodeSystem_usdrugformulary-DrugTierCS.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/https___api-v8-r4.hspconsortium.org_DrugFormulary0_open_CodeSystem_usdrugformulary-DrugTierCS.cache index 774967d57..8eae3e7a9 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/https___api-v8-r4.hspconsortium.org_DrugFormulary0_open_CodeSystem_usdrugformulary-DrugTierCS.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/https___api-v8-r4.hspconsortium.org_DrugFormulary0_open_CodeSystem_usdrugformulary-DrugTierCS.cache @@ -13,15 +13,16 @@ v: { "code" : "BRAND", "severity" : "error", - "error" : "A definition for CodeSystem https://api-v8-r4.hspconsortium.org/DrugFormulary0/open/CodeSystem/usdrugformulary-DrugTierCS could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'https://api-v8-r4.hspconsortium.org/DrugFormulary0/open/CodeSystem/usdrugformulary-DrugTierCS' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "https://api-v8-r4.hspconsortium.org/DrugFormulary0/open/CodeSystem/usdrugformulary-DrugTierCS", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,7 +31,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem https://api-v8-r4.hspconsortium.org/DrugFormulary0/open/CodeSystem/usdrugformulary-DrugTierCS could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'https://api-v8-r4.hspconsortium.org/DrugFormulary0/open/CodeSystem/usdrugformulary-DrugTierCS' 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/iso67102017.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/iso67102017.cache index 96f370886..fd491caf9 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/iso67102017.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/iso67102017.cache @@ -13,15 +13,16 @@ v: { "code" : "yellow", "severity" : "error", - "error" : "A definition for CodeSystem urn:iso:std:iso:6710:2017 could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'urn:iso:std:iso:6710:2017' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "urn:iso:std:iso:6710:2017", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -30,51 +31,10 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem urn:iso:std:iso:6710:2017 could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'urn:iso:std:iso:6710:2017' could not be found, so the code cannot be validated" }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "urn:iso:std:iso:6710:2017", - "code" : "green", - "display" : "green cap" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem urn:iso:std:iso:6710:2017 could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "urn:iso:std:iso:6710:2017", - "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 urn:iso:std:iso:6710:2017 could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] + "location" : ["Coding.system"], + "expression" : ["Coding.system"] }] } diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/lang.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/lang.cache deleted file mode 100644 index 685b9de58..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/lang.cache +++ /dev/null @@ -1,64 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr-CA" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "French (Region=Canada)", - "code" : "fr-CA", - "system" : "urn:ietf:bcp:47", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr-CA" -}, "url": "http://hl7.org/fhir/ValueSet/all-languages--0", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "French (Region=Canada)", - "code" : "fr-CA", - "system" : "urn:ietf:bcp:47", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr-CA" -}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "French (Region=Canada)", - "code" : "fr-CA", - "system" : "urn:ietf:bcp:47", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/loinc.cache index 678a0b324..41b332420 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/loinc.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/loinc.cache @@ -15,31 +15,8 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" - }], - "text" : "Blood pressure systolic & diastolic" -}, "langs":"", "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" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -62,6 +39,8 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -84,30 +63,8 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" - }] -}, "langs":"", "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" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -129,6 +86,8 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -151,6 +110,8 @@ v: { "code" : "85354-9", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -172,6 +133,8 @@ v: { "code" : "8480-6", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -193,6 +156,8 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -215,6 +180,8 @@ v: { "code" : "8462-4", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -238,6 +205,8 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -259,6 +228,8 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -282,6 +253,8 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -306,12 +279,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Allergies and adverse reactions' for http://loinc.org#48765-2 - should be one of 28 choices: 'Allergies and adverse reactions Document', 'Allergies &or adverse reactions Doc', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 医疗服务对象' (zh-CN), '客户' (zh-CN), '病人' (zh-CN), '病患' (zh-CN), '病号' (zh-CN), '超系统 - 病人 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 变态反应与不良反应 文档.其他' (zh-CN), '杂项类文档' (zh-CN), '其他文档 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 杂项' (zh-CN), '杂项类' (zh-CN), '杂项试验 过敏反应' (zh-CN), '过敏' (zh-CN), 'Allergie e reazioni avverse Documentazione miscellanea Miscellanea Osservazione paziente Punto nel tempo (episodio)' (it-IT), 'Документ Точка во времени' (ru-RU) or 'Момент' (ru-RU) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -346,6 +321,8 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -367,6 +344,8 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -390,6 +369,8 @@ v: { "code" : "56445-0", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -414,12 +395,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Allergies and adverse reactions' for http://loinc.org#48765-2 - should be one of 28 choices: 'Allergies and adverse reactions Document', 'Allergies &or adverse reactions Doc', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 医疗服务对象' (zh-CN), '客户' (zh-CN), '病人' (zh-CN), '病患' (zh-CN), '病号' (zh-CN), '超系统 - 病人 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 变态反应与不良反应 文档.其他' (zh-CN), '杂项类文档' (zh-CN), '其他文档 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 杂项' (zh-CN), '杂项类' (zh-CN), '杂项试验 过敏反应' (zh-CN), '过敏' (zh-CN), 'Allergie e reazioni avverse Documentazione miscellanea Miscellanea Osservazione paziente Punto nel tempo (episodio)' (it-IT), 'Документ Точка во времени' (ru-RU) or 'Момент' (ru-RU) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -454,12 +437,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'ingeademde O2' for http://loinc.org#3151-8 - should be one of 2 choices: 'Inhaled oxygen flow rate' or 'Inhaled O2 flow rate' (for the language(s) 'en')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -493,52 +478,8 @@ v: { "code" : "3151-8", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "3151-8", - "display" : "ingeademde O2" - }] -}, "langs":"nl-NL", "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" : "ingeademde O2", - "code" : "3151-8", - "system" : "http://loinc.org", - "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "5.0.0", "langs":"", "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" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -562,12 +503,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Cholesterol [Moles/​volume] in Serum or Plasma' for http://loinc.org#35200-5 - should be one of 50 choices: 'Cholesterol [Mass or Moles/volume] in Serum or Plasma', 'Cholest SerPl-msCnc', '化学' (zh-CN), '化学检验项目' (zh-CN), '化学检验项目类' (zh-CN), '化学类' (zh-CN), '化学试验' (zh-CN), '非刺激耐受型化学检验项目' (zh-CN), '非刺激耐受型化学检验项目类' (zh-CN), '非刺激耐受型化学试验' (zh-CN), '非刺激耐受型化学试验类 可用数量表示的' (zh-CN), '定量性' (zh-CN), '数值型' (zh-CN), '数量型' (zh-CN), '连续数值型标尺 总胆固醇' (zh-CN), '胆固醇总计' (zh-CN), '胆甾醇' (zh-CN), '脂类' (zh-CN), '脂质 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 血清或血浆 质量或摩尔浓度' (zh-CN), '质量或摩尔浓度(单位体积)' (zh-CN), '质量或物质的量浓度(单位体积)' (zh-CN), 'Juhuslik Kvantitatiivne Plasma Seerum Seerum või plasma' (et-EE), 'Cholest' (pt-BR), 'Chol' (pt-BR), 'Choles' (pt-BR), 'Lipid' (pt-BR), 'Cholesterol total' (pt-BR), 'Cholesterols' (pt-BR), 'Level' (pt-BR), 'Point in time' (pt-BR), 'Random' (pt-BR), 'SerPl' (pt-BR), 'SerPlas' (pt-BR), 'SerP' (pt-BR), 'Serum' (pt-BR), 'SR' (pt-BR), 'Plasma' (pt-BR), 'Pl' (pt-BR), 'Plsm' (pt-BR), 'Quantitative' (pt-BR), 'QNT' (pt-BR), 'Quant' (pt-BR), 'Quan' (pt-BR), 'Chemistry' (pt-BR), 'Chimica Concentrazione Sostanza o Massa Plasma Punto nel tempo (episodio) Siero Siero o Plasma' (it-IT), 'Количественный Массовая или Молярная Концентрация Плазма Сыворотка Сыворотка или Плазма Точка во времени' (ru-RU) or 'Момент Холестерин' (ru-RU) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -601,31 +544,8 @@ v: { "code" : "13457-7", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "13457-7", - "display" : "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation" - }], - "text" : "Cholesterol" -}, "langs":"", "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" : "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation", - "code" : "13457-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -648,30 +568,8 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body Weight" - }] -}, "langs":"", "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" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -693,6 +591,8 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -715,6 +615,8 @@ v: { "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -737,6 +639,8 @@ v: { "code" : "35200-5", "system" : "http://loinc.org", "version" : "2.74", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -760,12 +664,14 @@ v: { "severity" : "error", "error" : "Wrong Display Name 'Triglyceride [Moles/​volume] in Serum or Plasma' for http://loinc.org#35217-9 - should be one of 50 choices: 'Triglyceride [Mass or Moles/volume] in Serum or Plasma', 'Trigl SerPl-msCnc', 'TG' (zh-CN), 'Trigly' (zh-CN), '甘油三脂' (zh-CN), '甘油三酸酯' (zh-CN), '三酸甘油酯' (zh-CN), '甘油三酸脂' (zh-CN), '三酸甘油脂 化学' (zh-CN), '化学检验项目' (zh-CN), '化学检验项目类' (zh-CN), '化学类' (zh-CN), '化学试验' (zh-CN), '非刺激耐受型化学检验项目' (zh-CN), '非刺激耐受型化学检验项目类' (zh-CN), '非刺激耐受型化学试验' (zh-CN), '非刺激耐受型化学试验类 可用数量表示的' (zh-CN), '定量性' (zh-CN), '数值型' (zh-CN), '数量型' (zh-CN), '连续数值型标尺 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 血清或血浆 质量或摩尔浓度' (zh-CN), '质量或摩尔浓度(单位体积)' (zh-CN), '质量或物质的量浓度(单位体积)' (zh-CN), 'Juhuslik Kvantitatiivne Plasma Seerum Seerum või plasma' (et-EE), 'Trigl' (pt-BR), 'Triglycrides' (pt-BR), 'Trig' (pt-BR), 'Triglycerides' (pt-BR), 'Level' (pt-BR), 'Point in time' (pt-BR), 'Random' (pt-BR), 'SerPl' (pt-BR), 'SerPlas' (pt-BR), 'SerP' (pt-BR), 'Serum' (pt-BR), 'SR' (pt-BR), 'Plasma' (pt-BR), 'Pl' (pt-BR), 'Plsm' (pt-BR), 'Quantitative' (pt-BR), 'QNT' (pt-BR), 'Quant' (pt-BR), 'Quan' (pt-BR), 'Chemistry' (pt-BR), 'Chimica Concentrazione Sostanza o Massa Plasma Punto nel tempo (episodio) Siero Siero o Plasma' (it-IT), 'Количественный Массовая или Молярная Концентрация Плазма Сыворотка Сыворотка или Плазма Точка во времени' (ru-RU) or 'Момент' (ru-RU) (for the language(s) '--')", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "invalid", @@ -783,262 +689,3 @@ v: { } ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body Weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3141-9", - "display" : "Body weight Measured" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight Measured", - "code" : "3141-9", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3141-9" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight Measured", - "code" : "3141-9", - "severity" : "error", - "error" : "The provided code 'http://loinc.org#3141-9' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|5.0.0'", - "class" : "UNKNOWN", - "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" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://loinc.org#3141-9' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|5.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6724-4", - "display" : "Good color all over" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Good color all over", - "code" : "LA6724-4", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6718-6", - "display" : "At least 100 beats per minute" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "At least 100 beats per minute", - "code" : "LA6718-6", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6721-0", - "display" : "Grimace and pulling away, cough, or sneeze during suctioning" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Grimace and pulling away, cough, or sneeze during suctioning", - "code" : "LA6721-0", - "system" : "http://loinc.org", - "version" : "2.74", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6715-2", - "display" : "Active motion " -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Active motion", - "code" : "LA6715-2", - "severity" : "error", - "error" : "Wrong whitespace in Display Name 'Active motion ' for http://loinc.org#LA6715-2 - should be 'Active motion' (for the language(s) '--')", - "class" : "UNKNOWN", - "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 whitespace in Display Name 'Active motion ' for http://loinc.org#LA6715-2 - should be 'Active motion' (for the language(s) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6727-7", - "display" : "Good, strong cry; normal rate and effort of breathing " -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Good, strong cry; normal rate and effort of breathing", - "code" : "LA6727-7", - "severity" : "error", - "error" : "Wrong whitespace in Display Name 'Good, strong cry; normal rate and effort of breathing ' for http://loinc.org#LA6727-7 - should be 'Good, strong cry; normal rate and effort of breathing' (for the language(s) '--')", - "class" : "UNKNOWN", - "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 whitespace in Display Name 'Good, strong cry; normal rate and effort of breathing ' for http://loinc.org#LA6727-7 - should be 'Good, strong cry; normal rate and effort of breathing' (for the language(s) '--')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ndc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ndc.cache deleted file mode 100644 index 50400ba60..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ndc.cache +++ /dev/null @@ -1,58 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/ndc", - "code" : "2501-813-16", - "display" : "Timoptic 5mg/ml solution" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "2501-813-16", - "severity" : "error", - "error" : "Unknown code '2501-813-16' in the CodeSystem 'http://hl7.org/fhir/sid/ndc' version ''", - "class" : "UNKNOWN", - "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" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '2501-813-16' in the CodeSystem 'http://hl7.org/fhir/sid/ndc' version ''" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }, - { - "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" : "invalid-code" - }], - "text" : "Code \"2501-813-16\" not found in NDC" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/null.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/null.cache index e28a88d02..48774c034 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/null.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/null.cache @@ -15,15 +15,16 @@ v: { "severity" : "error", "error" : "Coding has no system. A code with no system has no defined meaning, and it cannot be validated. A system should be provided", "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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], - "severity" : "error", + "severity" : "warning", "code" : "invalid", "details" : { "coding" : [{ diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/practitioner-role.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/practitioner-role.cache deleted file mode 100644 index 4a2490e3f..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/practitioner-role.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", - "code" : "doctor", - "display" : "Doctor" - }], - "text" : "Doctor" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Doctor", - "code" : "doctor", - "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", - "version" : "4.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "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 draft CodeSystem http://terminology.hl7.org/CodeSystem/practitioner-role|4.0.1" - } - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rejection-criteria.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rejection-criteria.cache index 32a479f89..e48422116 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rejection-criteria.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rejection-criteria.cache @@ -17,13 +17,14 @@ v: { "code" : "insufficient", "system" : "http://terminology.hl7.org/CodeSystem/rejection-criteria", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", @@ -57,13 +58,14 @@ v: { "code" : "hemolized", "system" : "http://terminology.hl7.org/CodeSystem/rejection-criteria", "version" : "4.0.1", + "server" : "http://local.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" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "information", "code" : "business-rule", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rxnorm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rxnorm.cache index 87f7ad97a..5ccf7ed9b 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rxnorm.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rxnorm.cache @@ -15,31 +15,7 @@ v: { "code" : "1049640", "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", "version" : "??rx1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1049640", - "display" : "Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Percocet]" - }] -}, "langs":"", "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" : "acetaminophen 325 MG / oxycodone hydrochloride 5 MG Oral Tablet [Percocet]", - "code" : "1049640", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/snomed.cache index 5a86d0d24..2593055af 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/snomed.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/snomed.cache @@ -15,30 +15,8 @@ v: { "code" : "368209003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "368209003", - "display" : "Right arm" - }] -}, "langs":"", "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" : "Right upper arm", - "code" : "368209003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -61,6 +39,8 @@ v: { "code" : "271649006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -82,15 +62,16 @@ v: { v: { "code" : "132037003", "severity" : "error", - "error" : "A definition for CodeSystem http://snomed.info/sct version http://snomed.info/sct/731000124108/version/20210201 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20210201' 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/731000124108/version/20210201", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -99,7 +80,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://snomed.info/sct version http://snomed.info/sct/731000124108/version/20210201 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/731000124108/version/20210201' 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -125,8 +106,28 @@ v: { "code" : "132037003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/731000124108/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, + "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '132037003' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -150,14 +151,23 @@ v: { "code" : "132037003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/731000124108/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, + "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" : "invalid", "details" : { "text" : "The code '132037003' is valid but is not active" - } + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] }] } @@ -178,15 +188,16 @@ v: { v: { "code" : "132037003", "severity" : "error", - "error" : "A definition for CodeSystem http://snomed.info/sct version http://snomed.info/sct/11000172109/version/20221115 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", + "error" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/11000172109/version/20221115' 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://snomed.info/sct|http://snomed.info/sct/11000172109/version/20221115", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -195,7 +206,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://snomed.info/sct version http://snomed.info/sct/11000172109/version/20221115 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" + "text" : "A definition for CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/11000172109/version/20221115' 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/20210531,http://snomed.info/sct/554471000005108/version/20210930,http://snomed.info/sct/731000124108/version/20230901,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/20230901]" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -220,30 +231,8 @@ v: { "code" : "109006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "109006", - "display" : "Anxiety disorder of childhood OR adolescence" - }] -}, "langs":"", "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 of childhood OR adolescence", - "code" : "109006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -265,6 +254,8 @@ v: { "code" : "109006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -287,6 +278,8 @@ v: { "code" : "109006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -309,30 +302,8 @@ v: { "code" : "106004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "106004", - "display" : "Posterior carpal region" - }] -}, "langs":"", "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" : "Posterior carpal region", - "code" : "106004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -355,12 +326,14 @@ v: { "severity" : "error", "error" : "The provided code 'http://snomed.info/sct#106004' was not found in the value set 'http://hl7.org/fhir/ValueSet/clinical-findings--0|5.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://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "code-invalid", @@ -400,6 +373,8 @@ v: { "code" : "106004", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -422,6 +397,8 @@ v: { "code" : "85600001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -444,8 +421,28 @@ v: { "code" : "58108001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "inactive" : true, + "unknown-systems" : "", "issues" : { - "resourceType" : "OperationOutcome" + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://local.fhir.org/r4" + }], + "severity" : "information", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "code-rule" + }], + "text" : "The code '58108001' is valid but is not active" + }, + "location" : ["CodeableConcept.coding[0].code"], + "expression" : ["CodeableConcept.coding[0].code"] + }] } } @@ -466,30 +463,8 @@ v: { "code" : "122555007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "122555007", - "display" : "Venous blood specimen" - }] -}, "langs":"", "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" : "Venous blood specimen", - "code" : "122555007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -512,30 +487,8 @@ v: { "code" : "263678003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "263678003", - "display" : "At rest" - }] -}, "langs":"", "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" : "At rest", - "code" : "263678003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -558,30 +511,8 @@ v: { "code" : "119364003", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "119364003", - "display" : "Serum specimen" - }] -}, "langs":"", "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" : "Serum specimen", - "code" : "119364003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -604,30 +535,8 @@ v: { "code" : "61088005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "61088005", - "display" : "plastic" - }] -}, "langs":"", "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" : "Plastic", - "code" : "61088005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -650,30 +559,8 @@ v: { "code" : "702281005", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "702281005", - "display" : "Evacuated blood collection tube, thrombin/clot activator/gel separator" - }] -}, "langs":"", "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" : "Evacuated blood collection tube, thrombin/clot activator/gel separator", - "code" : "702281005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -696,30 +583,8 @@ v: { "code" : "119361006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "119361006", - "display" : "Plasma specimen" - }] -}, "langs":"", "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" : "Plasma specimen", - "code" : "119361006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -742,30 +607,8 @@ v: { "code" : "32039001", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "32039001", - "display" : "glass" - }] -}, "langs":"", "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" : "Glass", - "code" : "32039001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -787,6 +630,8 @@ v: { "code" : "230993007", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -808,6 +653,8 @@ v: { "code" : "385633008", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -829,716 +676,7 @@ v: { "code" : "260388006", "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "27113001", - "display" : "Body weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "27113001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90655003", - "display" : "Geriatrics specialist" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Geriatrics specialist", - "code" : "90655003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90655003" -}, "url": "http://hl7.org/fhir/ValueSet/c80-practice-codes--0", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Geriatrics specialist", - "code" : "90655003", - "severity" : "error", - "error" : "The provided code 'http://snomed.info/sct#90655003' was not found in the value set 'http://hl7.org/fhir/ValueSet/c80-practice-codes--0|5.0.0'", - "class" : "UNKNOWN", - "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" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://snomed.info/sct#90655003' was not found in the value set 'http://hl7.org/fhir/ValueSet/c80-practice-codes--0|5.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "439401001", - "display" : "Diagnosis" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diagnosis (observable entity)", - "code" : "439401001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "24484000", - "display" : "Severe" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Severe", - "code" : "24484000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "24484000" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity--0", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Severe", - "code" : "24484000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "24484000", - "display" : "Severe" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Severe", - "code" : "24484000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "39065001", - "display" : "Burn of ear" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Burn of ear", - "code" : "39065001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "39065001", - "display" : "Burn of ear" - }], - "text" : "Burnt Ear" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Burn of ear", - "code" : "39065001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "49521004", - "display" : "Left external ear structure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Left external ear", - "code" : "49521004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "49521004", - "display" : "Left external ear structure" - }], - "text" : "Left Ear" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Left external ear", - "code" : "49521004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "443849008", - "display" : "Apgar score at 20 minutes" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar score at 20 minutes (observable entity)", - "code" : "443849008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "443849008", - "display" : "Apgar score at 20 minutes" - }], - "text" : "20 minute Apgar Score" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar score at 20 minutes (observable entity)", - "code" : "443849008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "249227004", - "display" : "Apgar color score" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar color score", - "code" : "249227004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "249227004", - "display" : "Apgar color score" - }], - "text" : "Apgar color score" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar color score", - "code" : "249227004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "249223000", - "display" : "Apgar heart rate score" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar heart rate score", - "code" : "249223000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "249223000", - "display" : "Apgar heart rate score" - }], - "text" : "Apgar respiratory effort score" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar heart rate score", - "code" : "249223000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "249226008", - "display" : "Apgar response to stimulus score" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar response to stimulus score", - "code" : "249226008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "249226008", - "display" : "Apgar response to stimulus score" - }], - "text" : "Apgar response to stimulus score" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar response to stimulus score", - "code" : "249226008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "249225007", - "display" : "Apgar muscle tone score" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar muscle tone score", - "code" : "249225007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "249225007", - "display" : "Apgar muscle tone score" - }], - "text" : "Apgar muscle tone score" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar muscle tone score", - "code" : "249225007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "249224006", - "display" : "Apgar respiratory effort score" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar respiratory effort score", - "code" : "249224006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "249224006", - "display" : "Apgar respiratory effort score" - }], - "text" : "Apgar respiratory effort score" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Apgar respiratory effort score", - "code" : "249224006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "194828000", - "display" : "Angina (disorder)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Angina", - "code" : "194828000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "22298006", - "display" : "Myocardial infarction (disorder)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Myocardial infarction", - "code" : "22298006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "54485002", - "display" : "Ophthalmic route (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Ophthalmic route", - "code" : "54485002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "54485002", - "display" : "Ophthalmic route (qualifier value)" - }] -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Ophthalmic route", - "code" : "54485002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "421538008", - "display" : "Instill - dosing instruction imperative (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Instill - dosing instruction imperative (qualifier value)", - "code" : "421538008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://snomed.info/sct", - "code" : "421538008", - "display" : "Instill - dosing instruction imperative (qualifier value)" - }] -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Instill - dosing instruction imperative (qualifier value)", - "code" : "421538008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/testCodeSystemprofile-slicing-codes.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/testCodeSystemprofile-slicing-codes.cache index 52284eda9..cbb4f1260 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/testCodeSystemprofile-slicing-codes.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/testCodeSystemprofile-slicing-codes.cache @@ -12,15 +12,16 @@ v: { "code" : "profile2", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -29,47 +30,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes", - "code" : "profile3" - }] -}, "langs":"", "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: { - "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes", - "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/CodeSystem/profile-slicing-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes' could not be found, so the code cannot be validated" }, "location" : ["CodeableConcept.coding[0].system"], "expression" : ["CodeableConcept.coding[0].system"] @@ -91,15 +52,16 @@ v: { v: { "code" : "profile1", "severity" : "error", - "error" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes could not be found, so the code cannot be validated", + "error" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes' could not be found, so the code cannot be validated", "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ "extension" : [{ "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" + "valueUrl" : "http://local.fhir.org/r4" }], "severity" : "error", "code" : "not-found", @@ -108,7 +70,7 @@ v: { "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", "code" : "not-found" }], - "text" : "A definition for CodeSystem http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes could not be found, so the code cannot be validated" + "text" : "A definition for CodeSystem 'http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes' 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/ucum.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ucum.cache index 6540af551..17a302668 100644 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ucum.cache +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ucum.cache @@ -14,6 +14,8 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -35,6 +37,8 @@ v: { "code" : "mm[Hg]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -56,6 +60,8 @@ v: { "code" : "cm", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -77,6 +83,8 @@ v: { "code" : "mmol/L", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -98,6 +106,8 @@ v: { "code" : "mL", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -119,93 +129,7 @@ v: { "code" : "Cel", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "[lb_av]" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "[lb_av]", - "code" : "[lb_av]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "{score}" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "{score}", - "code" : "{score}", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mL" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "mL", - "code" : "mL", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "d" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "d", - "code" : "d", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", + "server" : "http://local.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v2-0136.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v2-0136.cache deleted file mode 100644 index db0f71c4b..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v2-0136.cache +++ /dev/null @@ -1,23 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0136", - "code" : "Y" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Yes", - "code" : "Y", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0136", - "version" : "2.9", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v2-0360_2.7.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v2-0360_2.7.cache deleted file mode 100644 index fc7eaf0b4..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v2-0360_2.7.cache +++ /dev/null @@ -1,80 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.7", - "code" : "BS", - "display" : "Bachelor of Science" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Bachelor of Science", - "code" : "BS", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.7", - "version" : "0360", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "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 draft CodeSystem http://terminology.hl7.org/CodeSystem/v2-0360|2.7|0360" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.7", - "code" : "BS", - "display" : "Bachelor of Science" - }], - "text" : "Bachelor of Science" -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Bachelor of Science", - "code" : "BS", - "system" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.7", - "version" : "0360", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "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 draft CodeSystem http://terminology.hl7.org/CodeSystem/v2-0360|2.7|0360" - } - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v3-ActCode.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v3-ActCode.cache deleted file mode 100644 index 567489703..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v3-ActCode.cache +++ /dev/null @@ -1,26 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", - "code" : "RFP", - "display" : "Refill - Part Fill" - }] -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Refill - Part Fill", - "code" : "RFP", - "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", - "version" : "7.0.0", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v3-RoleCode.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v3-RoleCode.cache deleted file mode 100644 index c79161adf..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/v3-RoleCode.cache +++ /dev/null @@ -1,26 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "coding" : [{ - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "code" : "PROFF", - "display" : "Provider's Office" - }] -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Provider's Office", - "code" : "PROFF", - "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode", - "version" : "2018-08-12", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} --------------------------------------------------------------------------------------