diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR2.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR2.java index 7fed97d56..c4201b60a 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR2.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR2.java @@ -84,6 +84,7 @@ public class TerminologyClientR2 implements ITerminologyClient { public TerminologyClientR2(String id, String address, String userAgent) throws URISyntaxException { client = new FHIRToolingClient(address, userAgent); + this.client.setVersionInMimeTypes(true); this.id = id; } diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR3.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR3.java index 0f2cff0cc..a63f71fea 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR3.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR3.java @@ -193,6 +193,7 @@ public class TerminologyClientR3 implements ITerminologyClient { if (this.clientHeaders != null) { this.client.setClientHeaders(this.clientHeaders.headers()); } + this.client.setVersionInMimeTypes(true); return this; } diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR4.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR4.java index aaf1e571d..10f7012fe 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR4.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/txClient/TerminologyClientR4.java @@ -204,6 +204,7 @@ public class TerminologyClientR4 implements ITerminologyClient { if (this.clientHeaders != null) { this.client.setClientHeaders(this.clientHeaders.headers()); } + this.client.setVersionInMimeTypes(true); return this; } diff --git a/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java b/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java index 7befbf647..439d946d1 100644 --- a/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java +++ b/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/ClientUtils.java @@ -81,7 +81,7 @@ import org.hl7.fhir.dstu2.model.Resource; import org.hl7.fhir.dstu2.model.ResourceType; import org.hl7.fhir.dstu2.utils.ResourceUtilities; import org.hl7.fhir.exceptions.FHIRException; - +import org.hl7.fhir.utilities.MimeType; import org.hl7.fhir.utilities.ToolingClientLogger; import org.hl7.fhir.utilities.Utilities; import org.hl7.fhir.utilities.settings.FhirSettings; @@ -573,10 +573,11 @@ public class ClientUtils { if (StringUtils.isBlank(format)) { format = ResourceFormat.RESOURCE_XML.getHeader(); } - if (format.equalsIgnoreCase("json") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader()) + MimeType mm = new MimeType(format); + if (mm.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader()) || format.equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { return new JsonParser(); - } else if (format.equalsIgnoreCase("xml") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader()) + } else if (mm.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader()) || format.equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { return new XmlParser(); } else { diff --git a/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/FHIRToolingClient.java b/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/FHIRToolingClient.java index 00d02580a..b8e09bcbb 100644 --- a/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/FHIRToolingClient.java +++ b/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/utils/client/FHIRToolingClient.java @@ -178,11 +178,11 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { if (useOptionsVerb) { conformance = (Conformance) utils - .issueOptionsRequest(resourceAddress.getBaseServiceUri(), getPreferredResourceFormat(), timeoutNormal) + .issueOptionsRequest(resourceAddress.getBaseServiceUri(), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal) .getReference();// TODO fix this } else { conformance = (Conformance) utils.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false), - getPreferredResourceFormat(), timeoutNormal).getReference(); + withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal).getReference(); } } catch (Exception e) { handleException("An error has occurred while trying to fetch the server's conformance statement", e); @@ -201,11 +201,11 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { if (useOptionsVerb) { conformance = (Conformance) utils - .issueOptionsRequest(resourceAddress.getBaseServiceUri(), getPreferredResourceFormat(), timeoutNormal) + .issueOptionsRequest(resourceAddress.getBaseServiceUri(), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal) .getReference();// TODO fix this } else { conformance = (Conformance) utils.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true), - getPreferredResourceFormat(), timeoutNormal).getReference(); + withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal).getReference(); } } catch (Exception e) { handleException("An error has occurred while trying to fetch the server's conformance statement", e); @@ -218,7 +218,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = utils.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), - getPreferredResourceFormat(), timeoutNormal); + withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown result.addSuccessStatus(200);// Only one for now @@ -238,7 +238,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = utils.issueGetResourceRequest( resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version), - getPreferredResourceFormat(), timeoutNormal); + withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown result.addErrorStatus(405);// unknown @@ -262,7 +262,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = utils.issueGetResourceRequest( resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL), - getPreferredResourceFormat(), timeoutNormal); + withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown result.addErrorStatus(405);// unknown @@ -290,7 +290,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { result = utils.issuePutRequest( resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()), utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), headers, timeoutOperation); + withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutOperation); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown result.addErrorStatus(405); @@ -326,7 +326,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { List
headers = null; result = utils.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), headers, timeoutOperation); + withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutOperation); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown result.addErrorStatus(405); @@ -370,7 +370,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // ResourceRequest resourceRequest = null; // try { // List
headers = null; -// resourceRequest = utils.issuePostRequest(resourceAddress.resolveGetUriFromResourceClass(resourceClass),utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), headers, proxy); +// resourceRequest = utils.issuePostRequest(resourceAddress.resolveGetUriFromResourceClass(resourceClass),utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), headers, proxy); // resourceRequest.addSuccessStatus(201); // if(resourceRequest.isUnsuccessfulRequest()) { // throw new EFhirClientException("Server responded with HTTP error code " + resourceRequest.getHttpStatus(), (OperationOutcome)resourceRequest.getPayload()); @@ -403,7 +403,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Calendar lastUpdate, Class resourceClass, String id) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceId(resourceClass, id, lastUpdate, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceId(resourceClass, id, lastUpdate, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history information for this resource", e); // } @@ -414,7 +414,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Date lastUpdate, Class resourceClass, String id) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceId(resourceClass, id, lastUpdate, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceId(resourceClass, id, lastUpdate, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history information for this resource", e); // } @@ -425,7 +425,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Calendar lastUpdate, Class resourceClass) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceType(resourceClass, lastUpdate, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceType(resourceClass, lastUpdate, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history information for this resource type", e); // } @@ -436,7 +436,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Date lastUpdate, Class resourceClass) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceType(resourceClass, lastUpdate, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceType(resourceClass, lastUpdate, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history information for this resource type", e); // } @@ -447,7 +447,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Class resourceClass) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceType(resourceClass, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceType(resourceClass, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history information for this resource type", e); // } @@ -458,7 +458,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Class resourceClass, String id) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceId(resourceClass, id, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForResourceId(resourceClass, id, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history information for this resource", e); // } @@ -469,7 +469,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Date lastUpdate) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(lastUpdate, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(lastUpdate, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history since last update",e); // } @@ -480,7 +480,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history(Calendar lastUpdate) { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(lastUpdate, maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(lastUpdate, maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history since last update",e); // } @@ -491,7 +491,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle history() { // Bundle history = null; // try { -// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(maxResultSetSize), getPreferredResourceFormat(), proxy); +// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("An error has occurred while trying to retrieve history since last update",e); // } @@ -502,7 +502,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public Bundle search(Class resourceClass, Map parameters) { // Bundle searchResults = null; // try { -// searchResults = utils.issueGetFeedRequest(resourceAddress.resolveSearchUri(resourceClass, parameters), getPreferredResourceFormat(), proxy); +// searchResults = utils.issueGetFeedRequest(resourceAddress.resolveSearchUri(resourceClass, parameters), withVer(getPreferredResourceFormat(), "1.0"), proxy); // } catch (Exception e) { // handleException("Error performing search with parameters " + parameters, e); // } @@ -535,10 +535,10 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { if (complex) result = utils.issuePostRequest(resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps), utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), timeoutLong); + withVer(getPreferredResourceFormat(), "1.0"), timeoutLong); else result = utils.issueGetResourceRequest(resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps), - getPreferredResourceFormat(), timeoutLong); + withVer(getPreferredResourceFormat(), "1.0"), timeoutLong); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown result.addSuccessStatus(200);// Only one for now @@ -559,7 +559,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { Bundle transactionResult = null; try { transactionResult = utils.postBatchRequest(resourceAddress.getBaseServiceUri(), - utils.getFeedAsByteArray(batch, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + utils.getFeedAsByteArray(batch, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal + batch.getEntry().size()); } catch (Exception e) { handleException("An error occurred trying to process this transaction request", e); @@ -574,7 +574,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = utils.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id), utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), 3); + withVer(getPreferredResourceFormat(), "1.0"), 3); result.addErrorStatus(400);// gone result.addErrorStatus(422);// Unprocessable Entity result.addSuccessStatus(200);// OK @@ -593,7 +593,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * * public List getAllTags() { TagListRequest result = null; try { result * = utils.issueGetRequestForTagList(resourceAddress.resolveGetAllTags(), - * getPreferredResourceFormat(), null, proxy); } catch (Exception e) { + * withVer(getPreferredResourceFormat(), "1.0"), null, proxy); } catch (Exception e) { * handleException("An error has occurred while trying to retrieve all tags", * e); } return result.getPayload(); } * @@ -602,7 +602,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * resourceClass) { TagListRequest result = null; try { result = * utils.issueGetRequestForTagList(resourceAddress. * resolveGetAllTagsForResourceType(resourceClass), - * getPreferredResourceFormat(), null, proxy); } catch (Exception e) { + * withVer(getPreferredResourceFormat(), "1.0"), null, proxy); } catch (Exception e) { * handleException("An error has occurred while trying to retrieve tags for this resource type" * , e); } return result.getPayload(); } * @@ -610,7 +610,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * public List getTagsForReference(Class * resource, String id) { TagListRequest result = null; try { result = * utils.issueGetRequestForTagList(resourceAddress.resolveGetTagsForReference( - * resource, id), getPreferredResourceFormat(), null, proxy); } catch (Exception + * resource, id), withVer(getPreferredResourceFormat(), "1.0"), null, proxy); } catch (Exception * e) { * handleException("An error has occurred while trying to retrieve tags for this resource" * , e); } return result.getPayload(); } @@ -620,7 +620,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * resource, String id, String versionId) { TagListRequest result = null; try { * result = utils.issueGetRequestForTagList(resourceAddress. * resolveGetTagsForResourceVersion(resource, id, versionId), - * getPreferredResourceFormat(), null, proxy); } catch (Exception e) { + * withVer(getPreferredResourceFormat(), "1.0"), null, proxy); } catch (Exception e) { * handleException("An error has occurred while trying to retrieve tags for this resource version" * , e); } return result.getPayload(); } * @@ -647,7 +647,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * request = * utils.issuePostRequestForTagList(resourceAddress.resolveGetTagsForReference( * resourceClass, id),utils.getTagListAsByteArray(tags, false, - * isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), null, + * isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), null, * proxy); request.addSuccessStatus(201); request.addSuccessStatus(200); * if(request.isUnsuccessfulRequest()) { throw new * EFhirClientException("Server responded with HTTP error code " + @@ -661,7 +661,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * null; try { request = utils.issuePostRequestForTagList(resourceAddress. * resolveGetTagsForResourceVersion(resourceClass, id, * version),utils.getTagListAsByteArray(tags, false, - * isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), null, + * isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), null, * proxy); request.addSuccessStatus(201); request.addSuccessStatus(200); * if(request.isUnsuccessfulRequest()) { throw new * EFhirClientException("Server responded with HTTP error code " + @@ -675,7 +675,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { * null; try { request = utils.issuePostRequestForTagList(resourceAddress. * resolveDeleteTagsForResourceVersion(resourceClass, id, * version),utils.getTagListAsByteArray(tags, false, - * isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), null, + * isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), null, * proxy); request.addSuccessStatus(201); request.addSuccessStatus(200); * if(request.isUnsuccessfulRequest()) { throw new * EFhirClientException("Server responded with HTTP error code " + @@ -729,7 +729,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { List
headers = null; ResourceRequest result = utils.issuePostRequest( resourceAddress.resolveOperationUri(ValueSet.class, "expand"), - utils.getResourceAsByteArray(source, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + utils.getResourceAsByteArray(source, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutLong); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown @@ -747,7 +747,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { public Parameters lookupCode(Map params) { recordUse(); ResourceRequest result = utils.issueGetResourceRequest( - resourceAddress.resolveOperationUri(ValueSet.class, "lookup", params), getPreferredResourceFormat(), + resourceAddress.resolveOperationUri(ValueSet.class, "lookup", params), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown @@ -771,7 +771,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { p.addParameter().setName(n).setValue(new StringType(params.get(n))); ResourceRequest result = utils.issuePostRequest( resourceAddress.resolveOperationUri(ValueSet.class, "expand", params), - utils.getResourceAsByteArray(p, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + utils.getResourceAsByteArray(p, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), headers, 4); result.addErrorStatus(410); // gone result.addErrorStatus(404); // unknown @@ -789,7 +789,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { // public ValueSet expandValueset(ValueSet source, ExpansionProfile profile, Map params) { // List
headers = null; // ResourceRequest result = utils.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params), -// utils.getResourceAsByteArray(source, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), headers, proxy); +// utils.getResourceAsByteArray(source, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), headers, proxy); // result.addErrorStatus(410);//gone // result.addErrorStatus(404);//unknown // result.addErrorStatus(405); @@ -813,7 +813,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { List
headers = null; ResourceRequest result = utils.issuePostRequest( resourceAddress.resolveOperationUri(null, "closure", new HashMap()), - utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutNormal); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown @@ -836,7 +836,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { List
headers = null; ResourceRequest result = utils.issuePostRequest( resourceAddress.resolveOperationUri(null, "closure", new HashMap()), - utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutOperation); result.addErrorStatus(410);// gone result.addErrorStatus(404);// unknown @@ -877,7 +877,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { public Parameters getTerminologyCapabilities() { return (Parameters) utils - .issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(), getPreferredResourceFormat(), timeoutNormal) + .issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal) .getReference(); } @@ -924,4 +924,5 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { private void recordUse() { useCount++; } + } \ No newline at end of file diff --git a/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/FHIRToolingClient.java b/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/FHIRToolingClient.java index 08f2f3ee6..d5b2553d2 100644 --- a/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/FHIRToolingClient.java +++ b/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/FHIRToolingClient.java @@ -149,7 +149,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { Parameters capabilities = null; try { capabilities = (Parameters) client.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "TerminologyCapabilities", timeoutNormal).getReference(); @@ -163,7 +163,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { CapabilityStatement conformance = null; try { conformance = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "CapabilitiesStatement", timeoutNormal).getReference(); @@ -177,7 +177,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { if (capabilities != null) return capabilities; try { capabilities = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "CapabilitiesStatement-Quick", timeoutNormal).getReference(); @@ -192,7 +192,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "Read " + resourceClass.getName() + "/" + id, timeoutNormal); @@ -210,7 +210,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version, timeoutNormal); @@ -228,7 +228,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "Read " + resourceClass.getName() + "?url=" + canonicalURL, timeoutNormal); @@ -252,7 +252,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + resource.getId(), timeoutOperation); @@ -280,7 +280,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + id, timeoutOperation); @@ -320,13 +320,13 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { if (client.getLogger() != null) { client.getLogger().logRequest("POST", url.toString(), null, body); } - result = client.issuePostRequest(url, body, getPreferredResourceFormat(), generateHeaders(), + result = client.issuePostRequest(url, body, withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "POST " + resourceClass.getName() + "/$" + name, timeoutLong); } else { if (client.getLogger() != null) { client.getLogger().logRequest("GET", url.toString(), null, null); } - result = client.issueGetResourceRequest(url, getPreferredResourceFormat(), generateHeaders(), "GET " + resourceClass.getName() + "/$" + name, timeoutLong); + result = client.issueGetResourceRequest(url, withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "GET " + resourceClass.getName() + "/$" + name, timeoutLong); } if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload()); @@ -349,7 +349,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { recordUse(); Bundle transactionResult = null; try { - transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(), ByteUtils.resourceToByteArray(batch, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), "transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size())); + transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(), ByteUtils.resourceToByteArray(batch, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "3.0"), "transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size())); } catch (Exception e) { handleException("An error occurred trying to process this transaction request", e); } @@ -363,7 +363,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload()); @@ -422,7 +422,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"), ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); @@ -441,7 +441,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.dstu3.utils.client.network.ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "CodeSystem/$lookup", timeoutNormal); @@ -465,7 +465,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params), ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); @@ -490,7 +490,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params), ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); @@ -515,7 +515,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap()), ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "Closure?name=" + name, timeoutNormal); @@ -537,7 +537,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap()), ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(), "UpdateClosure?name=" + name, timeoutOperation); @@ -653,5 +653,6 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { private void recordUse() { useCount++; } + } diff --git a/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java b/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java index af2f370b8..9e7107dcf 100644 --- a/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java +++ b/org.hl7.fhir.dstu3/src/main/java/org/hl7/fhir/dstu3/utils/client/network/FhirRequestBuilder.java @@ -20,6 +20,7 @@ import org.hl7.fhir.dstu3.utils.ResourceUtilities; import org.hl7.fhir.dstu3.utils.client.EFhirClientException; import org.hl7.fhir.dstu3.utils.client.ResourceFormat; import org.hl7.fhir.exceptions.FHIRException; +import org.hl7.fhir.utilities.MimeType; import org.hl7.fhir.utilities.ToolingClientLogger; import org.hl7.fhir.utilities.settings.FhirSettings; @@ -326,9 +327,10 @@ public class FhirRequestBuilder { if (StringUtils.isBlank(format)) { format = ResourceFormat.RESOURCE_XML.getHeader(); } - if (format.equalsIgnoreCase("json") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { + MimeType mt = new MimeType(format); + if (mt.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { return new JsonParser(); - } else if (format.equalsIgnoreCase("xml") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { + } else if (mt.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { return new XmlParser(); } else { throw new EFhirClientException("Invalid format: " + format); diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/FHIRToolingClient.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/FHIRToolingClient.java index 3dab5b6e3..f41c8c6fb 100644 --- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/FHIRToolingClient.java +++ b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/FHIRToolingClient.java @@ -81,7 +81,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { private String acceptLang; private String contentLang; private int useCount; - + // Pass endpoint for client - URI public FHIRToolingClient(String baseServiceUrl, String userAgent) throws URISyntaxException { preferredResourceFormat = ResourceFormat.RESOURCE_JSON; @@ -131,7 +131,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { TerminologyCapabilities capabilities = null; try { capabilities = (TerminologyCapabilities) client.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(), - getPreferredResourceFormat(), generateHeaders(), "TerminologyCapabilities", timeoutNormal).getReference(); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "TerminologyCapabilities", timeoutNormal).getReference(); } catch (Exception e) { throw new FHIRException("Error fetching the server's terminology capabilities", e); } @@ -142,7 +142,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { CapabilityStatement conformance = null; try { conformance = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false), - getPreferredResourceFormat(), generateHeaders(), "CapabilitiesStatement", timeoutNormal).getReference(); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "CapabilitiesStatement", timeoutNormal).getReference(); } catch (Exception e) { throw new FHIRException("Error fetching the server's conformance statement", e); } @@ -150,11 +150,11 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { } public CapabilityStatement getCapabilitiesStatementQuick() throws EFhirClientException { - if (capabilities != null) + if (capabilities != null) return capabilities; try { capabilities = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true), - getPreferredResourceFormat(), generateHeaders(), "CapabilitiesStatement-Quick", timeoutNormal) + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "CapabilitiesStatement-Quick", timeoutNormal) .getReference(); } catch (Exception e) { throw new FHIRException("Error fetching the server's capability statement: " + e.getMessage(), e); @@ -167,7 +167,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), - getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass + "/" + id, + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass + "/" + id, timeoutNormal); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -184,7 +184,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), - getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass.getName() + "/" + id, + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass.getName() + "/" + id, timeoutNormal); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -202,7 +202,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issueGetResourceRequest( resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version), - getPreferredResourceFormat(), generateHeaders(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version, timeoutNormal); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -220,7 +220,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issueGetResourceRequest( resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL), - getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass.getName() + "?url=" + canonicalURL, + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass.getName() + "?url=" + canonicalURL, timeoutNormal); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -244,7 +244,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { result = client.issuePutRequest( resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), "Update " + resource.fhirType() + "/" + resource.getId(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + resource.getId(), timeoutOperation); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -274,7 +274,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), "Update " + resource.fhirType() + "/" + id, + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + id, timeoutOperation); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -312,10 +312,10 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { URI url = resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps); if (complex) { byte[] body = ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())); - result = client.issuePostRequest(url, body, getPreferredResourceFormat(), generateHeaders(), + result = client.issuePostRequest(url, body, withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "POST " + resourceClass.getName() + "/$" + name, timeoutLong); } else { - result = client.issueGetResourceRequest(url, getPreferredResourceFormat(), generateHeaders(), + result = client.issueGetResourceRequest(url, withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "GET " + resourceClass.getName() + "/$" + name, timeoutLong); } if (result.isUnsuccessfulRequest()) { @@ -337,7 +337,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(), ByteUtils.resourceToByteArray(batch, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), "transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size())); + withVer(getPreferredResourceFormat(), "4.0"), "transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size())); } catch (Exception e) { handleException("An error occurred trying to process this transaction request", e); } @@ -351,7 +351,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -396,7 +396,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { recordUse(); Bundle feed = null; try { - feed = client.issueGetFeedRequest(new URI(url), getPreferredResourceFormat(), timeoutLong); + feed = client.issueGetFeedRequest(new URI(url), withVer(getPreferredResourceFormat(), "4.0"), timeoutLong); } catch (Exception e) { handleException("An error has occurred while trying to retrieve history since last update", e); } @@ -422,7 +422,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r4.utils.client.network.ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", parameters), - getPreferredResourceFormat(), generateHeaders(), "ValueSet/$expand?url=" + vsUrl, timeoutExpand); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "ValueSet/$expand?url=" + vsUrl, timeoutExpand); } catch (IOException e) { throw new FHIRException(e); } @@ -440,7 +440,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r4.utils.client.network.ResourceRequest result = null; try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"), - ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -457,7 +457,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r4.utils.client.network.ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params), - getPreferredResourceFormat(), generateHeaders(), "CodeSystem/$lookup", timeoutNormal); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "CodeSystem/$lookup", timeoutNormal); } catch (IOException e) { throw new FHIRException(e); } @@ -480,7 +480,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r4.utils.client.network.ResourceRequest result = null; try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params), - ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), source == null ? "ValueSet/$expand" : "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); if (result.isUnsuccessfulRequest()) { @@ -512,7 +512,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { result = client.issuePostRequest( resourceAddress.resolveOperationUri(null, "closure", new HashMap()), ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), "Closure?name=" + name, timeoutNormal); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Closure?name=" + name, timeoutNormal); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload()); @@ -533,7 +533,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { result = client.issuePostRequest( resourceAddress.resolveOperationUri(null, "closure", new HashMap()), ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), "UpdateClosure?name=" + name, timeoutOperation); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "UpdateClosure?name=" + name, timeoutOperation); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload()); @@ -645,7 +645,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r4.utils.client.network.ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetResource(resourceClass, id), - getPreferredResourceFormat(), generateHeaders(), resourceClass.getName()+"/"+id, timeoutNormal); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), resourceClass.getName()+"/"+id, timeoutNormal); } catch (IOException e) { throw new FHIRException(e); } @@ -664,4 +664,5 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { useCount++; } + } diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirRequestBuilder.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirRequestBuilder.java index da7dca904..a4a23d4a4 100644 --- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirRequestBuilder.java +++ b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/client/network/FhirRequestBuilder.java @@ -18,6 +18,7 @@ import org.hl7.fhir.r4.model.Resource; import org.hl7.fhir.r4.utils.ResourceUtilities; import org.hl7.fhir.r4.utils.client.EFhirClientException; import org.hl7.fhir.r4.utils.client.ResourceFormat; +import org.hl7.fhir.utilities.MimeType; import org.hl7.fhir.utilities.TextFile; import org.hl7.fhir.utilities.settings.FhirSettings; @@ -335,9 +336,11 @@ public class FhirRequestBuilder { if (StringUtils.isBlank(format)) { format = ResourceFormat.RESOURCE_XML.getHeader(); } - if (format.equalsIgnoreCase("json") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { + MimeType mt = new MimeType(format); + + if (mt.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { return new JsonParser(); - } else if (format.equalsIgnoreCase("xml") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { + } else if (mt.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { return new XmlParser(); } else { throw new EFhirClientException("Invalid format: " + format); diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/SimpleWorkerContext.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/SimpleWorkerContext.java index f1cabea86..1498e416e 100644 --- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/SimpleWorkerContext.java +++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/context/SimpleWorkerContext.java @@ -350,6 +350,7 @@ public class SimpleWorkerContext extends BaseWorkerContext implements IWorkerCon setTxCaps(capabilityStatement); return capabilitiesStatementQuick.getSoftware().getVersion(); } catch (Exception e) { + e.printStackTrace(); throw new FHIRException(formatMessage(canNoTS ? I18nConstants.UNABLE_TO_CONNECT_TO_TERMINOLOGY_SERVER_USE_PARAMETER_TX_NA_TUN_RUN_WITHOUT_USING_TERMINOLOGY_SERVICES_TO_VALIDATE_LOINC_SNOMED_ICDX_ETC_ERROR__ : I18nConstants.UNABLE_TO_CONNECT_TO_TERMINOLOGY_SERVER, e.getMessage(), client.getAddress()), e); } } diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientR5.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientR5.java index 1d8d4a19b..90ed4bad3 100644 --- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientR5.java +++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/terminologies/client/TerminologyClientR5.java @@ -205,6 +205,7 @@ public class TerminologyClientR5 implements ITerminologyClient { public ITerminologyClient setClientHeaders(ClientHeaders clientHeaders) { this.clientHeaders = clientHeaders; this.client.setClientHeaders(this.clientHeaders.headers()); + this.client.setVersionInMimeTypes(true); return this; } diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/FHIRToolingClient.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/FHIRToolingClient.java index 3ab463ba6..5d188e191 100644 --- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/FHIRToolingClient.java +++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/FHIRToolingClient.java @@ -109,6 +109,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { private int useCount; + //Pass endpoint for client - URI public FHIRToolingClient(String baseServiceUrl, String userAgent) throws URISyntaxException { preferredResourceFormat = ResourceFormat.RESOURCE_JSON; @@ -160,7 +161,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { for (ResourceFormat attemptedResourceFormat : resourceFormats) { try { T output = (T) client.issueGetResourceRequest(resourceUri, - preferredResourceFormat.getHeader(), + withVer(preferredResourceFormat.getHeader(), "5.0"), generateHeaders(), message, timeoutNormal).getReference(); @@ -213,7 +214,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), - getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass + "/" + id, + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass + "/" + id, timeoutNormal); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), @@ -231,7 +232,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass.getName() + "/" + id, timeoutNormal); @@ -249,7 +250,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version, timeoutNormal); @@ -267,7 +268,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass.getName() + "?url=" + canonicalURL, timeoutNormal); @@ -291,7 +292,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + resource.getId(), timeoutOperation); @@ -319,7 +320,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + id, timeoutOperation); @@ -356,10 +357,10 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { URI url = resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps); if (complex) { byte[] body = ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())); - result = client.issuePostRequest(url, body, getPreferredResourceFormat(), generateHeaders(), + result = client.issuePostRequest(url, body, withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "POST " + resourceClass.getName() + "/$" + name, timeoutLong); } else { - result = client.issueGetResourceRequest(url, getPreferredResourceFormat(), generateHeaders(), "GET " + resourceClass.getName() + "/$" + name, timeoutLong); + result = client.issueGetResourceRequest(url, withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "GET " + resourceClass.getName() + "/$" + name, timeoutLong); } if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload()); @@ -381,7 +382,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { recordUse(); Bundle transactionResult = null; try { - transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(), ByteUtils.resourceToByteArray(batch, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), + transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(), ByteUtils.resourceToByteArray(batch, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size())); } catch (Exception e) { @@ -397,7 +398,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id), ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), generateHeaders(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong); if (result.isUnsuccessfulRequest()) { throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload()); @@ -456,7 +457,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"), ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); @@ -475,7 +476,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r5.utils.client.network.ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "CodeSystem/$lookup", timeoutNormal); @@ -505,7 +506,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params), ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), source == null ? "ValueSet/$expand" : "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand); @@ -530,7 +531,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap()), ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Closure?name=" + name, timeoutNormal); @@ -552,7 +553,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { try { result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap()), ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())), - getPreferredResourceFormat(), + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "UpdateClosure?name=" + name, timeoutOperation); @@ -681,7 +682,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient { org.hl7.fhir.r5.utils.client.network.ResourceRequest result = null; try { result = client.issueGetResourceRequest(resourceAddress.resolveGetResource(resourceClass, id), - getPreferredResourceFormat(), generateHeaders(), resourceClass.getName()+"/"+id, timeoutNormal); + withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), resourceClass.getName()+"/"+id, timeoutNormal); } catch (IOException e) { throw new FHIRException(e); } diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirRequestBuilder.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirRequestBuilder.java index 8e8c2e06b..1edacd331 100644 --- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirRequestBuilder.java +++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/utils/client/network/FhirRequestBuilder.java @@ -12,6 +12,7 @@ import org.hl7.fhir.r5.model.Resource; import org.hl7.fhir.r5.utils.ResourceUtilities; import org.hl7.fhir.r5.utils.client.EFhirClientException; import org.hl7.fhir.r5.utils.client.ResourceFormat; +import org.hl7.fhir.utilities.MimeType; import org.hl7.fhir.utilities.settings.FhirSettings; import javax.annotation.Nonnull; @@ -309,9 +310,10 @@ public class FhirRequestBuilder { if (StringUtils.isBlank(format)) { format = ResourceFormat.RESOURCE_XML.getHeader(); } - if (format.equalsIgnoreCase("json") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { + MimeType mt = new MimeType(format); + if (mt.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) { return new JsonParser(); - } else if (format.equalsIgnoreCase("xml") || format.equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { + } else if (mt.getBase().equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) { return new XmlParser(); } else { throw new EFhirClientException("Invalid format: " + format); diff --git a/org.hl7.fhir.r5/src/test/resources/txCache/org.hl7.fhir.r5/lang.cache b/org.hl7.fhir.r5/src/test/resources/txCache/org.hl7.fhir.r5/lang.cache deleted file mode 100644 index 2a57f0f18..000000000 --- a/org.hl7.fhir.r5/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.r5/src/test/resources/txCache/org.hl7.fhir.r5/loinc.cache b/org.hl7.fhir.r5/src/test/resources/txCache/org.hl7.fhir.r5/loinc.cache deleted file mode 100644 index ade482641..000000000 --- a/org.hl7.fhir.r5/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.r5/src/test/resources/txCache/org.hl7.fhir.r5/mimetypes.cache b/org.hl7.fhir.r5/src/test/resources/txCache/org.hl7.fhir.r5/mimetypes.cache deleted file mode 100644 index 5eef85a1e..000000000 --- a/org.hl7.fhir.r5/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.r5/src/test/resources/txCache/org.hl7.fhir.r5/ucum.cache b/org.hl7.fhir.r5/src/test/resources/txCache/org.hl7.fhir.r5/ucum.cache deleted file mode 100644 index 5e88ce8e0..000000000 --- a/org.hl7.fhir.r5/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.utilities/src/main/java/org/hl7/fhir/utilities/FHIRBaseToolingClient.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/FHIRBaseToolingClient.java index bc9d5e83f..16302944b 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/FHIRBaseToolingClient.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/FHIRBaseToolingClient.java @@ -14,7 +14,9 @@ public class FHIRBaseToolingClient { protected int timeoutEntry = DEFAULT_TIMEOUT_ENTRY; protected int timeoutLong = DEFAULT_TIMEOUT_OPERATION_LONG; protected int timeoutExpand = DEFAULT_TIMEOUT_OPERATION_EXPAND; - + + protected boolean versionInMimeTypes; + public long getTimeoutNormal() { return timeoutNormal; @@ -64,5 +66,17 @@ public class FHIRBaseToolingClient { timeoutLong = i * DEFAULT_TIMEOUT_OPERATION_LONG; timeoutExpand = i * DEFAULT_TIMEOUT_OPERATION_EXPAND; } - + + protected String withVer(String header, String version) { + return header+(versionInMimeTypes ? "; fhirVersion="+version : ""); + } + + public boolean isVersionInMimeTypes() { + return versionInMimeTypes; + } + + public void setVersionInMimeTypes(boolean versionInMimeTypes) { + this.versionInMimeTypes = versionInMimeTypes; + } + } diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/MimeType.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/MimeType.java index d3a3f0b8d..2ba0ab41d 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/MimeType.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/MimeType.java @@ -71,6 +71,18 @@ public class MimeType { return null; } + public String getSource() { + return source; + } + + public String getBase() { + return base; + } + + public Map getParams() { + return params; + } + public boolean hasParam(String name) { return params.containsKey(name); } @@ -135,4 +147,5 @@ public class MimeType { return null; } + } \ No newline at end of file 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 3b691586c..abcf9b90a 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 @@ -13,10 +13,10 @@ "valueCode" : "both" }], "url" : "http://tx-dev.fhir.org/r2/metadata", - "version" : "1.0.2-3.0.0", + "version" : "1.0.2-3.1.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2024-01-04T06:37:42.409Z", + "date" : "2024-01-10T04:28:20.082Z", "contact" : [{ "telecom" : [{ "system" : "other", @@ -27,8 +27,8 @@ "kind" : "instance", "software" : { "name" : "Reference Server", - "version" : "3.0.0", - "releaseDate" : "2023-06-19T19:50:55.040Z" + "version" : "3.1.0", + "releaseDate" : "2024-01-08T12:29:45.425Z" }, "implementation" : { "description" : "FHIR Server running at http://tx-dev.fhir.org/r2", 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 55a2bfd96..c30e3740a 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 @@ -1,44 +1,4 @@ ------------------------------------------------------------------------------------- -{"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":"false", "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", - "server" : "http://tx-dev.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" - }], - "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"] - }] -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://acme.org/devices/clinical-codes", "code" : "body-weight", 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 af8a35835..17fcba7f7 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 @@ -1,27 +1,4 @@ ------------------------------------------------------------------------------------- -{"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":"false", "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://tx-dev.fhir.org/r2", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://loinc.org", "code" : "3141-9", 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 34d600bcd..71839666f 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 @@ -1,27 +1,4 @@ ------------------------------------------------------------------------------------- -{"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":"false", "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://tx-dev.fhir.org/r2", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://snomed.info/sct", "code" : "27113001", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/system-map.json b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/system-map.json new file mode 100644 index 000000000..0c492b56a --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.0.2/system-map.json @@ -0,0 +1,20 @@ +{ + "systems" : [ + { + "system" : "http://acme.org/devices/clinical-codes", + "server" : "http://tx-dev.fhir.org/r2" + }, + { + "system" : "http://loinc.org", + "server" : "http://tx-dev.fhir.org/r2" + }, + { + "system" : "http://snomed.info/sct", + "server" : "http://tx-dev.fhir.org/r2" + }, + { + "system" : "http://unitsofmeasure.org", + "server" : "http://tx-dev.fhir.org/r2" + } + ] +} 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 afdbe1ac1..53766b2c8 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 @@ -1,26 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "[lb_av]" -}, "valueSet" :null, "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" : "[lb_av]", - "code" : "[lb_av]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r2", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://unitsofmeasure.org", "code" : "[lb_av]" 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 a0a05f3fb..129bebef8 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 @@ -13,10 +13,10 @@ "valueCode" : "both" }], "url" : "http://tx-dev.fhir.org/r3/metadata", - "version" : "3.0.2-3.0.0", + "version" : "3.0.2-3.1.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2024-01-04T06:37:48.299Z", + "date" : "2024-01-10T04:28:23.535Z", "contact" : [{ "telecom" : [{ "system" : "other", @@ -27,8 +27,8 @@ "instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"], "software" : { "name" : "Reference Server", - "version" : "3.0.0", - "releaseDate" : "2023-06-19T19:50:55.040Z" + "version" : "3.1.0", + "releaseDate" : "2024-01-08T12:29:45.425Z" }, "implementation" : { "description" : "FHIR Server running at http://tx-dev.fhir.org/r3", diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/all-systems.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/all-systems.cache deleted file mode 100644 index d7f1eecc9..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/1.4.0/all-systems.cache +++ /dev/null @@ -1,20 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "code" : "Foo" -}, "url": "https://fhir.infoway-inforoute.ca/ValueSet/canadianjurisdiction", "version": "20170626", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"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" : "The code provided (Foo) is not in the expansion in the value set https://fhir.infoway-inforoute.ca/ValueSet/canadianjurisdiction, and a code is required from this value set. The system http://canadapost.ca/CodeSystem/ProvinceCodes could not be found.", - "class" : "CODESYSTEM_UNSUPPORTED", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- 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 b60c6025c..58db955a2 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 @@ -13,10 +13,10 @@ "valueCode" : "both" }], "url" : "http://tx-dev.fhir.org/r3/metadata", - "version" : "3.0.2-3.0.0", + "version" : "3.0.2-3.1.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2024-01-04T06:37:52.096Z", + "date" : "2024-01-10T04:28:27.754Z", "contact" : [{ "telecom" : [{ "system" : "other", @@ -27,8 +27,8 @@ "instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"], "software" : { "name" : "Reference Server", - "version" : "3.0.0", - "releaseDate" : "2023-06-19T19:50:55.040Z" + "version" : "3.1.0", + "releaseDate" : "2024-01-08T12:29:45.425Z" }, "implementation" : { "description" : "FHIR Server running at http://tx-dev.fhir.org/r3", 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 68477f23c..11cfb5708 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 @@ -1,25 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "code" : "fi" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "3.0.2", "langs":"fi", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Finnish", - "code" : "fi", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- {"code" : { "code" : "d" }, "url": "http://hl7.org/fhir/ValueSet/units-of-time", "version": "3.0.2", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { @@ -42,183 +21,3 @@ v: { } ------------------------------------------------------------------------------------- -{"code" : { - "code" : "image/jpg" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "urn:ietf:bcp:13" - }] - } -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "image/jpg", - "code" : "image/jpg", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "application/pdf" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "urn:ietf:bcp:13" - }] - } -}, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "application/pdf", - "code" : "application/pdf", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "3.0.2", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", - "code" : "urn:ihe:iti:xds:2017:mimeTypeSufficient", - "display" : "MimeType sufficient" -}, "url": "http://hl7.org/fhir/ValueSet/formatcodes", "version": "20150326", "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: { - "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'", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode' 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/r3" - }], - "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://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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US", - "display" : "United States of America" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "3.0.2", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "3.0.2", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org.cache deleted file mode 100644 index 05ffdf590..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org", - "code" : "example", - "display" : "Example of Use" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "example", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://acme.org' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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' 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 deleted file mode 100644 index 4217da834..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___acme.org_not-snomed.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/not-snomed", - "code" : "27171005" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "27171005", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 02aa000a2..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___example.org_system.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/system", - "code" : "xxx", - "display" : "Hives" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "xxx", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://example.org/system' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 1024b945f..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___mydomain.org_fhir_cs_mydomain.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://mydomain.org/fhir/cs/mydomain", - "code" : "very-high", - "display" : "Very High" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 7fe0ac458..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___myownsystem.info_sct.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://myownsystem.info/sct", - "code" : "104", - "display" : "Laboratory test finding (finding)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "104", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://myownsystem.info/sct' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 286db1266..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://spms.min-saude.pt/valueset-list-empty-reason", - "code" : "not-found", - "display" : "Not Found" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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-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 deleted file mode 100644 index 3712aea39..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/http___spms.min-saude.pt_valueset-list.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://spms.min-saude.pt/valueset-list", - "code" : "PMT", - "display" : "Proposta de monitorização e tratamento" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" : ["Coding.system"], - "expression" : ["Coding.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 deleted file mode 100644 index 3db5b396d..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1", - "code" : "01", - "display" : "Number present and verified" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 98ac229ac..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/iso3166.cache +++ /dev/null @@ -1,189 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NL" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NL", - "display" : "Netherlands" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NL", - "display" : "Netherlands" -}, "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" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NL" -}, "url": "http://decor.nictiz.nl/fhir/ValueSet/2.16.840.1.113883.2.4.3.11.60.40.2.20.5.2--20171231000000--0", "version": "2017-12-31T00:00:00", "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" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NL" -}, "url": "http://decor.nictiz.nl/fhir/ValueSet/2.16.840.1.113883.2.4.3.11.60.40.2.20.5.2--20171231000000--0", "version": "2017-12-31T00:00:00", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NL", - "display" : "Netherlands" -}, "url": "http://decor.nictiz.nl/fhir/ValueSet/2.16.840.1.113883.2.4.3.11.60.40.2.20.5.2--20171231000000", "version": "2017-12-31T00:00: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" : "Netherlands", - "code" : "NL", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US", - "display" : "United States of America" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction--0", "version": "3.0.2", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/loinc.cache index 27d528128..402239df7 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 @@ -1,9 +1,9 @@ ------------------------------------------------------------------------------------- {"code" : { "system" : "http://loinc.org", - "code" : "19935-6", - "display" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter" -}, "valueSet" :null, "langs":"fi", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "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", @@ -11,8 +11,8 @@ }] }}#### v: { - "display" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter", - "code" : "19935-6", + "display" : "Body weight", + "code" : "29463-7", "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", @@ -24,8 +24,9 @@ v: { ------------------------------------------------------------------------------------- {"code" : { "system" : "http://loinc.org", - "code" : "19935-6" -}, "url": "http://phr.kanta.fi/ValueSet/fiphr-vs-vitalsigns--0", "version": "0.03", "langs":"fi", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "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", @@ -33,31 +34,8 @@ v: { }] }}#### v: { - "display" : "ei käännetty", - "code" : "19935-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "19935-6", - "display" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter" -}, "url": "http://phr.kanta.fi/ValueSet/fiphr-vs-vitalsigns", "version": "0.03", "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" : "ei käännetty", - "code" : "19935-6", + "display" : "Body weight Measured", + "code" : "3141-9", "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", @@ -83,6 +61,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -105,6 +84,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -127,6 +107,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -150,6 +131,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -173,6 +155,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -196,6 +179,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -218,6 +202,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -241,6 +226,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -263,6 +249,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -286,6 +273,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -310,6 +298,7 @@ v: { "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://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -350,6 +339,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -373,6 +363,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -396,6 +387,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -419,6 +411,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -442,6 +435,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -465,6 +459,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -488,6 +483,7 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -512,6 +508,7 @@ v: { "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://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -533,134 +530,6 @@ v: { }] } -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "47420-5", - "display" : "Functional status assessment note" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Functional status assessment note", - "code" : "47420-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10187-3", - "display" : "Review of systems Narrative Reporte" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Review of systems Narrative - Reported", - "code" : "10187-3", - "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://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "87504-7", - "display" : "Administrative information" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "LCDS v4.00 - Administrative information - discharge [CMS Assessment]", - "code" : "87504-7", - "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://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -680,53 +549,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r3", - "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", - "server" : "http://tx-dev.fhir.org/r3", - "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://tx-dev.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/snomed.cache index f2649c71e..f0e44f7f5 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 @@ -1,4 +1,27 @@ ------------------------------------------------------------------------------------- +{"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://tx-dev.fhir.org/r3", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- {"code" : { "system" : "http://snomed.info/sct", "code" : "66493003" @@ -15,6 +38,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -38,6 +62,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -62,6 +87,7 @@ v: { "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://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -103,6 +129,7 @@ v: { "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://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -143,6 +170,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -166,6 +194,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -189,6 +218,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -212,75 +242,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722172003", - "display" : "Military health institution (environment)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Military health institution (environment)", - "code" : "722172003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "394609007", - "display" : "General surgery (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "General surgery (qualifier value)", - "code" : "394609007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "71388002", - "display" : "Procedure (procedure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Procedure", - "code" : "71388002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -304,6 +266,7 @@ v: { "error" : "Unknown code '823681000000100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -344,6 +307,7 @@ v: { "error" : "Unknown code '886921000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -384,6 +348,7 @@ v: { "error" : "Unknown code '1077881000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -424,6 +389,7 @@ v: { "error" : "Unknown code '887181000000106' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -464,6 +430,7 @@ v: { "error" : "Unknown code '887161000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -504,6 +471,7 @@ v: { "error" : "Unknown code '1052891000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -544,6 +512,7 @@ v: { "error" : "Unknown code '715851000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -584,6 +553,7 @@ v: { "error" : "Unknown code '717121000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -624,6 +594,7 @@ v: { "error" : "Unknown code '933361000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -664,6 +635,7 @@ v: { "error" : "Unknown code '887171000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -704,6 +676,7 @@ v: { "error" : "Unknown code '887201000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -744,6 +717,7 @@ v: { "error" : "Unknown code '1052951000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -784,6 +758,7 @@ v: { "error" : "Unknown code '886731000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -824,6 +799,7 @@ v: { "error" : "Unknown code '887231000000104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -864,6 +840,7 @@ v: { "error" : "Unknown code '9290701000001101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -885,6 +862,29 @@ v: { }] } +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://snomed.info/sct", + "code" : "27171005" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Urinalysis", + "code" : "27171005", + "system" : "http://snomed.info/sct", + "version" : "http://snomed.info/sct/900000000000207008/version/20230901", + "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + } ------------------------------------------------------------------------------------- {"code" : { @@ -904,6 +904,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -927,80 +928,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "27171005" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Urinalysis", - "code" : "27171005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "55011004" -}, "valueSet" :null, "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" : "Steady", - "code" : "55011004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "55011004" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "expansion" : { - "contains" : [{ - "system" : "http://snomed.info/sct", - "code" : "55011004" - }] - } -}, "langs":"en", "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" : "Steady", - "code" : "55011004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -1023,6 +951,7 @@ v: { "error" : "Unknown code '11181000146103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -1046,27 +975,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", - "server" : "http://tx-dev.fhir.org/r3", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/system-map.json b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/system-map.json new file mode 100644 index 000000000..45da643b4 --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/system-map.json @@ -0,0 +1,20 @@ +{ + "systems" : [ + { + "system" : "http://acme.org/devices/clinical-codes", + "server" : "http://tx-dev.fhir.org/r3" + }, + { + "system" : "http://loinc.org", + "server" : "http://tx-dev.fhir.org/r3" + }, + { + "system" : "http://snomed.info/sct", + "server" : "http://tx-dev.fhir.org/r3" + }, + { + "system" : "http://unitsofmeasure.org", + "server" : "http://tx-dev.fhir.org/r3" + } + ] +} 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 6a3ff5621..bc583437c 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 @@ -1,8 +1,8 @@ ------------------------------------------------------------------------------------- {"code" : { "system" : "http://unitsofmeasure.org", - "code" : "L/min" -}, "valueSet" :null, "langs":"fi", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "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", @@ -10,8 +10,8 @@ }] }}#### v: { - "display" : "L/min", - "code" : "L/min", + "display" : "[lb_av]", + "code" : "[lb_av]", "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r3", @@ -19,62 +19,6 @@ v: { "resourceType" : "OperationOutcome" } -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "21612-7" -}, "valueSet" :null, "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: { - "code" : "21612-7", - "severity" : "error", - "error" : "Unknown code '21612-7' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r3", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '21612-7' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r3" - }], - "severity" : "information", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Error processing Unit: '21612-7': Expected \"/\" or \".\" at character 6" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -93,6 +37,7 @@ v: { "error" : "Unknown code 'tbl' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r3", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -149,28 +94,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r3", - "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://tx-dev.fhir.org/r3", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/3.0.2/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 deleted file mode 100644 index a22b8dd58..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:1.2.840.10008.2.16.4", - "code" : "US", - "display" : "Ultrasound" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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: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/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/.capabilityStatement.cache index dd468da9d..03b8200ba 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 @@ -9,10 +9,10 @@ }] }, "url" : "http://tx-dev.fhir.org/r4/metadata", - "version" : "4.0.1-3.0.0", + "version" : "4.0.1-3.1.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2024-01-04T06:38:17.377Z", + "date" : "2024-01-10T04:28:09.566Z", "contact" : [{ "telecom" : [{ "system" : "other", @@ -23,8 +23,8 @@ "instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"], "software" : { "name" : "Reference Server", - "version" : "3.0.0", - "releaseDate" : "2023-06-19T19:50:55.040Z" + "version" : "3.1.0", + "releaseDate" : "2024-01-08T12:29:45.425Z" }, "implementation" : { "description" : "FHIR Server running at http://tx-dev.fhir.org/r4", 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 30ba71f55..6e2f68c0c 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" : "2024-01-04T06:38:17.612Z", + "date" : "2024-01-10T04:28:09.785Z", "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 deleted file mode 100644 index 7f57fade2..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/11073.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:11073:10101", - "code" : "150456", - "display" : "MDC_PULS_OXIM_SAT_O2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "MDC_PULS_OXIM_SAT_O2", - "code" : "150456", - "system" : "urn:iso:std:iso:11073:10101", - "version" : "2022-02-04", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "information", - "code" : "business-rule", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "status-check" - }], - "text" : "Reference to draft CodeSystem urn:iso:std:iso:11073:10101|2022-02-04" - } - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index cd3edb866..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/Location.cache +++ /dev/null @@ -1,58 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "Location", - "code" : "Location" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "Location", - "severity" : "error", - "error" : "A definition for CodeSystem 'Location' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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 'Location' 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" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-data" - }], - "text" : "Coding.system must be an absolute reference, not a local reference" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 30310a24b..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSeticd-10.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/ValueSet/icd-10", - "code" : "N801" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "N801", - "severity" : "error", - "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/icd-10')", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-data" - }], - "text" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/icd-10')" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index e2581d866..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetmeasure-type.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/ValueSet/measure-type", - "code" : "structure", - "display" : "Structure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "structure", - "severity" : "error", - "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/measure-type')", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-data" - }], - "text" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/measure-type')" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index ff4afef9d..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ValueSetparticipant-role.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/ValueSet/participant-role", - "code" : "394733009" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "394733009", - "severity" : "error", - "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/participant-role')", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-data" - }], - "text" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/participant-role')" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 910d18a17..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/all-systems.cache +++ /dev/null @@ -1,3255 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "code" : "application/octet-stream" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "application/octet-stream", - "code" : "application/octet-stream", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"de-CH", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "application/pdf" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "application/pdf", - "code" : "application/pdf", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "cm" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "image/*" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "image/*", - "code" : "image/*", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "d" -}, "url": "http://hl7.org/fhir/ValueSet/units-of-time", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-IN" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"en-IN", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (India)", - "code" : "en-IN", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "image/jpg" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "image/jpg", - "code" : "image/jpg", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"de-CH", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"en, de-CH", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "min" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "min", - "code" : "min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "mmol/L" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "mmol/L", - "code" : "mmol/L", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "%" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "%", - "code" : "%", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "cm" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "cm", - "code" : "cm", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#cm' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "cm" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg/m2" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg/m2", - "code" : "kg/m2", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "112144000", - "display" : "Blood group A (finding)" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup", "version": "0.5.0", "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 group A (finding)", - "code" : "112144000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg", - "code" : "kg", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#kg' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg/m2" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg/m2", - "code" : "kg/m2", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "wk" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "wk", - "code" : "wk", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722446000", - "display" : "Allergy record (record artifact)" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.typeCode", "version": "2.0.4", "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 record", - "code" : "722446000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371531000", - "display" : "Report of clinical encounter (record artifact)" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.classCode", "version": "2.0.4", "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" : "Report of clinical encounter", - "code" : "371531000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "application/pdf" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "application/pdf", - "code" : "application/pdf", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "4241000179101", - "display" : "Laboratory report (record artifact)" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.typeCode", "version": "2.0.4", "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" : "Laboratory report", - "code" : "4241000179101", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "422735006", - "display" : "Summary clinical document (record artifact)" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.classCode", "version": "2.0.4", "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", - "code" : "422735006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "min" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "min", - "code" : "min", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#min' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "min" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "min", - "code" : "min", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#min' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "min" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "min", - "code" : "min", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#min' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "mmol/L" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "mmol/L", - "code" : "mmol/L", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "mmol/L" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "mmol/L", - "code" : "mmol/L", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "mmol/L" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "mmol/L", - "code" : "mmol/L", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "%" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "%", - "code" : "%", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#%' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "%" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "%", - "code" : "%", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#%' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "%" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "%", - "code" : "%", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#%' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "wk" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "wk", - "code" : "wk", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#wk' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodyweight|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "wk" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "wk", - "code" : "wk", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#wk' was not found in the value set 'http://hl7.org/fhir/ValueSet/ucum-bodylength|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg", - "code" : "kg", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#kg' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "cm" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "cm", - "code" : "cm", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#cm' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "cm" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg/m2" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-timeOfGestation", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg/m2", - "code" : "kg/m2", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg/m2" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "kg/m2", - "code" : "kg/m2", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "wk" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-units", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "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" : "wk", - "code" : "wk", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "json" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "json", - "code" : "json", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "xml" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "xml", - "code" : "xml", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "application/fhir+json" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "application/fhir+json", - "code" : "application/fhir+json", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-US" -}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (Region=United States)", - "code" : "en-US", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en" -}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "text/plain" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "text/plain", - "code" : "text/plain", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371525003", - "display" : "Clinical procedure report" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.classCode", "version": "2.0.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" : "Clinical procedure report (record artifact)", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "CHE" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "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" : "Switzerland", - "code" : "CHE", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "text/css" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "text/css", - "code" : "text/css", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", - "code" : "urn:ihe:iti:xds:2017:mimeTypeSufficient", - "display" : "MimeType sufficient" -}, "url": "http://hl7.org/fhir/ValueSet/formatcodes", "version": "4.0.1", "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" : "mimeType Sufficient", - "code" : "urn:ihe:iti:xds:2017:mimeTypeSufficient", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:1.3.6.1.4.1.19376.1.2.3", - "code" : "urn:hl7-org:sdwg:ccda-structuredBody:2.1", - "display" : "Documents following C-CDA constraints using a structured body" -}, "url": "http://hl7.org/fhir/ValueSet/formatcodes", "version": "4.0.1", "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: { - "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'", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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: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"] - }, - { - "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 '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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "34133-9", - "display" : "Summary of episode note" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-documentreference-type", "version": "3.1.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" : "Summary of episode note", - "code" : "34133-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-US" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (United States)", - "code" : "en-US", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:1.2.840.114350.1.72.1.7.7.10.696784.13260", - "code" : "1", - "display" : "Surgery Case" -}, "url": "http://terminology.hl7.org/ValueSet/v3-ActEncounterCode", "version": "2.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: { - "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'", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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: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"] - }, - { - "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 '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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-NZ" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (New Zeland)", - "code" : "en-NZ", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "d" -}, "url": "http://hl7.org/fhir/ValueSet/units-of-time", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "Cel" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodytemp", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cel", - "code" : "Cel", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "cm" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodylength", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodyweight", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "NZ" -}, "url": "http://hl7.org/fhir/ValueSet/iso3166-1-2", "version": "4.0.1", "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" : "New Zealand", - "code" : "NZ", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "26643006" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Oral route", - "code" : "26643006", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#26643006' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "767525000" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Unit", - "code" : "767525000", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#767525000' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "237599002" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Insulin treated type 2 diabetes mellitus (disorder)", - "code" : "237599002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1201005" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Benign essential hypertension (disorder)", - "code" : "1201005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "109081006" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing metformin (medicinal product)", - "code" : "109081006", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#109081006' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "5913000" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Fracture of neck of femur (disorder)", - "code" : "5913000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292954005" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Penicillin adverse reaction", - "code" : "292954005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#292954005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "52910006" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Anxiety disorder due to a general medical condition (disorder)", - "code" : "52910006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "428673006" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Tablet - unit of product usage (qualifier value)", - "code" : "428673006", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#428673006' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device (procedure)", - "code" : "265132005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "7947003" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing aspirin (medicinal product)", - "code" : "7947003", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#7947003' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "81464008" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Clinical pathologist", - "code" : "81464008", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#81464008' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "48546005" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing diazepam (medicinal product)", - "code" : "48546005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#48546005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "40425004" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Postconcussion syndrome (disorder)", - "code" : "40425004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "158965000" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Medical practitioner", - "code" : "158965000", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#158965000' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96309000" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing losartan (medicinal product)", - "code" : "96309000", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#96309000' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "714081009" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing dulaglutide (medicinal product)", - "code" : "714081009", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#714081009' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "25246002" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing allopurinol (medicinal product)", - "code" : "25246002", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#25246002' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96067005" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing flucloxacillin (medicinal product)", - "code" : "96067005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#96067005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90560007" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Inflammatory disorder due to increased blood urate level (disorder)", - "code" : "90560007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "34206005" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Subcutaneous route", - "code" : "34206005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#34206005' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "108537001" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing amlodipine (medicinal product)", - "code" : "108537001", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#108537001' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "126212009" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Product containing insulin glargine (medicinal product)", - "code" : "126212009", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#126212009' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292360004" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Diazepam adverse reaction", - "code" : "292360004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#292360004' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "16217701000119102" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Structure of left deltoid muscle", - "code" : "16217701000119102", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#16217701000119102' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "valueSet" :http://terminology.hl7.org/ValueSet/snomed-intl-ips, "langs":"en, en-US", "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" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://terminology.hl7.org/ValueSet/snomed-intl-ips|20211027'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "application/xml" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "application/xml", - "code" : "application/xml", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "text/xml" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "text/xml", - "code" : "text/xml", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.mimic.mit.edu/CodeSystem/admission-class", - "code" : "URGENT" -}, "url": "http://terminology.hl7.org/ValueSet/v3-ActEncounterCode", "version": "2.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: { - "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'", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/admission-class' 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://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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US", - "display" : "United States of America" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "text/cql.identifier" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "text/cql.identifier", - "code" : "text/cql.identifier", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "kg" -}, "url": "http://fhir.de/ValueSet/VitalSignDE_Body_Weigth_UCUM", "version": "0.9.13", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "kilogram", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:11073:10101", - "code" : "150456", - "display" : "MDC_PULS_OXIM_SAT_O2" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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" : "MDC_PULS_OXIM_SAT_O2", - "code" : "150456", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "information", - "code" : "business-rule", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "status-check" - }], - "text" : "Reference to draft CodeSystem urn:iso:std:iso:11073:10101|2022-02-04" - } - }, - { - "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 '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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "276885007" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#276885007' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "Cel" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-bodytemp", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cel", - "code" : "Cel", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-AU" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"en-AU", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (Australia)", - "code" : "en-AU", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-US" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (United States)", - "code" : "en-US", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "4.0.1", "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" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "wk" -}, "url": "http://hl7.org/fhir/ValueSet/units-of-time", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "week", - "code" : "wk", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "[%payloadFormat%]" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "[%payloadFormat%]", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '[%payloadFormat%]' in the CodeSystem 'urn:ietf:bcp:13' 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" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'urn:ietf:bcp:13#[%payloadFormat%]' was not found in the value set 'http://hl7.org/fhir/ValueSet/mimetypes|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 46f627d9f..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/condition-clinical.cache +++ /dev/null @@ -1,66 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical", - "version" : "0.5.0", - "code" : "active", - "display" : "Active" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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.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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical", - "code" : "active" -}, "url": "http://hl7.org/fhir/ValueSet/condition-clinical--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Active", - "code" : "active", - "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical", - "version" : "2.0.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache deleted file mode 100644 index a5cc6576c..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/cvx.cache +++ /dev/null @@ -1,542 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "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" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "207", - "display" : "X SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 100 mcg/0.5mL dose", - "code" : "207", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "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" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "141", - "display" : "Influenza, seasonal, injectable" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Influenza, seasonal, injectable", - "code" : "141", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "20", - "display" : "diphtheria, tetanus toxoids and acellular pertussis vaccine" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "diphtheria, tetanus toxoids and acellular pertussis vaccine", - "code" : "20", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "138", - "display" : "tetanus and diphtheria toxoids, not adsorbed, for adult use" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "tetanus and diphtheria toxoids, not adsorbed, for adult use", - "code" : "138", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "133", - "display" : "pneumococcal conjugate vaccine, 13 valent" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "pneumococcal conjugate vaccine, 13 valent", - "code" : "133", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "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" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "141", - "display" : "Influenza, seasonal, injectable" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Influenza, seasonal, injectable", - "code" : "141", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "20", - "display" : "diphtheria, tetanus toxoids and acellular pertussis vaccine" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "diphtheria, tetanus toxoids and acellular pertussis vaccine", - "code" : "20", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "138", - "display" : "tetanus and diphtheria toxoids, not adsorbed, for adult use" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "tetanus and diphtheria toxoids, not adsorbed, for adult use", - "code" : "138", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "133", - "display" : "pneumococcal conjugate vaccine, 13 valent" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "pneumococcal conjugate vaccine, 13 valent", - "code" : "133", - "system" : "http://hl7.org/fhir/sid/cvx", - "version" : "20210406", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "208" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "208" -}, "url": "http://hl7.org/fhir/uv/shc-vaccination/ValueSet/vaccine-cvx", "version": "0.6.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" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "209" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "209", - "severity" : "error", - "error" : "Unknown code '209' in the CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20210406'", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '209' in the CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20210406'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "209" -}, "url": "http://hl7.org/fhir/uv/shc-vaccination/ValueSet/vaccine-cvx", "version": "0.6.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: { - "code" : "209", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '209' in the CodeSystem 'http://hl7.org/fhir/sid/cvx' version '20210406'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "210" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "207" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "210" -}, "url": "http://hl7.org/fhir/uv/shc-vaccination/ValueSet/vaccine-cvx", "version": "0.6.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" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/cvx", - "code" : "207" -}, "url": "http://hl7.org/fhir/uv/shc-vaccination/ValueSet/vaccine-cvx", "version": "0.6.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" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___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 deleted file mode 100644 index d83d4a379..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___acme.org_obs-codes.cache +++ /dev/null @@ -1,81 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/obs-codes", - "code" : "obs1" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "obs1", - "severity" : "error", - "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://tx-dev.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" - }], - "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/obs-codes' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/obs-codes", - "code" : "obs2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "obs2", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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___example.org.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org.cache deleted file mode 100644 index 094cc41ab..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org", - "code" : "aabbcc" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "aabbcc", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://example.org' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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' 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 deleted file mode 100644 index 7d6b77a22..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_fhir_animal-breed.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/fhir/animal-breed", - "code" : "gret", - "display" : "Golden Retriever" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "gret", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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 deleted file mode 100644 index e4e228425..000000000 --- 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 +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/fhir/us/spl/CodeSystem/codesystem-organizationTypes", - "code" : "USAgent" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index 9a3a18713..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_mySystem.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/mySystem", - "code" : "1an" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "1an", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://example.org/mySystem' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index db2677427..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile2.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/profile2", - "code" : "code2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "code2", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://example.org/profile2' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 430ef14aa..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___example.org_profile3.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/profile3", - "code" : "code3" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "code3", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://example.org/profile3' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 5bf0d410b..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ask.cache +++ /dev/null @@ -1,247 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ask", - "code" : "05482", - "display" : "Blutgerinnungsfaktor II" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "05482", - "severity" : "error", - "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://tx-dev.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" - }], - "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.de/CodeSystem/ask' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ask", - "code" : "06225", - "display" : "Blutgerinnungsfaktor VII" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "06225", - "severity" : "error", - "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://tx-dev.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" - }], - "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.de/CodeSystem/ask' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ask", - "code" : "1234", - "display" : "Protein S (human)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "1234", - "severity" : "error", - "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://tx-dev.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" - }], - "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.de/CodeSystem/ask' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ask", - "code" : "10669", - "display" : "Plasmaprotein C vom Menschen" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "10669", - "severity" : "error", - "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://tx-dev.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" - }], - "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.de/CodeSystem/ask' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ask", - "code" : "03800", - "display" : "Blutgerinnungsfaktor IX vom Menschen" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "03800", - "severity" : "error", - "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://tx-dev.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" - }], - "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.de/CodeSystem/ask' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ask", - "code" : "06226", - "display" : "Blutgerinnungsfaktor X" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "06226", - "severity" : "error", - "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://tx-dev.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" - }], - "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.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_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 deleted file mode 100644 index 49289621f..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.de_CodeSystem_ifa_pzn.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.de/CodeSystem/ifa/pzn", - "code" : "07115663", - "display" : "Octaplex 500 Pulver und Lösungsmittel zur Herstellung einer i.v. Infusionslösung" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "07115663", - "severity" : "error", - "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://tx-dev.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" - }], - "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.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 deleted file mode 100644 index f1c239d8a..000000000 --- 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 +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.mimic.mit.edu/CodeSystem/admission-type", - "code" : "URGENT" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 0ffb92e73..000000000 --- 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 +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.mimic.mit.edu/CodeSystem/admit-source", - "display" : "EMERGENCY ROOM" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index e4676c09b..000000000 --- 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 +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.mimic.mit.edu/CodeSystem/discharge-dispostion", - "display" : "HOME" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "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", - "server" : "http://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index e00a670a3..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fhir.whatever.com_codes_AllergyClinicalStatus.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.whatever.com/codes/AllergyClinicalStatus", - "code" : "active", - "display" : "Active" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "active", - "severity" : "error", - "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://tx-dev.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" - }], - "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.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 deleted file mode 100644 index ef7462f68..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCInctrMedRoute.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCInctrMedRoute", - "code" : "Sub Q" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 18d61eb55..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCMedTiming.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCMedTiming", - "code" : "Pre Dialysis" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index eb17dfd25..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCModality.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCModality", - "code" : "IHD", - "display" : "IHD" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "IHD", - "severity" : "error", - "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://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 56578e5ed..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderAbbreviation.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderAbbreviation", - "code" : "IMed_Mircera" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 0ba7cd35a..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSchedule.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderSchedule", - "code" : "Every 4 weeks" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 9cb5c2aa9..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderSubType.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderSubType", - "code" : "Anemia", - "display" : "Anemia" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "Anemia", - "severity" : "error", - "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://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 233eb2759..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___fkcfhir.org_fhir_CodeSystem_FMCOrderType.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fkcfhir.org/fhir/CodeSystem/FMCOrderType", - "code" : "Treatment Medications", - "display" : "Treatment Medications" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 027a70745..000000000 --- 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 +++ /dev/null @@ -1,124 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "code" : "C73330", - "display" : "Foreign Facility's United States Agent" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "C73330", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "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://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "code" : "C43360", - "display" : "manufacture" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "C43360", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "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://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl' could not be found, so the code cannot be validated" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "code" : "C106643", - "display" : "Manufactures human prescription drug products" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "C106643", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl", - "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://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl' 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___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 deleted file mode 100644 index 778402aa2..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___nucc.org_provider-taxonomy.cache +++ /dev/null @@ -1,66 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://nucc.org/provider-taxonomy", - "code" : "208D00000X", - "display" : "General Practice" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "General Practice Physician", - "code" : "208D00000X", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name 'General Practice' for http://nucc.org/provider-taxonomy#208D00000X - should be 'General Practice Physician' (for the language(s) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://nucc.org/provider-taxonomy", - "code" : "208D00000X" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-provider-role--0", "version": "4.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "General Practice Physician", - "code" : "208D00000X", - "system" : "http://nucc.org/provider-taxonomy", - "version" : "22.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___something_something.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___something_something.cache deleted file mode 100644 index ef48db5e6..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___something_something.cache +++ /dev/null @@ -1,21 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://something/something", - "code" : "something" -}, "valueSet" :null, "langs":"en, en-US", "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: { - "severity" : "error", - "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 deleted file mode 100644 index 86a51fcf1..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___standardterms.edqm.eu.cache +++ /dev/null @@ -1,25 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://standardterms.edqm.eu", - "code" : "20049000", - "display" : "Nasal use" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Nasal use", - "code" : "20049000", - "system" : "http://standardterms.edqm.eu", - "version" : "5 March 2019", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___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 deleted file mode 100644 index ad20a6640..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-product-name", - "code" : "alecensa", - "display" : "Alecensa" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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-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 deleted file mode 100644 index 47d8b1b35..000000000 --- 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 +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.gene.com/fhir/usix/uapi/CodeSystem/uapi-sr-type", - "code" : "biPA" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index 7c1c6f4e6..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___terminology.hl7.org_ValueSet_v3-ServiceDeliveryLocationRoleType.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.hl7.org/ValueSet/v3-ServiceDeliveryLocationRoleType", - "code" : "COAG" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "COAG", - "severity" : "error", - "error" : "The Coding references a value set, not a code system ('http://terminology.hl7.org/ValueSet/v3-ServiceDeliveryLocationRoleType')", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-data" - }], - "text" : "The Coding references a value set, not a code system ('http://terminology.hl7.org/ValueSet/v3-ServiceDeliveryLocationRoleType')" - }, - "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___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 deleted file mode 100644 index 9d4321cf7..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___varnomen.hgvs.org.cache +++ /dev/null @@ -1,167 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://varnomen.hgvs.org", - "code" : "NC_000019.8:g.1171707G>A" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "NC_000019.8:g.1171707G>A", - "code" : "NC_000019.8:g.1171707G>A", - "system" : "http://varnomen.hgvs.org", - "version" : "2.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://varnomen.hgvs.org", - "code" : "NC_000019.8:g.1171707G>A" -}, "url": "http://hl7.org/fhir/us/mcode/ValueSet/mcode-hgvs-vs--0", "version": "1.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "NC_000019.8:g.1171707G>A", - "code" : "NC_000019.8:g.1171707G>A", - "system" : "http://varnomen.hgvs.org", - "version" : "2.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://varnomen.hgvs.org", - "code" : "NC_000019.8:g.1171707G>A" -}, "url": "http://hl7.org/fhir/us/mcode/ValueSet/mcode-hgvs-vs", "version": "1.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" : "NC_000019.8:g.1171707G>A", - "code" : "NC_000019.8:g.1171707G>A", - "system" : "http://varnomen.hgvs.org", - "version" : "2.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://varnomen.hgvs.org", - "code" : "NC_000019.8:g.1171707G>AXXX" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "NC_000019.8:g.1171707G>AXXX", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code 'NC_000019.8:g.1171707G>AXXX' in the CodeSystem 'http://varnomen.hgvs.org' version '2.0'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://varnomen.hgvs.org", - "code" : "NC_000019.8:g.1171707G>AXXX" -}, "url": "http://hl7.org/fhir/us/mcode/ValueSet/mcode-hgvs-vs--0", "version": "1.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "NC_000019.8:g.1171707G>AXXX", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code 'NC_000019.8:g.1171707G>AXXX' in the CodeSystem 'http://varnomen.hgvs.org' version '2.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index d4cffc754..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ada.org_snodent.cache +++ /dev/null @@ -1,25 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.ada.org/snodent", - "code" : "210965D", - "display" : "Anterior part of lower alveolar ridge" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Anterior part of lower alveolar ridge", - "code" : "210965D", - "system" : "http://www.ada.org/snodent", - "version" : "2.1.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.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 deleted file mode 100644 index d169bb757..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ama-assn.org_go_cpt.cache +++ /dev/null @@ -1,24 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.ama-assn.org/go/cpt", - "code" : "99234" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.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 deleted file mode 100644 index e80e905f7..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.genenames.org_geneId.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.genenames.org/geneId", - "code" : "HGNC:11389" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "HGNC:11389", - "severity" : "error", - "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://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 6133c85c4..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/http___www.ncbi.nlm.nih.gov_clinvar.cache +++ /dev/null @@ -1,98 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.ncbi.nlm.nih.gov/clinvar", - "code" : "619728" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.ncbi.nlm.nih.gov/clinvar", - "code" : "619728" -}, "url": "http://hl7.org/fhir/us/mcode/ValueSet/mcode-clinvar-vs--0", "version": "1.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://www.ncbi.nlm.nih.gov/clinvar' 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" : "warning", - "code" : "not-found", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "vs-invalid" - }], - "text" : "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" - }, - "location" : ["Coding"], - "expression" : ["Coding"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 3da13ed88..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://fhir.hl7.org.uk/CodeSystem/UKCore-SDSJobRoleName", - "code" : "R8000", - "display" : "Clinical Practitioner Access Role" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 1880b5ba8..000000000 --- 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 +++ /dev/null @@ -1,73 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS", - "code" : "TURVAKIELTO" -}, "url": "http://hl7.org/fhir/ValueSet/security-labels", "version": "4.0.1", "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: { - "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'", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "severity" : "information", - "code" : "business-rule", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "status-check" - }], - "text" : "Reference to retired ValueSet http://terminology.hl7.org/ValueSet/v3-ActUSPrivacyLaw|2.0.0" - } - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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://hl7.fi/fhir/finnish-base-profiles/CodeSystem/SecurityLabelCS' 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 '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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index a3ab35ca6..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup", - "code" : "A", - "display" : "Blood group A" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 4753e45e3..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/https___mednet.swiss_fhir_productNumber.cache +++ /dev/null @@ -1,81 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://mednet.swiss/fhir/productNumber", - "code" : "3367001" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "3367001", - "severity" : "error", - "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://tx-dev.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" - }], - "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" : { - "system" : "https://mednet.swiss/fhir/productNumber", - "code" : "6698301" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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: { - "code" : "6698301", - "severity" : "error", - "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://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index 8d8b13725..000000000 --- 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 +++ /dev/null @@ -1,47 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", - "code" : "COVAST" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "COVID-19 Vaccine AstraZeneca", - "code" : "COVAST", - "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", - "version" : "20210222", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats", - "code" : "COVAST" -}, "valueSet" :null, "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10-cm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10-cm.cache deleted file mode 100644 index 426e8ba38..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10-cm.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "code" : "E10.3211+TT1.2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "E10.3211+TT1.2", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code 'E10.3211+TT1.2' in the CodeSystem 'http://hl7.org/fhir/sid/icd-10-cm' version '2021'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 054b81c3e..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-10.cache +++ /dev/null @@ -1,97 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/icd-10", - "code" : "C18.0", - "display" : "Malignant neoplasm: Caecum" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Caecum", - "code" : "C18.0", - "system" : "http://hl7.org/fhir/sid/icd-10", - "version" : "2019-covid-expanded", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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/sid/icd-10|2019-covid-expanded" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/icd-10", - "code" : "C12", - "display" : "Malignant neoplasm of pyriform sinus" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Malignant neoplasm of piriform sinus", - "code" : "C12", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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/sid/icd-10|2019-covid-expanded" - } - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index c1ddda58c..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/icd-9-cm.cache +++ /dev/null @@ -1,24 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/sid/icd-9-cm", - "code" : "99.00" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/iso3166.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/iso3166.cache deleted file mode 100644 index 2bd1f6c17..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/iso3166.cache +++ /dev/null @@ -1,187 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NO", - "display" : "Norway" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Norway", - "code" : "NO", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "CHE" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Switzerland", - "code" : "CHE", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "CHE" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Switzerland", - "code" : "CHE", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US", - "display" : "United States of America" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "NO" -}, "valueSet" :null, "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "FIN" -}, "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" : "Finland", - "code" : "FIN", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:3166", - "code" : "US" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "United States of America", - "code" : "US", - "system" : "urn:iso:std:iso:3166", - "version" : "2018", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/lang.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/lang.cache deleted file mode 100644 index 2e43440ab..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/lang.cache +++ /dev/null @@ -1,534 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH", - "display" : "German (Region=Switzerland)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "German (Region=Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH", - "display" : "German (Region=Switzerland)" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "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" : "German (Switzerland)", - "code" : "de-CH", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr", - "display" : "French" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr", - "display" : "French" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "en", - "display" : "English" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "en" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "en", - "display" : "English" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "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" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH", - "display" : "German (Region=Switzerland)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "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" : "German (Region=Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "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" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH", - "display" : "German (Region=Switzerland)" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"", "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" : "German (Switzerland)", - "code" : "de-CH", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "warning", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "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) '--')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr", - "display" : "French" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr", - "display" : "French" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "langs":"", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH", - "display" : "German (Region=Switzerland)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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" : "German (Region=Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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" : "German (Switzerland)", - "code" : "de-CH", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "de-CH", - "display" : "German (Region=Switzerland)" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "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" : "German (Switzerland)", - "code" : "de-CH", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "warning", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "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')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr", - "display" : "French" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr" -}, "url": "http://hl7.org/fhir/ValueSet/languages--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:ietf:bcp:47", - "code" : "fr", - "display" : "French" -}, "url": "http://hl7.org/fhir/ValueSet/languages", "version": "4.0.1", "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" : "French", - "code" : "fr", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache deleted file mode 100644 index 209bfe51e..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/loinc.cache +++ /dev/null @@ -1,6767 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59408-5", - "display" : "O2 % BldC Oximetry" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood by Pulse oximetry", - "code" : "59408-5", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name 'O2 % BldC Oximetry' for http://loinc.org#59408-5 - 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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "2708-6", - "display" : "Oxygen saturation in Arterial blood" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood", - "code" : "2708-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59408-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood by Pulse oximetry", - "code" : "59408-5", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#59408-5' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "2708-6" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood", - "code" : "2708-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3150-0", - "display" : "Inhaled Oxygen Concentration" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen concentration", - "code" : "3150-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3150-0" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen concentration", - "code" : "3150-0", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#3150-0' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3151-8", - "display" : "Flow Rate" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen flow rate", - "code" : "3151-8", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name 'Flow Rate' for http://loinc.org#3151-8 - 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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3151-8" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen flow rate", - "code" : "3151-8", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#3151-8' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59408-5" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs--0", "version": "4.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood by Pulse oximetry", - "code" : "59408-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "2708-6" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs--0", "version": "4.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood", - "code" : "2708-6", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#2708-6' was not found in the value set 'http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs--0|4.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3150-0" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs--0", "version": "4.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen concentration", - "code" : "3150-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3150-0", - "display" : "Inhaled Oxygen Concentration" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs", "version": "4.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3151-8" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-vital-signs--0", "version": "4.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen flow rate", - "code" : "3151-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "5792-7" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "url" : "http://hl7.org/fhir/ValueSet/birthDate" -}, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"true", "displayWarningMode":"false", "versionFlexible":"true", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "severity" : "error", - "error" : "Error from http://tx-dev.fhir.org/r4: Unable to resolve value set \"http://hl7.org/fhir/ValueSet/birthDate\"", - "class" : "SERVER_ERROR", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "5792-7" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Glucose [Mass/volume] in Urine by Test strip", - "code" : "5792-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11502-2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Laboratory report", - "code" : "11502-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11502-2" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Laboratory report", - "code" : "11502-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11502-2" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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 report", - "code" : "11502-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "76437-3", - "display" : "Primary insurance" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary insurance", - "code" : "76437-3", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "30954-2", - "display" : "Relevant diagnostic tests/laboratory data Narrative" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Relevant diagnostic tests/laboratory data Narrative", - "code" : "30954-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8716-3", - "display" : "Vital signs" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Vital signs", - "code" : "8716-3", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29762-2", - "display" : "Social history Narrative" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Social history Narrative", - "code" : "29762-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10162-6", - "display" : "History of pregnancies Narrative" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of pregnancies Narrative", - "code" : "10162-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "51899-3", - "display" : "Details Document" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Details Document", - "code" : "51899-3", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "46418-0", - "display" : "INR in Capillary blood by Coagulation assay" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "INR in Capillary blood by Coagulation assay", - "code" : "46418-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "77140-2", - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood", - "code" : "77140-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "4535-1", - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method", - "code" : "4535-1", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "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":"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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5", - "display" : "Body mass index (BMI) [Ratio]" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body mass index (BMI) [Ratio]", - "code" : "39156-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body mass index (BMI) [Ratio]", - "code" : "39156-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5", - "display" : "Body mass index (BMI) [Ratio]" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "883-9", - "display" : "ABO group [Type] in Blood" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "ABO group [Type] in Blood", - "code" : "883-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "57024-2", - "display" : "Health Quality Measure Document" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Health Quality Measure document", - "code" : "57024-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59284-0", - "display" : "Patient Authorization Signature" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Consent Document", - "code" : "59284-0", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59284-0" -}, "url": "http://hl7.org/fhir/ValueSet/consent-category--2", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient Consent", - "code" : "59284-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "valueSet" :null, "langs":"de-CH", "useServer":"true", "useClient":"false", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"de-CH", "useServer":"true", "useClient":"false", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "langs":"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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "76437-3", - "display" : "Primary insurance" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "30954-2", - "display" : "Relevant diagnostic tests/laboratory data Narrative" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8716-3", - "display" : "Vital signs" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29762-2", - "display" : "Social history Narrative" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10162-6", - "display" : "History of pregnancies Narrative" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "51899-3", - "display" : "Details Document" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "valueSet" :null, "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"en, de-CH", "useServer":"true", "useClient":"false", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "46418-0", - "display" : "INR in Capillary blood by Coagulation assay" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "46418-0" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "46418-0", - "display" : "INR in Capillary blood by Coagulation assay" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory", "version": "0.5.0", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "77140-2", - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "77140-2" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "77140-2", - "display" : "Creatinine [Moles/volume] in Serum, Plasma or Blood" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory", "version": "0.5.0", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "4535-1", - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "4535-1" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "4535-1", - "display" : "Cytotoxic percent reactive Ab [Presence] in Serum by Quick method" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory", "version": "0.5.0", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5", - "display" : "Body mass index (BMI) [Ratio]" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5", - "display" : "Body mass index (BMI) [Ratio]" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "883-9", - "display" : "ABO group [Type] in Blood" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "883-9" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#883-9' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "46418-0" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#46418-0' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "77140-2" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#77140-2' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "4535-1" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#4535-1' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#29463-7' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#8302-2' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "39156-5" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#39156-5' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#85354-9' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "883-9" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#883-9' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-laboratory--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient Summary Document" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient Summary Document" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "51726-8", - "display" : "NDC labeler code request" -}, "valueSet" :null, "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" : "FDA product label NDC labeler code request", - "code" : "51726-8", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "80764-4", - "display" : "Pain medicine Plan of care note" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Pain medicine Plan of care note", - "code" : "80764-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "current", - "code" : "56445-0", - "display" : "Medication summary Doc" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "56445-0" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "current", - "code" : "56445-0", - "display" : "Medication summary Doc" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "current", - "code" : "48765-2", - "display" : "Allergies and adverse reactions" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "34133-9", - "display" : "Summary of episode note" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Summary of episode note", - "code" : "34133-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "34133-9" -}, "url": "http://hl7.org/fhir/ValueSet/c80-doc-typecodes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Summary of episode note", - "code" : "34133-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "34133-9", - "display" : "Summary of episode note" -}, "url": "http://hl7.org/fhir/ValueSet/c80-doc-typecodes", "version": "4.0.1", "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 of episode note", - "code" : "34133-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "34133-9" -}, "url": "http://hl7.org/fhir/us/core/ValueSet/us-core-documentreference-type--1", "version": "3.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Summary of episode note", - "code" : "34133-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "57852-6", - "display" : "Problem list Narrative - Reported" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Problem list Narrative - Reported", - "code" : "57852-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "60591-5", - "display" : "Patient summary Document" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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" : "Patient summary Document", - "code" : "60591-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "48765-2", - "display" : "Allergies and adverse reactions Document" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11450-4", - "display" : "Problem list - Reported" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Problem list - Reported", - "code" : "11450-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10160-0", - "display" : "History of Medication use Narrative" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Medication use Narrative", - "code" : "10160-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "11369-6", - "display" : "History of Immunization Narrative" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Immunization Narrative", - "code" : "11369-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "47519-4", - "display" : "History of Procedures Document" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of Procedures Document", - "code" : "47519-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "30954-2", - "display" : "Relevant diagnostic tests/laboratory data Narrative" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Relevant diagnostic tests/laboratory data Narrative", - "code" : "30954-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8716-3", - "display" : "Vital signs" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Vital signs", - "code" : "8716-3", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29762-2", - "display" : "Social history Narrative" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Social history Narrative", - "code" : "29762-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "47420-5", - "display" : "Functional status assessment note" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Functional status assessment note", - "code" : "47420-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5", - "display" : "Body temperature" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5", - "display" : "Body temperature" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "9279-1", - "display" : "Respiratory rate" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Respiratory rate", - "code" : "9279-1", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "9279-1" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Respiratory rate", - "code" : "9279-1", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "9279-1", - "display" : "Respiratory rate" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body height", - "code" : "8302-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8302-2", - "display" : "Body height" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body weight" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "72166-2", - "display" : "Tobacco smoking status" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Tobacco smoking status", - "code" : "72166-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA15920-4", - "display" : "Former smoker" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Former smoker", - "code" : "LA15920-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5", - "display" : "Body temperature" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5", - "display" : "Body temperature" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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 temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "9279-1", - "display" : "Respiratory rate" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Respiratory rate", - "code" : "9279-1", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "9279-1" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Respiratory rate", - "code" : "9279-1", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "9279-1", - "display" : "Respiratory rate" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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" : "Respiratory rate", - "code" : "9279-1", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "72166-2", - "display" : "Tobacco smoking status" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Tobacco smoking status", - "code" : "72166-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA15920-4", - "display" : "Former smoker" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Former smoker", - "code" : "LA15920-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA15920-4" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/current-smoking-status-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Former smoker", - "code" : "LA15920-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA15920-4", - "display" : "Former smoker" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/current-smoking-status-uv-ips", "version": "1.1.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" : "Former smoker", - "code" : "LA15920-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "18842-5", - "display" : "Discharge Summary" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Discharge summary", - "code" : "18842-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "18842-5" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Discharge summary", - "code" : "18842-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "18842-5", - "display" : "Discharge Summary" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "version": "4.0.1", "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 summary", - "code" : "18842-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29299-5" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Reason for visit Narrative", - "code" : "29299-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "�g��", - "display" : "8302-2" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "�g��", - "severity" : "error", - "error" : "Unknown code '�g��' in the CodeSystem 'http://loinc.org' version '2.74'", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '�g��' in the CodeSystem 'http://loinc.org' version '2.74'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Heart rate", - "code" : "8867-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8867-4", - "display" : "Heart rate" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "883-9", - "display" : "ABO group [Type] in Blood" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "ABO group [Type] in Blood", - "code" : "883-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10331-7", - "display" : "Rh [Type] in Blood" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Rh [Type] in Blood", - "code" : "10331-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "18684-1", - "display" : "����" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "First Blood pressure Set", - "code" : "18684-1", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '����' for http://loinc.org#18684-1 - should be 'First Blood pressure Set' (for the language(s) 'en')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "���k������" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '���k������' for http://loinc.org#8480-6 - should be one of 2 choices: 'Systolic blood pressure' or 'BP sys' (for the language(s) 'en')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "�g��������" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '�g��������' for http://loinc.org#8462-4 - should be one of 2 choices: 'Diastolic blood pressure' or 'BP dias' (for the language(s) 'en')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "718-7", - "display" : "Hemoglobin [Mass/volume] in Blood" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Hemoglobin [Mass/volume] in Blood", - "code" : "718-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "38483-4", - "display" : "Creat Bld-mCnc" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Creatinine [Mass/volume] in Blood", - "code" : "38483-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "2093-3", - "display" : "Cholesterol [Mass/volume] in Serum or Plasma" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cholesterol [Mass/volume] in Serum or Plasma", - "code" : "2093-3", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "44261-6", - "display" : "Patient Health Questionnaire 9 item (PHQ-9) total score [Reported]" -}, "valueSet" :null, "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" : "Patient Health Questionnaire 9 item (PHQ-9) total score [Reported]", - "code" : "44261-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "2.71", - "code" : "29463-7", - "display" : "Body weight" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "2.71", - "code" : "29463-7", - "display" : "Body weight" -}, "url": "http://fhir.de/ValueSet/VitalSignDE_Body_Weight_Loinc", "version": "0.9.13", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59408-5", - "display" : "Oxygen saturation in Arterial blood by Pulse oximetry" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oxygen saturation in Arterial blood by Pulse oximetry", - "code" : "59408-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3151-8", - "display" : "Inhaled oxygen flow rate" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen flow rate", - "code" : "3151-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "2708-6", - "display" : "Oxygen saturation in Arterial blood" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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" : "Oxygen saturation in Arterial blood", - "code" : "2708-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "59408-5", - "display" : "Oxygen saturation in Arterial blood by Pulse oximetry" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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" : "Oxygen saturation in Arterial blood by Pulse oximetry", - "code" : "59408-5", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "69548-6" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Genetic variant assessment", - "code" : "69548-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA9633-4" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Present", - "code" : "LA9633-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA26398-0" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Sequencing", - "code" : "LA26398-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "48018-6" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Gene studied [ID]", - "code" : "48018-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "81252-9" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Discrete genetic variant", - "code" : "81252-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "81290-9" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Genomic DNA change (gHGVS)", - "code" : "81290-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "48002-0" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Genomic source class [Type]", - "code" : "48002-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6684-0" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Somatic", - "code" : "LA6684-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "69548-6" -}, "url": "http://hl7.org/fhir/ValueSet/observation-codes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Genetic variant assessment", - "code" : "69548-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "69548-6" -}, "url": "http://hl7.org/fhir/ValueSet/observation-codes", "version": "4.0.1", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA9633-4" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "filter" : [{ - "property" : "LIST", - "op" : "=", - "value" : "LL1971-2" - }] - }] - } -}, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Present", - "code" : "LA9633-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA9633-4" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "filter" : [{ - "property" : "LIST", - "op" : "=", - "value" : "LL1971-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" : "Present", - "code" : "LA9633-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA26398-0" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "filter" : [{ - "property" : "LIST", - "op" : "=", - "value" : "LL4048-6" - }] - }] - } -}, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Sequencing", - "code" : "LA26398-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA26398-0" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "filter" : [{ - "property" : "LIST", - "op" : "=", - "value" : "LL4048-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" : "Sequencing", - "code" : "LA26398-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6684-0" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "filter" : [{ - "property" : "LIST", - "op" : "=", - "value" : "LL378-1" - }] - }] - } -}, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Somatic", - "code" : "LA6684-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA6684-0" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "filter" : [{ - "property" : "LIST", - "op" : "=", - "value" : "LL378-1" - }] - }] - } -}, "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Body temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8310-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult", "version": "4.0.1", "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 temperature", - "code" : "8310-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "96607-7", - "display" : "Blood pressure panel mean systolic and mean diastolic" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel mean systolic and mean diastolic", - "code" : "96607-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "96608-5", - "display" : "Systolic blood pressure mean" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure mean", - "code" : "96608-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "96609-3", - "display" : "Diastolic blood pressure mean" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure mean", - "code" : "96609-3", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "96607-7" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel mean systolic and mean diastolic", - "code" : "96607-7", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#96607-7' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "96608-5" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure mean", - "code" : "96608-5", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#96608-5' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "96609-3" -}, "url": "http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure mean", - "code" : "96609-3", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#96609-3' was not found in the value set 'http://hl7.org/fhir/ValueSet/observation-vitalsignresult--0|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20271-5", - "display" : "Medications" -}, "valueSet" :null, "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", - "code" : "LA20271-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20278-0", - "display" : "Prescription or over-the-counter (including herbal supplements)" -}, "valueSet" :null, "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" : "Prescription or over-the-counter (including herbal supplements)", - "code" : "LA20278-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20275-6", - "display" : "Incorrect action (process failure or error) (e.g., such as administering overdose or incorrect medication)" -}, "valueSet" :null, "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" : "Incorrect action (process failure or error) (e.g., such as administering overdose or incorrect medication)", - "code" : "LA20275-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20276-4", - "display" : "Incorrect patient" -}, "valueSet" :null, "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" : "Incorrect patient", - "code" : "LA20276-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20296-2", - "display" : "Administering" -}, "valueSet" :null, "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" : "Administering", - "code" : "LA20296-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA32-8", - "display" : "No" -}, "valueSet" :null, "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" : "No", - "code" : "LA32-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA33-6", - "display" : "Yes" -}, "valueSet" :null, "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" : "Yes", - "code" : "LA33-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20271-5", - "display" : "Medications" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 1 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "a." - }], - "code" : "LA20271-5", - "display" : "Medications" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 2 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "b." - }], - "code" : "LA20335-8", - "display" : "Biological products" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 3 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "c." - }], - "code" : "LA20336-6", - "display" : "Nutritional products" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 4 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "d." - }], - "code" : "LA20337-4", - "display" : "Expressed human breast milk" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 5 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "e." - }], - "code" : "LA20338-2", - "display" : "Medical gases (e.g., oxygen, nitrogen, nitrous oxide)" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 6 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "f." - }], - "code" : "LA20339-0", - "display" : "Contrast media" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 7 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "g." - }], - "code" : "LA20340-8", - "display" : "Radiopharmaceuticals" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 8 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "h." - }], - "code" : "LA20341-6", - "display" : "Patient food (not suspected in drug-food interactions)" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 9 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "i." - }], - "code" : "LA20342-4", - "display" : "Drug-drug, drug-food, or adverse drug reaction as a result of a prescription and/or administration of a drug and/or food prior to admission" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 10 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "j." - }], - "code" : "LA20343-2", - "display" : "Other substance: PLEASE SPECIFY" - }] - }] - } -}, "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" : "Medications", - "code" : "LA20271-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20278-0", - "display" : "Prescription or over-the-counter (including herbal supplements)" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 1 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "a." - }], - "code" : "LA20278-0", - "display" : "Prescription or over-the-counter (including herbal supplements)" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 2 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "b." - }], - "code" : "LA20298-8", - "display" : "Compounded preparations" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 3 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "c." - }], - "code" : "LA20299-6", - "display" : "Investigational drugs" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder", - "valueInteger" : 4 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/valueset-label", - "valueString" : "d." - }], - "code" : "LA4489-6", - "display" : "Unknown" - }] - }] - } -}, "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" : "Prescription or over-the-counter (including herbal supplements)", - "code" : "LA20278-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20275-6", - "display" : "Incorrect action (process failure or error) (e.g., such as administering overdose or incorrect medication)" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA20275-6", - "display" : "Incorrect action (process failure or error) (e.g., such as administering overdose or incorrect medication)", - "_display" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/rendering-xhtml", - "valueString" : "Incorrect action (process failure or error) (e.g., such as administering overdose or incorrect medication)" - }] - } - }, - { - "code" : "LA20314-3", - "display" : "Unsafe condition", - "_display" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/rendering-style", - "valueString" : "color:green" - }] - } - }, - { - "code" : "LA20315-0", - "display" : "Adverse reaction in patient to the administered substance without any apparent incorrect action" - }, - { - "code" : "LA4489-6", - "display" : "Unknown" - }] - }] - } -}, "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" : "Incorrect action (process failure or error) (e.g., such as administering overdose or incorrect medication)", - "code" : "LA20275-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20276-4", - "display" : "Incorrect patient" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA20276-4", - "display" : "Incorrect patient" - }, - { - "code" : "LA20302-8", - "display" : "Incorrect medication/substance" - }, - { - "code" : "LA20303-6", - "display" : "Incorrect dose(s)" - }, - { - "code" : "LA20304-4", - "display" : "Incorrect route of administration" - }, - { - "code" : "LA20305-1", - "display" : "Incorrect timing" - }, - { - "code" : "LA20306-9", - "display" : "Incorrect rate" - }, - { - "code" : "LA20307-7", - "display" : "Incorrect duration of administration or course of therapy" - }, - { - "code" : "LA20308-5", - "display" : "Incorrect dosage form (e.g., sustained release instead of immediate release)" - }, - { - "code" : "LA20309-3", - "display" : "Incorrect strength or concentration" - }, - { - "code" : "LA20310-1", - "display" : "Incorrect preparation, including inappropriate cutting of tablets, error in compounding, mixing, etc." - }, - { - "code" : "LA20311-9", - "display" : "Expired or deteriorated medication/substance" - }, - { - "code" : "LA20312-7", - "display" : "Medication/substance that is known to be an allergen to the patient" - }, - { - "code" : "LA20345-7", - "display" : "Medication/substance that is known to be contraindicated for the patient" - }, - { - "code" : "LA20313-5", - "display" : "Incorrect patient/family action (e.g., self-administration error)" - }, - { - "code" : "LA20318-4", - "display" : "Other: PLEASE SPECIFY" - }] - }] - } -}, "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" : "Incorrect patient", - "code" : "LA20276-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA20296-2", - "display" : "Administering" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA20279-8", - "display" : "Purchasing" - }, - { - "code" : "LA20291-3", - "display" : "Storing" - }, - { - "code" : "LA20292-1", - "display" : "Prescribing/ordering" - }, - { - "code" : "LA20293-9", - "display" : "Transcribing" - }, - { - "code" : "LA20294-7", - "display" : "Preparing" - }, - { - "code" : "LA20295-4", - "display" : "Dispensing" - }, - { - "code" : "LA20296-2", - "display" : "Administering" - }, - { - "code" : "LA20297-0", - "display" : "Monitoring" - }, - { - "code" : "LA4489-6", - "display" : "Unknown" - }, - { - "code" : "LA20318-4", - "display" : "Other: PLEASE SPECIFY" - }] - }] - } -}, "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" : "Administering", - "code" : "LA20296-2", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA32-8", - "display" : "No" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA33-6", - "display" : "Yes" - }, - { - "code" : "LA32-8", - "display" : "No" - }] - }] - } -}, "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" : "No", - "code" : "LA32-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA33-6", - "display" : "Yes" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA33-6", - "display" : "Yes" - }, - { - "code" : "LA32-8", - "display" : "No" - }] - }] - } -}, "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" : "LA33-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA33-6" -}, "valueSet" :null, "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" : "Yes", - "code" : "LA33-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA32-8" -}, "valueSet" :null, "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" : "No", - "code" : "LA32-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA33-6" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA33-6" - }, - { - "code" : "LA32-8" - }] - }] - } -}, "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" : "LA33-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA32-8" -}, "valueSet" :{ - "resourceType" : "ValueSet", - "compose" : { - "include" : [{ - "system" : "http://loinc.org", - "concept" : [{ - "code" : "LA33-6" - }, - { - "code" : "LA32-8" - }] - }] - } -}, "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" : "No", - "code" : "LA32-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "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]" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "LA28397-0", - "display" : "Often true" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Often true", - "code" : "LA28397-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "http://loinc.org", - "code" : "test" -}, "valueSet" :null, "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: { - "code" : "test", - "severity" : "error", - "error" : "Unknown code 'test' in the CodeSystem 'http://loinc.org' version '2.74'", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code 'test' in the CodeSystem 'http://loinc.org' version '2.74'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "10155-0" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "History of allergies, reported", - "code" : "10155-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-scoring.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-scoring.cache deleted file mode 100644 index e8ef050f6..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-scoring.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/measure-scoring", - "code" : "proportion" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "proportion", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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 deleted file mode 100644 index a620a3d7b..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/measure-type.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/measure-type", - "code" : "process" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "process", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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/rxnorm.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/rxnorm.cache deleted file mode 100644 index 1913dd6a9..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/rxnorm.cache +++ /dev/null @@ -1,120 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1000990", - "display" : "oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray", - "code" : "1000990", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1010603", - "display" : "Suboxone 2 MG / 0.5 MG Sublingual Film" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1298088", - "display" : "Flurazepam Hydrochloride 15 MG Oral Capsule" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "flurazepam hydrochloride 15 MG Oral Capsule", - "code" : "1298088", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1010600", - "display" : "buprenorphine 2 MG / naloxone 0.5 MG Sublingual Film" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "buprenorphine 2 MG / naloxone 0.5 MG Sublingual Film", - "code" : "1010600", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1591957" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Mircera", - "code" : "1591957", - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "version" : "??rx1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache deleted file mode 100644 index e1f76be75..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/snomed.cache +++ /dev/null @@ -1,7207 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "721912009", - "display" : "Medication summary document (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Medication summary document (record artifact)", - "code" : "721912009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "91935009", - "display" : "Allergy to peanuts" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergy to peanuts", - "code" : "91935009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "3718001", - "display" : "Cow's milk" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cow's milk", - "code" : "3718001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "255604002", - "display" : "Mild" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Mild", - "code" : "255604002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "255604002" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Mild", - "code" : "255604002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "255604002", - "display" : "Mild" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity", "version": "4.0.1", "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" : "Mild", - "code" : "255604002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "409002", - "display" : "Food allergy diet" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Food allergy diet", - "code" : "409002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "6736007", - "display" : "Moderate" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Midgrade", - "code" : "6736007", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "6736007" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Midgrade", - "code" : "6736007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "437009", - "display" : "Abnormal composition of urine" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Abnormal composition of urine", - "code" : "437009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "9846003", - "display" : "Right kidney" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Right kidney", - "code" : "9846003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "189009", - "display" : "Excision of lesion of artery" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Excision of lesion of artery", - "code" : "189009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "911003", - "display" : "Removal of subarachnoid-ureteral shunt" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Removal of subarachnoid-ureteral shunt", - "code" : "911003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "112144000", - "display" : "Blood group A (finding)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood group A", - "code" : "112144000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "80943009", - "display" : "Risk Factor" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Risk factor", - "code" : "80943009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "77176002", - "display" : "Smoker" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Smoker", - "code" : "77176002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "38341003", - "display" : "Hypertensive disorder, systemic arterial (disorder)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "High blood pressure", - "code" : "38341003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1419004", - "display" : "Injury of prostate without open wound into abdominal cavity" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Injury of prostate without open wound into abdominal cavity", - "code" : "1419004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "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" : "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "93880001", - "display" : "Primary malignant neoplasm of lung (disorder)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary malignant neoplasm of lung", - "code" : "93880001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "248986005", - "display" : "Estimated date of conception" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Estimated date of conception", - "code" : "248986005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "161714006", - "display" : "Estimated date of delivery" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Estimated date of delivery", - "code" : "161714006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "161713000", - "display" : "Last menstrual period - First day" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Last menstrual period -1st day", - "code" : "161713000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "445872007", - "display" : "Length of gestation at time of procedure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722446000", - "display" : "Allergy record (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergy record (record artifact)", - "code" : "722446000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371531000", - "display" : "Report of clinical encounter (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Encounter report", - "code" : "371531000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "4241000179101", - "display" : "Laboratory report (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Laboratory report (record artifact)", - "code" : "4241000179101", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "422735006", - "display" : "Summary clinical document (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Summary clinical document (record artifact)", - "code" : "422735006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "440545006", - "display" : "Prescription record" -}, "valueSet" :null, "langs":"en-IN", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Prescription record (record artifact)", - "code" : "440545006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "324252006", - "display" : "Azithromycin (as azithromycin dihydrate) 250 mg oral capsule" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Azithromycin (as azithromycin dihydrate) 250 mg oral capsule", - "code" : "324252006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "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" : "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "11840006", - "display" : "Traveller's Diarrhea (disorder)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Traveler's diarrhea", - "code" : "11840006", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "21522001", - "display" : "Abdominal pain" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Abdominal pain", - "code" : "21522001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "311504000", - "display" : "With or after food" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "With or after food", - "code" : "311504000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "26643006", - "display" : "Oral Route" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oral route", - "code" : "26643006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "421521009", - "display" : "Swallow" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Swallow - dosing instruction imperative (qualifier value)", - "code" : "421521009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "602001", - "display" : "Ross river fever" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Ross river fever", - "code" : "602001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "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" : "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "91935009", - "display" : "Allergy to peanuts" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "3718001", - "display" : "Cow's milk" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "255604002", - "display" : "Mild" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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" : "Mild", - "code" : "255604002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "255604002" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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" : "Mild", - "code" : "255604002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "255604002", - "display" : "Mild" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity", "version": "4.0.1", "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" : "Mild", - "code" : "255604002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "409002", - "display" : "Food allergy diet" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "6736007", - "display" : "Moderate" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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" : "Midgrade", - "code" : "6736007", - "system" : "http://snomed.info/sct", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "warning", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "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')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "6736007" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity--0", "version": "4.0.1", "langs":"en", "useServer":"true", "useClient":"false", "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" : "Midgrade", - "code" : "6736007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "6736007", - "display" : "Moderate" -}, "url": "http://hl7.org/fhir/ValueSet/condition-severity", "version": "4.0.1", "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" : "Midgrade", - "code" : "6736007", - "system" : "http://snomed.info/sct", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "warning", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "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')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "437009", - "display" : "Abnormal composition of urine" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "9846003", - "display" : "Right kidney" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "189009", - "display" : "Excision of lesion of artery" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "8821006", - "display" : "Peroneal artery" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "911003", - "display" : "Removal of subarachnoid-ureteral shunt" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "112144000", - "display" : "Blood group A (finding)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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 group A", - "code" : "112144000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "112144000" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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 group A (finding)", - "code" : "112144000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "80943009", - "display" : "Risk Factor" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "77176002", - "display" : "Smoker" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "38341003", - "display" : "Hypertensive disorder, systemic arterial (disorder)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1419004", - "display" : "Injury of prostate without open wound into abdominal cavity" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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" : "Injury of prostate without open wound into abdominal cavity", - "code" : "1419004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "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" : "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "93880001", - "display" : "Primary malignant neoplasm of lung (disorder)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "248986005", - "display" : "Estimated date of conception" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "161714006", - "display" : "Estimated date of delivery" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "161713000", - "display" : "Last menstrual period - First day" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "445872007", - "display" : "Length of gestation at time of procedure" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722446000", - "display" : "Allergy record (record artifact)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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 record (record artifact)", - "code" : "722446000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722446000" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.typeCode--0", "version": "2.0.4", "langs":"en", "useServer":"true", "useClient":"false", "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 record", - "code" : "722446000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371531000", - "display" : "Report of clinical encounter (record artifact)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371531000" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.classCode--0", "version": "2.0.4", "langs":"en", "useServer":"true", "useClient":"false", "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" : "Report of clinical encounter", - "code" : "371531000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "4241000179101", - "display" : "Laboratory report (record artifact)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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" : "Laboratory report (record artifact)", - "code" : "4241000179101", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "4241000179101" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.typeCode--0", "version": "2.0.4", "langs":"en", "useServer":"true", "useClient":"false", "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" : "Laboratory report", - "code" : "4241000179101", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "422735006", - "display" : "Summary clinical document (record artifact)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "422735006" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.classCode--0", "version": "2.0.4", "langs":"en", "useServer":"true", "useClient":"false", "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", - "code" : "422735006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "77176002" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#77176002' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "38341003" -}, "url": "https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0", "version": "0.5.0", "langs":"en", "useServer":"true", "useClient":"false", "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", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#38341003' was not found in the value set 'https://mednet.swiss/fhir/ValueSet/mni-obs-bloodGroup--0|0.5.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "78615007", - "display" : "with laterality" -}, "valueSet" :null, "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 laterality", - "code" : "78615007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "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" : "invalid", - "details" : { - "text" : "The code '78615007' is valid but is not active" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "246075003", - "display" : "causative agent" -}, "valueSet" :null, "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" : "Causative agent", - "code" : "246075003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "363702006", - "display" : "has focus" -}, "valueSet" :null, "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" : "Has focus", - "code" : "363702006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108", - "code" : "454281000124100", - "display" : "Assessment of risk for opioid abuse (procedure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Assessment of risk for opioid abuse (procedure)", - "code" : "454281000124100", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371532007", - "display" : "Progress note" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Progress report", - "code" : "371532007", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371525003", - "display" : "Clinical procedure report" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Clinical procedure report", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371532007" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.typeCode--0", "version": "2.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Progress report (record artifact)", - "code" : "371532007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371525003" -}, "url": "http://fhir.ch/ig/ch-epr-term/ValueSet/DocumentEntry.classCode--0", "version": "2.0.4", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Clinical procedure report (record artifact)", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/2011000195101", - "code" : "264358009" -}, "url": "http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType", "version": "0.1.0", "langs":"en, en-US", "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" : "General practice premises", - "code" : "264358009", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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|http://snomed.info/sct/2011000195101#264358009' was not found in the value set 'http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType|0.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/2011000195101", - "code" : "46224007" -}, "url": "http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType", "version": "0.1.0", "langs":"en, en-US", "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" : "Vaccination clinic", - "code" : "46224007", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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|http://snomed.info/sct/2011000195101#46224007' was not found in the value set 'http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType|0.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/2011000195101", - "code" : "264372000" -}, "url": "http://fhir.ch/ig/ch-ig/ValueSet/OrganizationType", "version": "0.1.0", "langs":"en, en-US", "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" : "Pharmacy (environment)", - "code" : "264372000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/2011000195101/version/20230607", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "419891008", - "display" : "Record artifact (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Record artifact (record artifact)", - "code" : "419891008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "371525003", - "display" : "Clinical procedure report (record artifact)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Clinical procedure report", - "code" : "371525003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "17621005", - "display" : "Normal (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Normal", - "code" : "17621005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722172003", - "display" : "Military health institution (environment)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Military health institution (environment)", - "code" : "722172003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "394609007", - "display" : "General surgery (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "General surgery (qualifier value)", - "code" : "394609007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "71388002", - "display" : "Procedure (procedure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Procedure", - "code" : "71388002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/11000146104/version/20220930", - "code" : "271872005", - "display" : "Old age (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/11000146104/version/20220930", - "code" : "271872005", - "display" : "Old age (qualifier value)" -}, "url": "https://fhir.kbv.de/ValueSet/KBV_VS_Base_Stage_Life", "version": "1.2.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" : "Old age (qualifier value)", - "code" : "271872005", - "severity" : "error", - "error" : "No Message returned", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "vs-invalid" - }], - "text" : "The code system \"http://snomed.info/sct\" version \"http://snomed.info/sct/900000000000207008/version/20210731\" in the ValueSet include is different to the one in the value (\"http://snomed.info/sct/11000146104/version/20220930\")" - }, - "location" : ["Coding.version"], - "expression" : ["Coding.version"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "410534003", - "display" : "Not indicated (qualifier value)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Not indicated (qualifier value)", - "code" : "410534003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "158965000", - "display" : "Doctor" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Medical practitioner", - "code" : "158965000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96067005", - "display" : "Flucloxacillin-containing product" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing flucloxacillin (medicinal product)", - "code" : "96067005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292954005", - "display" : "Penicillin adverse reaction" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Penicillin adverse reaction", - "code" : "292954005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "48546005", - "display" : "Diazepam-containing product" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing diazepam (medicinal product)", - "code" : "48546005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292360004", - "display" : "Diazepam adverse reaction" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diazepam adverse reaction", - "code" : "292360004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "40425004", - "display" : "Postconcussion syndrome" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Postconcussion syndrome", - "code" : "40425004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "237599002", - "display" : "Diabetes type 2 on insulin" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Insulin treated Type II diabetes mellitus", - "code" : "237599002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90560007", - "display" : "Gout" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Gout", - "code" : "90560007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1201005", - "display" : "Benign essential hypertension" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Benign essential hypertension", - "code" : "1201005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "52910006", - "display" : "Anxiety disorder due to a general medical condition" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "5913000", - "display" : "Fracture of neck of femur" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Fracture of neck of femur", - "code" : "5913000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "126212009", - "display" : "Product containing insulin glargine (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing insulin glargine (medicinal product)", - "code" : "126212009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "34206005", - "display" : "subcutaneous route" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Subcutaneous route", - "code" : "34206005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "767525000" -}, "valueSet" :null, "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" : "Unit", - "code" : "767525000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "714081009", - "display" : "Product containing dulaglutide (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing dulaglutide (medicinal product)", - "code" : "714081009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "109081006", - "display" : "Product containing metformin (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing metformin (medicinal product)", - "code" : "109081006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "26643006", - "display" : "Oral route" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oral route", - "code" : "26643006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "428673006" -}, "valueSet" :null, "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" : "Tablet - unit of product usage (qualifier value)", - "code" : "428673006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "108537001", - "display" : "Product containing amlodipine (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing amlodipine (medicinal product)", - "code" : "108537001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96309000", - "display" : "Product containing losartan (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing losartan (medicinal product)", - "code" : "96309000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "7947003", - "display" : "Product containing aspirin (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing aspirin (medicinal product)", - "code" : "7947003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "25246002", - "display" : "Product containing allopurinol (medicinal product)" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing allopurinol (medicinal product)", - "code" : "25246002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "16217701000119102", - "display" : "Structure of left deltoid muscle" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Structure of left deltoid muscle", - "code" : "16217701000119102", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005", - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004", - "display" : "Suturing of hand" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "81464008", - "display" : "Clinical pathologist" -}, "valueSet" :null, "langs":"en-NZ", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Clinical pathologist", - "code" : "81464008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96067005", - "display" : "Flucloxacillin-containing product" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing flucloxacillin (medicinal product)", - "code" : "96067005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96067005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-substance-condition-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing flucloxacillin (medicinal product)", - "code" : "96067005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96067005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-substance-condition-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing flucloxacillin (medicinal product)", - "code" : "96067005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96067005", - "display" : "Flucloxacillin-containing product" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292954005", - "display" : "Penicillin adverse reaction" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Penicillin adverse reaction", - "code" : "292954005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292954005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-reaction-snomed-ct-ips-free-set--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Penicillin adverse reaction", - "code" : "292954005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "48546005", - "display" : "Diazepam-containing product" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing diazepam (medicinal product)", - "code" : "48546005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "48546005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-substance-condition-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing diazepam (medicinal product)", - "code" : "48546005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "48546005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-substance-condition-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing diazepam (medicinal product)", - "code" : "48546005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "48546005", - "display" : "Diazepam-containing product" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-intolerance-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292360004", - "display" : "Diazepam adverse reaction" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diazepam adverse reaction", - "code" : "292360004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "292360004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/allergy-reaction-snomed-ct-ips-free-set--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diazepam adverse reaction", - "code" : "292360004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "40425004", - "display" : "Postconcussion syndrome" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Postconcussion syndrome", - "code" : "40425004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "40425004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Postconcussion syndrome", - "code" : "40425004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "40425004", - "display" : "Postconcussion syndrome" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "237599002", - "display" : "Diabetes type 2 on insulin" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Insulin treated Type II diabetes mellitus", - "code" : "237599002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "237599002" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Insulin treated Type II diabetes mellitus", - "code" : "237599002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "237599002", - "display" : "Diabetes type 2 on insulin" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90560007", - "display" : "Gout" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Gout", - "code" : "90560007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90560007" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Gout", - "code" : "90560007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "90560007", - "display" : "Gout" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1201005", - "display" : "Benign essential hypertension" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Benign essential hypertension", - "code" : "1201005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1201005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Benign essential hypertension", - "code" : "1201005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1201005", - "display" : "Benign essential hypertension" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "52910006", - "display" : "Anxiety disorder due to a general medical condition" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "52910006" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Anxiety disorder due to a general medical condition", - "code" : "52910006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "52910006", - "display" : "Anxiety disorder due to a general medical condition" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "5913000", - "display" : "Fracture of neck of femur" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Fracture of neck of femur", - "code" : "5913000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "5913000" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Fracture of neck of femur", - "code" : "5913000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "5913000", - "display" : "Fracture of neck of femur" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/problems-snomed-absent-unknown-uv-ips", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "126212009", - "display" : "Product containing insulin glargine (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing insulin glargine (medicinal product)", - "code" : "126212009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "126212009" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing insulin glargine (medicinal product)", - "code" : "126212009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "126212009" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing insulin glargine (medicinal product)", - "code" : "126212009", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#126212009' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "126212009", - "display" : "Product containing insulin glargine (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing insulin glargine (medicinal product)", - "code" : "126212009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "34206005", - "display" : "subcutaneous route" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Subcutaneous route", - "code" : "34206005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "767525000" -}, "valueSet" :null, "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" : "Unit", - "code" : "767525000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "714081009", - "display" : "Product containing dulaglutide (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing dulaglutide (medicinal product)", - "code" : "714081009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "714081009" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing dulaglutide (medicinal product)", - "code" : "714081009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "714081009" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing dulaglutide (medicinal product)", - "code" : "714081009", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#714081009' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "714081009", - "display" : "Product containing dulaglutide (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing dulaglutide (medicinal product)", - "code" : "714081009", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "109081006", - "display" : "Product containing metformin (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing metformin (medicinal product)", - "code" : "109081006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "109081006" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing metformin (medicinal product)", - "code" : "109081006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "109081006" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing metformin (medicinal product)", - "code" : "109081006", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#109081006' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "109081006", - "display" : "Product containing metformin (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing metformin (medicinal product)", - "code" : "109081006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "26643006", - "display" : "Oral route" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Oral route", - "code" : "26643006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "428673006" -}, "valueSet" :null, "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" : "Tablet - unit of product usage (qualifier value)", - "code" : "428673006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "108537001", - "display" : "Product containing amlodipine (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing amlodipine (medicinal product)", - "code" : "108537001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "108537001" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing amlodipine (medicinal product)", - "code" : "108537001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "108537001" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing amlodipine (medicinal product)", - "code" : "108537001", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#108537001' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "108537001", - "display" : "Product containing amlodipine (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing amlodipine (medicinal product)", - "code" : "108537001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96309000", - "display" : "Product containing losartan (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing losartan (medicinal product)", - "code" : "96309000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96309000" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing losartan (medicinal product)", - "code" : "96309000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96309000" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing losartan (medicinal product)", - "code" : "96309000", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#96309000' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "96309000", - "display" : "Product containing losartan (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing losartan (medicinal product)", - "code" : "96309000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "7947003", - "display" : "Product containing aspirin (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing aspirin (medicinal product)", - "code" : "7947003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "7947003" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing aspirin (medicinal product)", - "code" : "7947003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "7947003" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing aspirin (medicinal product)", - "code" : "7947003", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#7947003' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "7947003", - "display" : "Product containing aspirin (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing aspirin (medicinal product)", - "code" : "7947003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "25246002", - "display" : "Product containing allopurinol (medicinal product)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing allopurinol (medicinal product)", - "code" : "25246002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "25246002" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing allopurinol (medicinal product)", - "code" : "25246002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "25246002" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Product containing allopurinol (medicinal product)", - "code" : "25246002", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#25246002' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "25246002", - "display" : "Product containing allopurinol (medicinal product)" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/medication-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Product containing allopurinol (medicinal product)", - "code" : "25246002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "16217701000119102", - "display" : "Structure of left deltoid muscle" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Structure of left deltoid muscle", - "code" : "16217701000119102", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "16217701000119102" -}, "url": "http://hl7.org/fhir/ValueSet/body-site--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Structure of left deltoid muscle", - "code" : "16217701000119102", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "16217701000119102", - "display" : "Structure of left deltoid muscle" -}, "url": "http://hl7.org/fhir/ValueSet/body-site", "version": "4.0.1", "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 deltoid muscle", - "code" : "16217701000119102", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005", - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--2", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--2|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--3", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--3|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--4", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--4|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--5", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--5|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--6", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--6|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--7", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--7|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--8", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device", - "code" : "265132005", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#265132005' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--8|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "265132005", - "display" : "Primary open reduction and internal fixation of proximal femoral fracture with screw/nail and plate device" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "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/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004", - "display" : "Suturing of hand" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--0", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--1", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--1|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--2", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--2|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--3", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--3|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--4", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--4|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--5", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--5|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--6", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--6|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--7", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--7|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--8", "version": "1.1.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Suturing of hand", - "code" : "287903004", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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#287903004' was not found in the value set 'http://hl7.org/fhir/uv/ips/ValueSet/procedures-uv-ips--8|1.1.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "287903004", - "display" : "Suturing of hand" -}, "url": "http://hl7.org/fhir/uv/ips/ValueSet/procedures-snomed-absent-unknown-uv-ips", "version": "1.1.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" : "Suturing of hand", - "code" : "287903004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230131", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "81464008", - "display" : "Clinical pathologist" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Clinical pathologist", - "code" : "81464008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "112144000", - "display" : "Blood group A (finding)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood group A", - "code" : "112144000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "10828004", - "display" : "Positive (qualifier value)" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Positive", - "code" : "10828004", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "233588003", - "display" : "Continuous hemodiafiltration" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Continuous haemodiafiltration", - "code" : "233588003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "324689003", - "display" : "Nystatin 100000 unit/mL oral suspension" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "442311008", - "display" : "Liveborn born in hospital" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Liveborn born in hospital", - "code" : "442311008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "840539006", - "display" : "COVID-19" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Disease caused by 2019 novel coronavirus", - "code" : "840539006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "840535000", - "display" : "COVID-19" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Antibody to 2019 novel coronavirus", - "code" : "840535000", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "840535000", - "display" : "Antibody to 2019 novel coronavirus" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Antibody to 2019 novel coronavirus", - "code" : "840535000", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "32485007", - "display" : "Hospital admission (procedure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Hospital admission", - "code" : "32485007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "32713005", - "display" : "Cecum structure (body structure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cecum", - "code" : "32713005", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "10821000202101", - "display" : "Narkose eller dyp sedasjon med anestesistøtte" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "10821000202101", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '10821000202101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "446745002", - "display" : "Diagnostisk med biopsi" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Colonoscopy and biopsy of colon (procedure)", - "code" : "446745002", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "73761001", - "display" : "Colonoscopy (procedure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Colonoscopy", - "code" : "73761001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "8921000202108", - "display" : "Primary performing endoscopist (person)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "8921000202108", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '8921000202108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "8951000202101", - "display" : "Main nurse assisting procedure (person)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "8951000202101", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '8951000202101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "300577008", - "display" : "Finding of lesion (finding)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Finding of lesion", - "code" : "300577008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "10291000202102", - "display" : "Lesion size given by largest diameter (observable entity)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "10291000202102", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '10291000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "722818007", - "display" : "Boston bowel preparation scale (assessment scale)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Boston bowel preparation scale", - "code" : "722818007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "8901000202102", - "display" : "Boston bowel preparation skala høyre kolon" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "8901000202102", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '8901000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "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)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "8911000202100", - "display" : "Boston bowel preparation skala kolon transversum" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "8911000202100", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '8911000202100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "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)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "8891000202103", - "display" : "Boston bowel preparation skala venstre kolon" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "8891000202103", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '8891000202103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "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)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Entire 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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "246206008" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Number of lesions", - "code" : "246206008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "15991000202102", - "display" : "Appearance of intestinal lumen" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "15991000202102", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '15991000202102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "712510007", - "display" : "Intestinal hemorrhage (disorder)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Intestinal hemorrhage (disorder)", - "code" : "712510007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "372756006", - "display" : "Warfarin (substance)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Warfarin (substance)", - "code" : "372756006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "387458008", - "display" : "Aspirin (substance)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Aspirin (substance)", - "code" : "387458008", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20210731", - "code" : "27113001", - "display" : "Body weight (observable entity)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20210731", - "code" : "38266002", - "display" : "Entire body as a whole (body structure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20210731", - "code" : "27113001", - "display" : "Body weight (observable entity)" -}, "url": "https://fhir.kbv.de/ValueSet/KBV_VS_Base_Body_Weight_Snomed", "version": "1.2.1", "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: { - "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "warning", - "code" : "not-found", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "vs-invalid" - }], - "text" : "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" - }, - "location" : ["Coding"], - "expression" : ["Coding"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "276885007" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Core body temperature", - "code" : "276885007", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "276885007x" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "276885007x", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '276885007x' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[1].code"], - "expression" : ["CodeableConcept.coding[1].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 276885007x is not a valid SNOMED CT Term, and neither could it be parsed as an expression (Found content (\"x\") after end of expression at character 10)" - }, - "location" : ["CodeableConcept.coding[1].code"], - "expression" : ["CodeableConcept.coding[1].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "723961002", - "display" : "Structure of left brachial artery (body structure)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Structure of left brachial artery (body structure)", - "code" : "723961002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "58108001", - "display" : "Golden retriever" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Golden retriever", - "code" : "58108001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "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" : "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "119339001", - "display" : "Stool specimen (specimen)" -}, "valueSet" :null, "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Stool specimen", - "code" : "119339001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "5933001", - "display" : "Clostridioides difficile (organism)" -}, "valueSet" :null, "langs":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Clostridium difficile", - "code" : "5933001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20210331", - "code" : "459231000124102", - "display" : "Sequential organ failure assessment score (assessment scale)" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/11000146104/version/20220930", - "code" : "36989005", - "display" : "Mumps" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "322236009", - "display" : "Paracetamol 500mg tablets" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Acetaminophen 500 mg oral tablet", - "code" : "322236009", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "35901911000001104", - "display" : "Amoxicillin 125mg/5ml oral suspension sugar free" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "35901911000001104", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '35901911000001104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "258773002" -}, "valueSet" :null, "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" : "cm3", - "code" : "258773002", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "329652003", - "display" : "Ibuprofen 200mg tablets" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Ibuprofen 200 mg oral tablet", - "code" : "329652003", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "39695211000001102", - "display" : "Aspirin 300mg dispersible tablets" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "39695211000001102", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '39695211000001102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "56248011000036107", - "display" : "Panadol 500 mg tablet, 50" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "56248011000036107", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '56248011000036107' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["CodeableConcept.coding[0].code"], - "expression" : ["CodeableConcept.coding[0].code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "1" -}, "valueSet" :null, "langs":"en, en-US", "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" : "1", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '1' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "2" -}, "valueSet" :null, "langs":"en, en-US", "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" : "2", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code '2' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 825ea79b1..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemimaginary.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/test/CodeSystem/imaginary", - "code" : "code-a" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index 86e6b1ca6..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/testCodeSystemother.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/test/CodeSystem/other", - "code" : "other" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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/ucum.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ucum.cache deleted file mode 100644 index 8a6894fe8..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/ucum.cache +++ /dev/null @@ -1,1308 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "%" -}, "valueSet" :null, "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" : "%", - "code" : "%", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "%" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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" : "percent", - "code" : "%", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "L/min" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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" : "L/min", - "code" : "L/min", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "L/min" -}, "valueSet" :null, "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" : "L/min", - "code" : "L/min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "cm" -}, "valueSet" :null, "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" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "cm" -}, "url": "https://bb/ValueSet/BBDemographicAgeUnit", "version": "20190731", "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" : "cm", - "code" : "cm", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#cm' was not found in the value set 'https://bb/ValueSet/BBDemographicAgeUnit|20190731'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "min" -}, "valueSet" :null, "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" : "min", - "code" : "min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mmol/L" -}, "valueSet" :null, "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" : "mmol/L", - "code" : "mmol/L", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "kg" -}, "valueSet" :null, "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" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "kg/m2" -}, "valueSet" :null, "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" : "kg/m2", - "code" : "kg/m2", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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" : "millimeter of mercury", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "valueSet" :null, "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" : "mm[Hg]", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "wk" -}, "valueSet" :null, "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" : "wk", - "code" : "wk", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "min" -}, "valueSet" :null, "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" : "min", - "code" : "min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mmol/L" -}, "valueSet" :null, "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" : "mmol/L", - "code" : "mmol/L", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "%" -}, "valueSet" :null, "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" : "%", - "code" : "%", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "kg" -}, "valueSet" :null, "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" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "cm" -}, "valueSet" :null, "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" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "kg/m2" -}, "valueSet" :null, "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" : "kg/m2", - "code" : "kg/m2", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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" : "millimeter of mercury", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "wk" -}, "valueSet" :null, "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" : "wk", - "code" : "wk", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "valueSet" :null, "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" : "mm[Hg]", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "h" -}, "valueSet" :null, "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" : "h", - "code" : "h", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "ar" -}, "valueSet" :null, "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" : "ar", - "code" : "ar", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "l" -}, "valueSet" :null, "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" : "l", - "code" : "l", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "{capsule}" -}, "valueSet" :null, "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" : "{capsule}", - "code" : "{capsule}", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "{patch}" -}, "valueSet" :null, "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" : "{patch}", - "code" : "{patch}", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "m" -}, "valueSet" :null, "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" : "m", - "code" : "m", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "m" -}, "url": "http://hl7.org/fhir/ValueSet/age-units", "version": "4.0.1", "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" : "m", - "code" : "m", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "The provided code 'http://unitsofmeasure.org#m' was not found in the value set 'http://hl7.org/fhir/ValueSet/age-units|4.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mmol/L" -}, "valueSet" :null, "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" : "mmol/L", - "code" : "mmol/L", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mmol/mol" -}, "valueSet" :null, "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" : "mmol/mol", - "code" : "mmol/mol", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "Cel" -}, "valueSet" :null, "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" : "Cel", - "code" : "Cel", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "/min" -}, "valueSet" :null, "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" : "/min", - "code" : "/min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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" : "millimeter of mercury", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "valueSet" :null, "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" : "mm[Hg]", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "cm" -}, "valueSet" :null, "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" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "kg" -}, "valueSet" :null, "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" : "kg", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mmol/mol" -}, "valueSet" :null, "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" : "mmol/mol", - "code" : "mmol/mol", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "Cel" -}, "valueSet" :null, "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" : "Cel", - "code" : "Cel", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "/min" -}, "valueSet" :null, "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" : "/min", - "code" : "/min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "/min" -}, "valueSet" :null, "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" : "/min", - "code" : "/min", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mg" -}, "valueSet" :null, "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" : "mg", - "code" : "mg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm" -}, "valueSet" :null, "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" : "mm", - "code" : "mm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "kg" -}, "url": "http://fhir.de/ValueSet/UcumVitalsCommonDE", "version": "0.9.13", "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" : "kilogram", - "code" : "kg", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "g" -}, "valueSet" :null, "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" : "g", - "code" : "g", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]{hg}" -}, "valueSet" :null, "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" : "mm[Hg]{hg}", - "code" : "mm[Hg]{hg}", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "fmm[Hg]" -}, "valueSet" :null, "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: { - "code" : "fmm[Hg]", - "severity" : "error", - "error" : "Unknown code 'fmm[Hg]' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-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 'fmm[Hg]' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'" - }, - "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" : "Error processing Unit: 'fmm[Hg]': The unit \"fmm[Hg]\" is unknown at character 1" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]{hg}" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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" : "mm[Hg]{hg}", - "code" : "mm[Hg]{hg}", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "fmm[Hg]" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "version": "4.0.1", "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: { - "code" : "fmm[Hg]", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "information", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Error processing Unit: 'fmm[Hg]': The unit \"fmm[Hg]\" is unknown at character 1" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-code" - }], - "text" : "Unknown code 'fmm[Hg]' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "code-invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-in-vs" - }], - "text" : "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'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "J/C" -}, "valueSet" :null, "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" : "J/C", - "code" : "J/C", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/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 deleted file mode 100644 index 020dc4fd5..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:1.2.840.10008.2.16.4", - "code" : "US", - "display" : "Ultrasound" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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: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 deleted file mode 100644 index 6ea6a931f..000000000 --- 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 +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:1.3.6.1.4.1.19376.1.2.3", - "code" : "urn:hl7-org:sdwg:ccda-structuredBody:1.1" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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: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 deleted file mode 100644 index 37888f858..000000000 --- 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 +++ /dev/null @@ -1,81 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:2.16.756.5.30.2.6.1", - "code" : "0058985" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:2.16.756.5.30.2.6.1", - "code" : "7739208" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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: { - "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index 94eeaa51b..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/urn_oid_2.51.1.1.cache +++ /dev/null @@ -1,81 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:2.51.1.1", - "code" : "7680336700282" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "7680336700282", - "severity" : "error", - "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://tx-dev.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" - }], - "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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:oid:2.51.1.1", - "code" : "7680669830038" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "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: { - "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache deleted file mode 100644 index 7341ac50c..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvipsCodeSystemabsent-unknown-uv-ips.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips", - "code" : "no-allergy-info", - "display" : "No information about allergies" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "no-allergy-info", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "not-found", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "not-found" - }], - "text" : "A definition for CodeSystem 'http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips' could not be found, so the code cannot be validated" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache deleted file mode 100644 index 736a96ff2..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/uvsdcCodeSystemCSPHQ9.cache +++ /dev/null @@ -1,153 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "code" : "Not-at-all" -}, "valueSet" :null, "langs":"en, en-US", "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" : "Not at all", - "code" : "Not-at-all", - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "version" : "3.0.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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/uv/sdc/CodeSystem/CSPHQ9|3.0.0" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "code" : "Several-days" -}, "valueSet" :null, "langs":"en, en-US", "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" : "Several days", - "code" : "Several-days", - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "version" : "3.0.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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/uv/sdc/CodeSystem/CSPHQ9|3.0.0" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "code" : "More than half the days" -}, "valueSet" :null, "langs":"en, en-US", "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" : "More than half the days", - "code" : "More than half the days", - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "version" : "3.0.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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/uv/sdc/CodeSystem/CSPHQ9|3.0.0" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "code" : "Nearly every day" -}, "valueSet" :null, "langs":"en, en-US", "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" : "Nearly every day", - "code" : "Nearly every day", - "system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/CSPHQ9", - "version" : "3.0.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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/uv/sdc/CodeSystem/CSPHQ9|3.0.0" - } - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 4a7d81ca7..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v20203.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/v2/0203", - "code" : "MR", - "display" : "Medical record number" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "MR", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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-NullFlavor.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-NullFlavor.cache deleted file mode 100644 index c78a78ffe..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.0.1/v3-NullFlavor.cache +++ /dev/null @@ -1,24 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", - "code" : "NA" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "not applicable", - "code" : "NA", - "system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", - "version" : "2.1.0", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.capabilityStatement.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/4.3.0/.capabilityStatement.cache index 1abc1098e..03c19101a 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 @@ -9,10 +9,10 @@ }] }, "url" : "http://tx-dev.fhir.org/r4/metadata", - "version" : "4.0.1-3.0.0", + "version" : "4.0.1-3.1.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2024-01-04T06:43:06.502Z", + "date" : "2024-01-10T04:28:15.988Z", "contact" : [{ "telecom" : [{ "system" : "other", @@ -23,8 +23,8 @@ "instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"], "software" : { "name" : "Reference Server", - "version" : "3.0.0", - "releaseDate" : "2023-06-19T19:50:55.040Z" + "version" : "3.1.0", + "releaseDate" : "2024-01-08T12:29:45.425Z" }, "implementation" : { "description" : "FHIR Server running at http://tx-dev.fhir.org/r4", 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 60bd24f2a..ab4b0eafc 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" : "2024-01-04T06:43:06.721Z", + "date" : "2024-01-10T04:28:16.191Z", "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 2ce2c4185..706f114ab 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 @@ -9,10 +9,10 @@ }] }, "url" : "http://tx-dev.fhir.org/r4/metadata", - "version" : "4.0.1-3.0.0", + "version" : "4.0.1-3.1.0", "name" : "FHIR Reference Server Conformance Statement", "status" : "active", - "date" : "2024-01-04T06:43:11.096Z", + "date" : "2024-01-10T04:27:44.988Z", "contact" : [{ "telecom" : [{ "system" : "other", @@ -23,8 +23,8 @@ "instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"], "software" : { "name" : "Reference Server", - "version" : "3.0.0", - "releaseDate" : "2023-06-19T19:50:55.040Z" + "version" : "3.1.0", + "releaseDate" : "2024-01-08T12:29:45.425Z" }, "implementation" : { "description" : "FHIR Server running at http://tx-dev.fhir.org/r4", 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 eff3fac11..aac239e32 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" : "2024-01-04T06:43:11.299Z", + "date" : "2024-01-10T04:27:45.207Z", "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 deleted file mode 100644 index 940a26f39..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/R4codesystem-assert-response-code-types.html.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/R4/codesystem-assert-response-code-types.html", - "code" : "notModified", - "display" : "notModified" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 3949a5d4d..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/ValueSetaccount-type.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/ValueSet/account-type", - "code" : "132037003", - "display" : "Pineywoods pig breed" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "132037003", - "severity" : "error", - "error" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/account-type')", - "class" : "UNKNOWN", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-data" - }], - "text" : "The Coding references a value set, not a code system ('http://hl7.org/fhir/ValueSet/account-type')" - }, - "location" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/all-systems.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/all-systems.cache index 32427625d..a22ac609c 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 @@ -1,177 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "code" : "text/plain" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "text/plain", - "code" : "text/plain", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "json" -}, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "json", - "code" : "json", - "system" : "urn:ietf:bcp:13", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "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" : "World", - "code" : "001", - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "server" : "http://tx-dev.fhir.org/r4", - "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 deprecated ValueSet http://hl7.org/fhir/ValueSet/jurisdiction|5.0.0" - } - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "nl-NL" -}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "5.0.0", "langs":"nl-NL", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Dutch (Region=Netherlands)", - "code" : "nl-NL", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en-AU" -}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "5.0.0", "langs":"en-AU", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English (Region=Australia)", - "code" : "en-AU", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "code" : "en" -}, "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":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "English", - "code" : "en", - "system" : "urn:ietf:bcp:47", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "World", - "code" : "001", - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "server" : "http://tx-dev.fhir.org/r4", - "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 deprecated ValueSet http://hl7.org/fhir/ValueSet/jurisdiction|5.0.0" - } - }] -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://acme.com/config/fhir/codesystems/internal", "code" : "internal-label" @@ -244,7 +71,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -265,7 +91,6 @@ v: { "code" : "fr-CA", "system" : "urn:ietf:bcp:47", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -290,7 +115,6 @@ v: { "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", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -329,6 +153,68 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "nl-NL" +}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "5.0.0", "langs":"nl-NL", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Dutch (Region=Netherlands)", + "code" : "nl-NL", + "system" : "urn:ietf:bcp:47", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "en-AU" +}, "url": "http://hl7.org/fhir/ValueSet/all-languages", "version": "5.0.0", "langs":"en-AU", "useServer":"true", "useClient":"true", "guessSystem":"true", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "English (Region=Australia)", + "code" : "en-AU", + "system" : "urn:ietf:bcp:47", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "code" : "en" +}, "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":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "English", + "code" : "en", + "system" : "urn:ietf:bcp:47", + "server" : "http://tx-dev.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/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 deleted file mode 100644 index db1214063..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/animal-species.cache +++ /dev/null @@ -1,40 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/animal-species", - "code" : "canislf", - "display" : "Dog" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Dog", - "code" : "canislf", - "system" : "http://hl7.org/fhir/animal-species", - "version" : "4.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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-species|4.0.1" - } - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index d336e0052..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/dicom.cache +++ /dev/null @@ -1,25 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://dicom.nema.org/resources/ontology/DCM", - "code" : "110122", - "display" : "Login" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Login", - "code" : "110122", - "system" : "http://dicom.nema.org/resources/ontology/DCM", - "version" : "2023.1.20230123", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/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 0a1e043d8..6714a17f2 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 @@ -1,45 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://acme.org/devices/clinical-codes", - "code" : "bp-s", - "display" : "Systolic Blood pressure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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"] - }] -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://acme.org/devices/clinical-codes", "code" : "body-weight", @@ -81,3 +40,44 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://acme.org/devices/clinical-codes", + "code" : "bp-s", + "display" : "Systolic Blood pressure" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "code" : "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", + "class" : "CODESYSTEM_UNSUPPORTED", + "server" : "http://tx-dev.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" + }], + "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/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 deleted file mode 100644 index 5072fcaba..000000000 --- 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 +++ /dev/null @@ -1,60 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://build.fhir.org/assert-response-code-types", - "version" : "4.4.0", - "code" : "population", - "display" : "Population" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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: []", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }, - { - "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://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 deleted file mode 100644 index 7d6b77a22..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_fhir_animal-breed.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/fhir/animal-breed", - "code" : "gret", - "display" : "Golden Retriever" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "gret", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 040d75645..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___example.org_obs-code.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://example.org/obs-code", - "code" : "obs1" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "obs1", - "severity" : "error", - "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://tx-dev.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" - }], - "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/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 deleted file mode 100644 index cc542a60a..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_ig_local.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.ch/ig/local", - "code" : "1234" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "1234", - "severity" : "error", - "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://tx-dev.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" - }], - "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" : ["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 deleted file mode 100644 index eca692cd9..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___fhir.ch_whateversysstem.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://fhir.ch/whateversysstem", - "code" : "adfasfdf", - "display" : "I dont know what this value means" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "adfasfdf", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://fhir.ch/whateversysstem' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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/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 deleted file mode 100644 index 286416afd..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___foo.cache +++ /dev/null @@ -1,41 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://foo", - "code" : "123" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "123", - "severity" : "error", - "error" : "A definition for CodeSystem 'http://foo' could not be found, so the code cannot be validated", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index c64580f58..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___snomed.info_sct_32506021000036107_version_20170403.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct/32506021000036107/version/20170403", - "code" : "132037003", - "display" : "Pineywoods pig breed" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 84d1e99d9..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___test.org.cache +++ /dev/null @@ -1,73 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://test.org", - "code" : "x" -}, "url": "http://hl7.org/fhir/ValueSet/security-labels", "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: { - "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'", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "severity" : "information", - "code" : "business-rule", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "status-check" - }], - "text" : "Reference to retired ValueSet http://terminology.hl7.org/ValueSet/v3-ActUSPrivacyLaw|2.0.0" - } - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "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://test.org' 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://test.org#x' was not found in the value set 'http://hl7.org/fhir/ValueSet/security-labels|5.0.0'" - }, - "location" : ["Coding.code"], - "expression" : ["Coding.code"] - }] -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index f29ae74fd..000000000 --- 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 +++ /dev/null @@ -1,68 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "World", - "code" : "001", - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001" -}, "url": "http://hl7.org/fhir/ValueSet/jurisdiction--2", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "World", - "code" : "001", - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "World", - "code" : "001", - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- 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 deleted file mode 100644 index a75ced5ae..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/http___www.whocc.no_atc.cache +++ /dev/null @@ -1,43 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.whocc.no/atc", - "code" : "N02AA", - "display" : "Barbiturates and derivatives" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Natural opium alkaloids", - "code" : "N02AA", - "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name 'Barbiturates and derivatives' for http://www.whocc.no/atc#N02AA - should be 'Natural opium alkaloids' (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/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 deleted file mode 100644 index e66969216..000000000 --- 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 +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "https://api-v8-r4.hspconsortium.org/DrugFormulary0/open/CodeSystem/usdrugformulary-DrugTierCS", - "code" : "BRAND", - "display" : "Brand" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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 deleted file mode 100644 index 849272b71..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/iso67102017.cache +++ /dev/null @@ -1,42 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "urn:iso:std:iso:6710:2017", - "code" : "yellow", - "display" : "yellow cap" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "yellow", - "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", - "server" : "http://tx-dev.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" - }], - "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" : ["Coding.system"], - "expression" : ["Coding.system"] - }] -} - -} -------------------------------------------------------------------------------------- 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 44b31c85d..0a284dff2 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 @@ -1,669 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6", - "display" : "Systolic blood pressure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Systolic blood pressure", - "code" : "8480-6", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic blood pressure" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-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":"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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "85354-9", - "display" : "Blood pressure panel with all children optional" -}, "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" : "Blood pressure panel with all children optional", - "code" : "85354-9", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8480-6" -}, "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":"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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4" -}, "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":"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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "8462-4", - "display" : "Diastolic 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" : "Diastolic blood pressure", - "code" : "8462-4", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "56445-0", - "display" : "Medication summary Doc" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "56445-0" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "5.0.0", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "56445-0", - "display" : "Medication summary Doc" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "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" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "48765-2", - "display" : "Allergies and adverse reactions" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "current", - "code" : "56445-0", - "display" : "Medication summary Doc" -}, "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" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "56445-0" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--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" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "current", - "code" : "56445-0", - "display" : "Medication summary Doc" -}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes", "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" : "Medication summary Document", - "code" : "56445-0", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "version" : "current", - "code" : "48765-2", - "display" : "Allergies and adverse reactions" -}, "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" : "Allergies and adverse reactions Document", - "code" : "48765-2", - "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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3151-8", - "display" : "ingeademde O2" -}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Inhaled oxygen flow rate", - "code" : "3151-8", - "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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "3151-8", - "display" : "ingeademde O2" -}, "valueSet" :null, "langs":"nl-NL", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "ingeademde O2", - "code" : "3151-8", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "35200-5", - "display" : "Cholesterol [Moles/​volume] in Serum or Plasma" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cholesterol [Mass or Moles/volume] in Serum or Plasma", - "code" : "35200-5", - "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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["CodeableConcept.coding[0].display"], - "expression" : ["CodeableConcept.coding[0].display"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "13457-7", - "display" : "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation", - "code" : "13457-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "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":"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://tx-dev.fhir.org/r4", - "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":"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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "29463-7", - "display" : "Body Weight" -}, "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" : "Body weight", - "code" : "29463-7", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "35200-5", - "display" : "Cholest SerPl-msCnc" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Cholesterol [Mass or Moles/volume] in Serum or Plasma", - "code" : "35200-5", - "system" : "http://loinc.org", - "version" : "2.74", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://loinc.org", - "code" : "35217-9", - "display" : "Triglyceride [Moles/​volume] in Serum or Plasma" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Triglyceride [Mass or Moles/volume] in Serum or Plasma", - "code" : "35217-9", - "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://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "invalid", - "details" : { - "coding" : [{ - "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", - "code" : "invalid-display" - }], - "text" : "Wrong Display Name '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) '--')" - }, - "location" : ["Coding.display"], - "expression" : ["Coding.display"] - }] -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://loinc.org", "code" : "29463-7", @@ -681,7 +16,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -705,7 +39,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -728,7 +61,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -752,7 +84,6 @@ v: { "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", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -793,7 +124,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -817,7 +147,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -841,7 +170,6 @@ v: { "system" : "http://loinc.org", "version" : "2.74", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -866,7 +194,6 @@ v: { "error" : "Wrong whitespace in Display Name 'Active motion ' for http://loinc.org#LA6715-2 - should be 'Active motion' (for the language(s) '--')", "class" : "UNKNOWN", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -908,7 +235,6 @@ v: { "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", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -932,3 +258,461 @@ v: { } ------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-9", + "display" : "Blood pressure panel with all children optional" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Blood pressure panel with all children optional", + "code" : "85354-9", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6", + "display" : "Systolic blood pressure" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Systolic blood pressure", + "code" : "8480-6", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4", + "display" : "Diastolic blood pressure" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-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":"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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "85354-9", + "display" : "Blood pressure panel with all children optional" +}, "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" : "Blood pressure panel with all children optional", + "code" : "85354-9", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8480-6" +}, "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":"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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4" +}, "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":"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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "8462-4", + "display" : "Diastolic 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" : "Diastolic blood pressure", + "code" : "8462-4", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "3151-8", + "display" : "ingeademde O2" +}, "valueSet" :null, "langs":"en", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Inhaled oxygen flow rate", + "code" : "3151-8", + "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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "invalid-display" + }], + "text" : "Wrong Display Name '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')" + }, + "location" : ["CodeableConcept.coding[0].display"], + "expression" : ["CodeableConcept.coding[0].display"] + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "3151-8", + "display" : "ingeademde O2" +}, "valueSet" :null, "langs":"nl-NL", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "ingeademde O2", + "code" : "3151-8", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "35200-5", + "display" : "Cholesterol [Moles/​volume] in Serum or Plasma" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Cholesterol [Mass or Moles/volume] in Serum or Plasma", + "code" : "35200-5", + "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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "invalid-display" + }], + "text" : "Wrong Display Name '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) '--')" + }, + "location" : ["CodeableConcept.coding[0].display"], + "expression" : ["CodeableConcept.coding[0].display"] + }] +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "13457-7", + "display" : "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation", + "code" : "13457-7", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "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":"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://tx-dev.fhir.org/r4", + "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":"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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "29463-7", + "display" : "Body Weight" +}, "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" : "Body weight", + "code" : "29463-7", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "35200-5", + "display" : "Cholest SerPl-msCnc" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Cholesterol [Mass or Moles/volume] in Serum or Plasma", + "code" : "35200-5", + "system" : "http://loinc.org", + "version" : "2.74", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://loinc.org", + "code" : "35217-9", + "display" : "Triglyceride [Moles/​volume] in Serum or Plasma" +}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { + "resourceType" : "Parameters", + "parameter" : [{ + "name" : "profile-url", + "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" + }] +}}#### +v: { + "display" : "Triglyceride [Mass or Moles/volume] in Serum or Plasma", + "code" : "35217-9", + "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://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome", + "issue" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", + "valueUrl" : "http://tx-dev.fhir.org/r4" + }], + "severity" : "error", + "code" : "invalid", + "details" : { + "coding" : [{ + "system" : "http://hl7.org/fhir/tools/CodeSystem/tx-issue-type", + "code" : "invalid-display" + }], + "text" : "Wrong Display Name '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) '--')" + }, + "location" : ["Coding.display"], + "expression" : ["Coding.display"] + }] +} + +} +------------------------------------------------------------------------------------- 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 deleted file mode 100644 index 34f92b212..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/rxnorm.cache +++ /dev/null @@ -1,25 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://www.nlm.nih.gov/research/umls/rxnorm", - "code" : "1049640", - "display" : "Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Percocet]" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "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://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/snomed.cache b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/snomed.cache index 96c42b4bb..7aa97a1df 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 @@ -1,4 +1,457 @@ ------------------------------------------------------------------------------------- +{"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://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "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", + "server" : "http://tx-dev.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- {"code" : { "system" : "http://snomed.info/sct", "code" : "368209003", @@ -16,6 +469,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -39,136 +493,11 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108/version/20210201", - "code" : "132037003", - "display" : "Pineywoods pig breed" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108/version/20210201", - "code" : "132037003", - "display" : "Pineywoods pig breed" -}, "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" : "Pineywoods pig", - "code" : "132037003", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/731000124108/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.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"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/11000172109/version/20221115", - "code" : "132037003", - "display" : "Pineywoods pig breed. Not." -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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]", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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://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"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -188,6 +517,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -210,6 +540,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -233,6 +564,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -256,6 +588,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -279,6 +612,7 @@ v: { "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://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome", "issue" : [{ @@ -325,6 +659,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -348,51 +683,11 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "58108001", - "display" : "Golden retriever" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Golden retriever", - "code" : "58108001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "inactive" : true, - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.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"] - }] -} - } ------------------------------------------------------------------------------------- {"code" : { @@ -412,6 +707,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -435,6 +731,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -458,6 +755,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -481,6 +779,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -504,52 +803,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "119361006", - "display" : "Plasma specimen" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Plasma specimen", - "code" : "119361006", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://snomed.info/sct", - "code" : "32039001", - "display" : "glass" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "display" : "Glass", - "code" : "32039001", - "system" : "http://snomed.info/sct", - "version" : "http://snomed.info/sct/900000000000207008/version/20230901", - "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -572,6 +826,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -594,6 +849,7 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -616,477 +872,6 @@ v: { "system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/900000000000207008/version/20230901", "server" : "http://tx-dev.fhir.org/r4", - "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://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", - "issues" : { - "resourceType" : "OperationOutcome", - "issue" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-server", - "valueUrl" : "http://tx-dev.fhir.org/r4" - }], - "severity" : "error", - "code" : "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", - "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", - "server" : "http://tx-dev.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" diff --git a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/system-map.json b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/system-map.json new file mode 100644 index 000000000..e19a27abf --- /dev/null +++ b/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/system-map.json @@ -0,0 +1,64 @@ +{ + "systems" : [ + { + "system" : "http://acme.com/config/fhir/codesystems/internal", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://acme.org/devices/clinical-codes", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://acme.ped/apgarcolor", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://acme.ped/apgarheartrate", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://acme.ped/apgarmuscletone", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://acme.ped/apgarreflexirritability", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://acme.ped/apgarrespiratoryeffort", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://hl7.org/fhir/sid/ndc", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://loinc.org", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://snomed.info/sct", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/condition-category", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0136", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0360|2.7", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "http://unitsofmeasure.org", + "server" : "http://tx-dev.fhir.org/r4" + }, + { + "system" : "urn:ietf:bcp:47", + "server" : "http://tx-dev.fhir.org/r4" + } + ] +} 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 deleted file mode 100644 index 3ae842db0..000000000 --- a/org.hl7.fhir.validation/src/test/resources/txCache/org.hl7.fhir.validation/5.0.0/testCodeSystemprofile-slicing-codes.cache +++ /dev/null @@ -1,81 +0,0 @@ -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes", - "code" : "profile2" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" - }, - "location" : ["CodeableConcept.coding[0].system"], - "expression" : ["CodeableConcept.coding[0].system"] - }] -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://hl7.org/fhir/test/CodeSystem/profile-slicing-codes", - "code" : "profile1" -}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": { - "resourceType" : "Parameters", - "parameter" : [{ - "name" : "profile-url", - "valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891" - }] -}}#### -v: { - "code" : "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", - "class" : "CODESYSTEM_UNSUPPORTED", - "server" : "http://tx-dev.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" - }], - "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" - }, - "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 e64e634c0..e6fa67242 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 @@ -1,136 +1,4 @@ ------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "valueSet" :null, "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" : "mm[Hg]", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mm[Hg]" -}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "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" : "millimeter of mercury", - "code" : "mm[Hg]", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "cm" -}, "valueSet" :null, "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" : "cm", - "code" : "cm", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "mmol/L" -}, "valueSet" :null, "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" : "mmol/L", - "code" : "mmol/L", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "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":"false", "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", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- -{"code" : { - "system" : "http://unitsofmeasure.org", - "code" : "Cel" -}, "valueSet" :null, "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" : "Cel", - "code" : "Cel", - "system" : "http://unitsofmeasure.org", - "version" : "2.0.1", - "server" : "http://tx-dev.fhir.org/r4", - "issues" : { - "resourceType" : "OperationOutcome" -} - -} -------------------------------------------------------------------------------------- {"code" : { "system" : "http://unitsofmeasure.org", "code" : "[lb_av]" @@ -147,7 +15,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -170,7 +37,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -193,7 +59,6 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", - "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome" } @@ -216,6 +81,74 @@ v: { "system" : "http://unitsofmeasure.org", "version" : "2.0.1", "server" : "http://tx-dev.fhir.org/r4", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mm[Hg]" +}, "valueSet" :null, "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" : "mm[Hg]", + "code" : "mm[Hg]", + "system" : "http://unitsofmeasure.org", + "version" : "2.0.1", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mm[Hg]" +}, "url": "http://hl7.org/fhir/ValueSet/ucum-vitals-common", "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" : "millimeter of mercury", + "code" : "mm[Hg]", + "system" : "http://unitsofmeasure.org", + "version" : "2.0.1", + "server" : "http://tx-dev.fhir.org/r4", + "unknown-systems" : "", + "issues" : { + "resourceType" : "OperationOutcome" +} + +} +------------------------------------------------------------------------------------- +{"code" : { + "system" : "http://unitsofmeasure.org", + "code" : "mmol/L" +}, "valueSet" :null, "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" : "mmol/L", + "code" : "mmol/L", + "system" : "http://unitsofmeasure.org", + "version" : "2.0.1", + "server" : "http://tx-dev.fhir.org/r4", "unknown-systems" : "", "issues" : { "resourceType" : "OperationOutcome"