update headers on client to add ;fhirVersion=X
This commit is contained in:
parent
ee3400be7d
commit
9b9aa51e36
|
@ -84,6 +84,7 @@ public class TerminologyClientR2 implements ITerminologyClient {
|
||||||
|
|
||||||
public TerminologyClientR2(String id, String address, String userAgent) throws URISyntaxException {
|
public TerminologyClientR2(String id, String address, String userAgent) throws URISyntaxException {
|
||||||
client = new FHIRToolingClient(address, userAgent);
|
client = new FHIRToolingClient(address, userAgent);
|
||||||
|
this.client.setVersionInMimeTypes(true);
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -193,6 +193,7 @@ public class TerminologyClientR3 implements ITerminologyClient {
|
||||||
if (this.clientHeaders != null) {
|
if (this.clientHeaders != null) {
|
||||||
this.client.setClientHeaders(this.clientHeaders.headers());
|
this.client.setClientHeaders(this.clientHeaders.headers());
|
||||||
}
|
}
|
||||||
|
this.client.setVersionInMimeTypes(true);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -204,6 +204,7 @@ public class TerminologyClientR4 implements ITerminologyClient {
|
||||||
if (this.clientHeaders != null) {
|
if (this.clientHeaders != null) {
|
||||||
this.client.setClientHeaders(this.clientHeaders.headers());
|
this.client.setClientHeaders(this.clientHeaders.headers());
|
||||||
}
|
}
|
||||||
|
this.client.setVersionInMimeTypes(true);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ import org.hl7.fhir.dstu2.model.Resource;
|
||||||
import org.hl7.fhir.dstu2.model.ResourceType;
|
import org.hl7.fhir.dstu2.model.ResourceType;
|
||||||
import org.hl7.fhir.dstu2.utils.ResourceUtilities;
|
import org.hl7.fhir.dstu2.utils.ResourceUtilities;
|
||||||
import org.hl7.fhir.exceptions.FHIRException;
|
import org.hl7.fhir.exceptions.FHIRException;
|
||||||
|
import org.hl7.fhir.utilities.MimeType;
|
||||||
import org.hl7.fhir.utilities.ToolingClientLogger;
|
import org.hl7.fhir.utilities.ToolingClientLogger;
|
||||||
import org.hl7.fhir.utilities.Utilities;
|
import org.hl7.fhir.utilities.Utilities;
|
||||||
import org.hl7.fhir.utilities.settings.FhirSettings;
|
import org.hl7.fhir.utilities.settings.FhirSettings;
|
||||||
|
@ -573,10 +573,11 @@ public class ClientUtils {
|
||||||
if (StringUtils.isBlank(format)) {
|
if (StringUtils.isBlank(format)) {
|
||||||
format = ResourceFormat.RESOURCE_XML.getHeader();
|
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())) {
|
|| format.equalsIgnoreCase(ResourceFormat.RESOURCE_JSON.getHeader())) {
|
||||||
return new JsonParser();
|
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())) {
|
|| format.equalsIgnoreCase(ResourceFormat.RESOURCE_XML.getHeader())) {
|
||||||
return new XmlParser();
|
return new XmlParser();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -178,11 +178,11 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
if (useOptionsVerb) {
|
if (useOptionsVerb) {
|
||||||
conformance = (Conformance) utils
|
conformance = (Conformance) utils
|
||||||
.issueOptionsRequest(resourceAddress.getBaseServiceUri(), getPreferredResourceFormat(), timeoutNormal)
|
.issueOptionsRequest(resourceAddress.getBaseServiceUri(), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal)
|
||||||
.getReference();// TODO fix this
|
.getReference();// TODO fix this
|
||||||
} else {
|
} else {
|
||||||
conformance = (Conformance) utils.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false),
|
conformance = (Conformance) utils.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false),
|
||||||
getPreferredResourceFormat(), timeoutNormal).getReference();
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal).getReference();
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException("An error has occurred while trying to fetch the server's conformance statement", 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 {
|
try {
|
||||||
if (useOptionsVerb) {
|
if (useOptionsVerb) {
|
||||||
conformance = (Conformance) utils
|
conformance = (Conformance) utils
|
||||||
.issueOptionsRequest(resourceAddress.getBaseServiceUri(), getPreferredResourceFormat(), timeoutNormal)
|
.issueOptionsRequest(resourceAddress.getBaseServiceUri(), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal)
|
||||||
.getReference();// TODO fix this
|
.getReference();// TODO fix this
|
||||||
} else {
|
} else {
|
||||||
conformance = (Conformance) utils.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true),
|
conformance = (Conformance) utils.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true),
|
||||||
getPreferredResourceFormat(), timeoutNormal).getReference();
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal).getReference();
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException("An error has occurred while trying to fetch the server's conformance statement", 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<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = utils.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = utils.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
getPreferredResourceFormat(), timeoutNormal);
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
result.addSuccessStatus(200);// Only one for now
|
result.addSuccessStatus(200);// Only one for now
|
||||||
|
@ -238,7 +238,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = utils.issueGetResourceRequest(
|
result = utils.issueGetResourceRequest(
|
||||||
resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
||||||
getPreferredResourceFormat(), timeoutNormal);
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
result.addErrorStatus(405);// unknown
|
result.addErrorStatus(405);// unknown
|
||||||
|
@ -262,7 +262,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = utils.issueGetResourceRequest(
|
result = utils.issueGetResourceRequest(
|
||||||
resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
||||||
getPreferredResourceFormat(), timeoutNormal);
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
result.addErrorStatus(405);// unknown
|
result.addErrorStatus(405);// unknown
|
||||||
|
@ -290,7 +290,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
result = utils.issuePutRequest(
|
result = utils.issuePutRequest(
|
||||||
resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
||||||
utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), headers, timeoutOperation);
|
withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutOperation);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
result.addErrorStatus(405);
|
result.addErrorStatus(405);
|
||||||
|
@ -326,7 +326,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
List<Header> headers = null;
|
List<Header> headers = null;
|
||||||
result = utils.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = utils.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), headers, timeoutOperation);
|
withVer(getPreferredResourceFormat(), "1.0"), headers, timeoutOperation);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
result.addErrorStatus(405);
|
result.addErrorStatus(405);
|
||||||
|
@ -370,7 +370,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
// ResourceRequest<T> resourceRequest = null;
|
// ResourceRequest<T> resourceRequest = null;
|
||||||
// try {
|
// try {
|
||||||
// List<Header> headers = null;
|
// List<Header> 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);
|
// resourceRequest.addSuccessStatus(201);
|
||||||
// if(resourceRequest.isUnsuccessfulRequest()) {
|
// if(resourceRequest.isUnsuccessfulRequest()) {
|
||||||
// throw new EFhirClientException("Server responded with HTTP error code " + resourceRequest.getHttpStatus(), (OperationOutcome)resourceRequest.getPayload());
|
// throw new EFhirClientException("Server responded with HTTP error code " + resourceRequest.getHttpStatus(), (OperationOutcome)resourceRequest.getPayload());
|
||||||
|
@ -403,7 +403,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
// public <T extends Resource> Bundle history(Calendar lastUpdate, Class<T> resourceClass, String id) {
|
// public <T extends Resource> Bundle history(Calendar lastUpdate, Class<T> resourceClass, String id) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history information for this resource", 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 <T extends Resource> Bundle history(Date lastUpdate, Class<T> resourceClass, String id) {
|
// public <T extends Resource> Bundle history(Date lastUpdate, Class<T> resourceClass, String id) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history information for this resource", 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 <T extends Resource> Bundle history(Calendar lastUpdate, Class<T> resourceClass) {
|
// public <T extends Resource> Bundle history(Calendar lastUpdate, Class<T> resourceClass) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history information for this resource type", 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 <T extends Resource> Bundle history(Date lastUpdate, Class<T> resourceClass) {
|
// public <T extends Resource> Bundle history(Date lastUpdate, Class<T> resourceClass) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history information for this resource type", 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 <T extends Resource> Bundle history(Class<T> resourceClass) {
|
// public <T extends Resource> Bundle history(Class<T> resourceClass) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history information for this resource type", 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 <T extends Resource> Bundle history(Class<T> resourceClass, String id) {
|
// public <T extends Resource> Bundle history(Class<T> resourceClass, String id) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history information for this resource", 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 <T extends Resource> Bundle history(Date lastUpdate) {
|
// public <T extends Resource> Bundle history(Date lastUpdate) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history since last update",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 <T extends Resource> Bundle history(Calendar lastUpdate) {
|
// public <T extends Resource> Bundle history(Calendar lastUpdate) {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history since last update",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 <T extends Resource> Bundle history() {
|
// public <T extends Resource> Bundle history() {
|
||||||
// Bundle history = null;
|
// Bundle history = null;
|
||||||
// try {
|
// try {
|
||||||
// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(maxResultSetSize), getPreferredResourceFormat(), proxy);
|
// history = utils.issueGetFeedRequest(resourceAddress.resolveGetHistoryForAllResources(maxResultSetSize), withVer(getPreferredResourceFormat(), "1.0"), proxy);
|
||||||
// } catch (Exception e) {
|
// } catch (Exception e) {
|
||||||
// handleException("An error has occurred while trying to retrieve history since last update",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 <T extends Resource> Bundle search(Class<T> resourceClass, Map<String, String> parameters) {
|
// public <T extends Resource> Bundle search(Class<T> resourceClass, Map<String, String> parameters) {
|
||||||
// Bundle searchResults = null;
|
// Bundle searchResults = null;
|
||||||
// try {
|
// 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) {
|
// } catch (Exception e) {
|
||||||
// handleException("Error performing search with parameters " + parameters, e);
|
// handleException("Error performing search with parameters " + parameters, e);
|
||||||
// }
|
// }
|
||||||
|
@ -535,10 +535,10 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
if (complex)
|
if (complex)
|
||||||
result = utils.issuePostRequest(resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps),
|
result = utils.issuePostRequest(resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps),
|
||||||
utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())),
|
utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), timeoutLong);
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutLong);
|
||||||
else
|
else
|
||||||
result = utils.issueGetResourceRequest(resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps),
|
result = utils.issueGetResourceRequest(resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps),
|
||||||
getPreferredResourceFormat(), timeoutLong);
|
withVer(getPreferredResourceFormat(), "1.0"), timeoutLong);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
result.addSuccessStatus(200);// Only one for now
|
result.addSuccessStatus(200);// Only one for now
|
||||||
|
@ -559,7 +559,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
Bundle transactionResult = null;
|
Bundle transactionResult = null;
|
||||||
try {
|
try {
|
||||||
transactionResult = utils.postBatchRequest(resourceAddress.getBaseServiceUri(),
|
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());
|
timeoutNormal + batch.getEntry().size());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException("An error occurred trying to process this transaction request", e);
|
handleException("An error occurred trying to process this transaction request", e);
|
||||||
|
@ -574,7 +574,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = utils.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
result = utils.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
||||||
utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
utils.getResourceAsByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), 3);
|
withVer(getPreferredResourceFormat(), "1.0"), 3);
|
||||||
result.addErrorStatus(400);// gone
|
result.addErrorStatus(400);// gone
|
||||||
result.addErrorStatus(422);// Unprocessable Entity
|
result.addErrorStatus(422);// Unprocessable Entity
|
||||||
result.addSuccessStatus(200);// OK
|
result.addSuccessStatus(200);// OK
|
||||||
|
@ -593,7 +593,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
*
|
*
|
||||||
* public List<Coding> getAllTags() { TagListRequest result = null; try { result
|
* public List<Coding> getAllTags() { TagListRequest result = null; try { result
|
||||||
* = utils.issueGetRequestForTagList(resourceAddress.resolveGetAllTags(),
|
* = 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",
|
* handleException("An error has occurred while trying to retrieve all tags",
|
||||||
* e); } return result.getPayload(); }
|
* e); } return result.getPayload(); }
|
||||||
*
|
*
|
||||||
|
@ -602,7 +602,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
* resourceClass) { TagListRequest result = null; try { result =
|
* resourceClass) { TagListRequest result = null; try { result =
|
||||||
* utils.issueGetRequestForTagList(resourceAddress.
|
* utils.issueGetRequestForTagList(resourceAddress.
|
||||||
* resolveGetAllTagsForResourceType(resourceClass),
|
* 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"
|
* handleException("An error has occurred while trying to retrieve tags for this resource type"
|
||||||
* , e); } return result.getPayload(); }
|
* , e); } return result.getPayload(); }
|
||||||
*
|
*
|
||||||
|
@ -610,7 +610,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
* public <T extends Resource> List<Coding> getTagsForReference(Class<T>
|
* public <T extends Resource> List<Coding> getTagsForReference(Class<T>
|
||||||
* resource, String id) { TagListRequest result = null; try { result =
|
* resource, String id) { TagListRequest result = null; try { result =
|
||||||
* utils.issueGetRequestForTagList(resourceAddress.resolveGetTagsForReference(
|
* utils.issueGetRequestForTagList(resourceAddress.resolveGetTagsForReference(
|
||||||
* resource, id), getPreferredResourceFormat(), null, proxy); } catch (Exception
|
* resource, id), withVer(getPreferredResourceFormat(), "1.0"), null, proxy); } catch (Exception
|
||||||
* e) {
|
* e) {
|
||||||
* handleException("An error has occurred while trying to retrieve tags for this resource"
|
* handleException("An error has occurred while trying to retrieve tags for this resource"
|
||||||
* , e); } return result.getPayload(); }
|
* , e); } return result.getPayload(); }
|
||||||
|
@ -620,7 +620,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
* resource, String id, String versionId) { TagListRequest result = null; try {
|
* resource, String id, String versionId) { TagListRequest result = null; try {
|
||||||
* result = utils.issueGetRequestForTagList(resourceAddress.
|
* result = utils.issueGetRequestForTagList(resourceAddress.
|
||||||
* resolveGetTagsForResourceVersion(resource, id, versionId),
|
* 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"
|
* handleException("An error has occurred while trying to retrieve tags for this resource version"
|
||||||
* , e); } return result.getPayload(); }
|
* , e); } return result.getPayload(); }
|
||||||
*
|
*
|
||||||
|
@ -647,7 +647,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
* request =
|
* request =
|
||||||
* utils.issuePostRequestForTagList(resourceAddress.resolveGetTagsForReference(
|
* utils.issuePostRequestForTagList(resourceAddress.resolveGetTagsForReference(
|
||||||
* resourceClass, id),utils.getTagListAsByteArray(tags, false,
|
* resourceClass, id),utils.getTagListAsByteArray(tags, false,
|
||||||
* isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), null,
|
* isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), null,
|
||||||
* proxy); request.addSuccessStatus(201); request.addSuccessStatus(200);
|
* proxy); request.addSuccessStatus(201); request.addSuccessStatus(200);
|
||||||
* if(request.isUnsuccessfulRequest()) { throw new
|
* if(request.isUnsuccessfulRequest()) { throw new
|
||||||
* EFhirClientException("Server responded with HTTP error code " +
|
* EFhirClientException("Server responded with HTTP error code " +
|
||||||
|
@ -661,7 +661,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
* null; try { request = utils.issuePostRequestForTagList(resourceAddress.
|
* null; try { request = utils.issuePostRequestForTagList(resourceAddress.
|
||||||
* resolveGetTagsForResourceVersion(resourceClass, id,
|
* resolveGetTagsForResourceVersion(resourceClass, id,
|
||||||
* version),utils.getTagListAsByteArray(tags, false,
|
* version),utils.getTagListAsByteArray(tags, false,
|
||||||
* isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), null,
|
* isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), null,
|
||||||
* proxy); request.addSuccessStatus(201); request.addSuccessStatus(200);
|
* proxy); request.addSuccessStatus(201); request.addSuccessStatus(200);
|
||||||
* if(request.isUnsuccessfulRequest()) { throw new
|
* if(request.isUnsuccessfulRequest()) { throw new
|
||||||
* EFhirClientException("Server responded with HTTP error code " +
|
* EFhirClientException("Server responded with HTTP error code " +
|
||||||
|
@ -675,7 +675,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
* null; try { request = utils.issuePostRequestForTagList(resourceAddress.
|
* null; try { request = utils.issuePostRequestForTagList(resourceAddress.
|
||||||
* resolveDeleteTagsForResourceVersion(resourceClass, id,
|
* resolveDeleteTagsForResourceVersion(resourceClass, id,
|
||||||
* version),utils.getTagListAsByteArray(tags, false,
|
* version),utils.getTagListAsByteArray(tags, false,
|
||||||
* isJson(getPreferredResourceFormat())), getPreferredResourceFormat(), null,
|
* isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"), null,
|
||||||
* proxy); request.addSuccessStatus(201); request.addSuccessStatus(200);
|
* proxy); request.addSuccessStatus(201); request.addSuccessStatus(200);
|
||||||
* if(request.isUnsuccessfulRequest()) { throw new
|
* if(request.isUnsuccessfulRequest()) { throw new
|
||||||
* EFhirClientException("Server responded with HTTP error code " +
|
* EFhirClientException("Server responded with HTTP error code " +
|
||||||
|
@ -729,7 +729,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
List<Header> headers = null;
|
List<Header> headers = null;
|
||||||
ResourceRequest<Resource> result = utils.issuePostRequest(
|
ResourceRequest<Resource> result = utils.issuePostRequest(
|
||||||
resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
||||||
utils.getResourceAsByteArray(source, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(),
|
utils.getResourceAsByteArray(source, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"),
|
||||||
headers, timeoutLong);
|
headers, timeoutLong);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
|
@ -747,7 +747,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
public Parameters lookupCode(Map<String, String> params) {
|
public Parameters lookupCode(Map<String, String> params) {
|
||||||
recordUse();
|
recordUse();
|
||||||
ResourceRequest<Resource> result = utils.issueGetResourceRequest(
|
ResourceRequest<Resource> result = utils.issueGetResourceRequest(
|
||||||
resourceAddress.resolveOperationUri(ValueSet.class, "lookup", params), getPreferredResourceFormat(),
|
resourceAddress.resolveOperationUri(ValueSet.class, "lookup", params), withVer(getPreferredResourceFormat(), "1.0"),
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
|
@ -771,7 +771,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
p.addParameter().setName(n).setValue(new StringType(params.get(n)));
|
p.addParameter().setName(n).setValue(new StringType(params.get(n)));
|
||||||
ResourceRequest<Resource> result = utils.issuePostRequest(
|
ResourceRequest<Resource> result = utils.issuePostRequest(
|
||||||
resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
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);
|
headers, 4);
|
||||||
result.addErrorStatus(410); // gone
|
result.addErrorStatus(410); // gone
|
||||||
result.addErrorStatus(404); // unknown
|
result.addErrorStatus(404); // unknown
|
||||||
|
@ -789,7 +789,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
// public ValueSet expandValueset(ValueSet source, ExpansionProfile profile, Map<String, String> params) {
|
// public ValueSet expandValueset(ValueSet source, ExpansionProfile profile, Map<String, String> params) {
|
||||||
// List<Header> headers = null;
|
// List<Header> headers = null;
|
||||||
// ResourceRequest<Resource> result = utils.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
// ResourceRequest<Resource> 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(410);//gone
|
||||||
// result.addErrorStatus(404);//unknown
|
// result.addErrorStatus(404);//unknown
|
||||||
// result.addErrorStatus(405);
|
// result.addErrorStatus(405);
|
||||||
|
@ -813,7 +813,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
List<Header> headers = null;
|
List<Header> headers = null;
|
||||||
ResourceRequest<Resource> result = utils.issuePostRequest(
|
ResourceRequest<Resource> result = utils.issuePostRequest(
|
||||||
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(),
|
utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"),
|
||||||
headers, timeoutNormal);
|
headers, timeoutNormal);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
|
@ -836,7 +836,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
List<Header> headers = null;
|
List<Header> headers = null;
|
||||||
ResourceRequest<Resource> result = utils.issuePostRequest(
|
ResourceRequest<Resource> result = utils.issuePostRequest(
|
||||||
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), getPreferredResourceFormat(),
|
utils.getResourceAsByteArray(params, false, isJson(getPreferredResourceFormat())), withVer(getPreferredResourceFormat(), "1.0"),
|
||||||
headers, timeoutOperation);
|
headers, timeoutOperation);
|
||||||
result.addErrorStatus(410);// gone
|
result.addErrorStatus(410);// gone
|
||||||
result.addErrorStatus(404);// unknown
|
result.addErrorStatus(404);// unknown
|
||||||
|
@ -877,7 +877,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
|
|
||||||
public Parameters getTerminologyCapabilities() {
|
public Parameters getTerminologyCapabilities() {
|
||||||
return (Parameters) utils
|
return (Parameters) utils
|
||||||
.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(), getPreferredResourceFormat(), timeoutNormal)
|
.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(), withVer(getPreferredResourceFormat(), "1.0"), timeoutNormal)
|
||||||
.getReference();
|
.getReference();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -924,4 +924,5 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
private void recordUse() {
|
private void recordUse() {
|
||||||
useCount++;
|
useCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -149,7 +149,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
Parameters capabilities = null;
|
Parameters capabilities = null;
|
||||||
try {
|
try {
|
||||||
capabilities = (Parameters) client.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(),
|
capabilities = (Parameters) client.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"TerminologyCapabilities",
|
"TerminologyCapabilities",
|
||||||
timeoutNormal).getReference();
|
timeoutNormal).getReference();
|
||||||
|
@ -163,7 +163,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
CapabilityStatement conformance = null;
|
CapabilityStatement conformance = null;
|
||||||
try {
|
try {
|
||||||
conformance = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false),
|
conformance = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"CapabilitiesStatement",
|
"CapabilitiesStatement",
|
||||||
timeoutNormal).getReference();
|
timeoutNormal).getReference();
|
||||||
|
@ -177,7 +177,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
if (capabilities != null) return capabilities;
|
if (capabilities != null) return capabilities;
|
||||||
try {
|
try {
|
||||||
capabilities = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true),
|
capabilities = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"CapabilitiesStatement-Quick",
|
"CapabilitiesStatement-Quick",
|
||||||
timeoutNormal).getReference();
|
timeoutNormal).getReference();
|
||||||
|
@ -192,7 +192,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Read " + resourceClass.getName() + "/" + id,
|
"Read " + resourceClass.getName() + "/" + id,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -210,7 +210,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version,
|
"VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -228,7 +228,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Read " + resourceClass.getName() + "?url=" + canonicalURL,
|
"Read " + resourceClass.getName() + "?url=" + canonicalURL,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -252,7 +252,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Update " + resource.fhirType() + "/" + resource.getId(),
|
"Update " + resource.fhirType() + "/" + resource.getId(),
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
|
@ -280,7 +280,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Update " + resource.fhirType() + "/" + id,
|
"Update " + resource.fhirType() + "/" + id,
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
|
@ -320,13 +320,13 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
if (client.getLogger() != null) {
|
if (client.getLogger() != null) {
|
||||||
client.getLogger().logRequest("POST", url.toString(), null, body);
|
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);
|
"POST " + resourceClass.getName() + "/$" + name, timeoutLong);
|
||||||
} else {
|
} else {
|
||||||
if (client.getLogger() != null) {
|
if (client.getLogger() != null) {
|
||||||
client.getLogger().logRequest("GET", url.toString(), null, 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()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
||||||
|
@ -349,7 +349,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
recordUse();
|
recordUse();
|
||||||
Bundle transactionResult = null;
|
Bundle transactionResult = null;
|
||||||
try {
|
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) {
|
} catch (Exception e) {
|
||||||
handleException("An error occurred trying to process this transaction request", e);
|
handleException("An error occurred trying to process this transaction request", e);
|
||||||
}
|
}
|
||||||
|
@ -363,7 +363,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(),
|
withVer(getPreferredResourceFormat(), "3.0"), generateHeaders(),
|
||||||
"POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong);
|
"POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
||||||
|
@ -422,7 +422,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
||||||
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"ValueSet/$expand?url=" + source.getUrl(),
|
"ValueSet/$expand?url=" + source.getUrl(),
|
||||||
timeoutExpand);
|
timeoutExpand);
|
||||||
|
@ -441,7 +441,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
org.hl7.fhir.dstu3.utils.client.network.ResourceRequest<Resource> result = null;
|
org.hl7.fhir.dstu3.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params),
|
result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"CodeSystem/$lookup",
|
"CodeSystem/$lookup",
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -465,7 +465,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
||||||
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"ValueSet/$expand?url=" + source.getUrl(),
|
"ValueSet/$expand?url=" + source.getUrl(),
|
||||||
timeoutExpand);
|
timeoutExpand);
|
||||||
|
@ -490,7 +490,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
|
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
||||||
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"ValueSet/$expand?url=" + source.getUrl(),
|
"ValueSet/$expand?url=" + source.getUrl(),
|
||||||
timeoutExpand);
|
timeoutExpand);
|
||||||
|
@ -515,7 +515,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Closure?name=" + name,
|
"Closure?name=" + name,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -537,7 +537,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "3.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"UpdateClosure?name=" + name,
|
"UpdateClosure?name=" + name,
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
|
@ -653,5 +653,6 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
private void recordUse() {
|
private void recordUse() {
|
||||||
useCount++;
|
useCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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.EFhirClientException;
|
||||||
import org.hl7.fhir.dstu3.utils.client.ResourceFormat;
|
import org.hl7.fhir.dstu3.utils.client.ResourceFormat;
|
||||||
import org.hl7.fhir.exceptions.FHIRException;
|
import org.hl7.fhir.exceptions.FHIRException;
|
||||||
|
import org.hl7.fhir.utilities.MimeType;
|
||||||
import org.hl7.fhir.utilities.ToolingClientLogger;
|
import org.hl7.fhir.utilities.ToolingClientLogger;
|
||||||
import org.hl7.fhir.utilities.settings.FhirSettings;
|
import org.hl7.fhir.utilities.settings.FhirSettings;
|
||||||
|
|
||||||
|
@ -326,9 +327,10 @@ public class FhirRequestBuilder {
|
||||||
if (StringUtils.isBlank(format)) {
|
if (StringUtils.isBlank(format)) {
|
||||||
format = ResourceFormat.RESOURCE_XML.getHeader();
|
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();
|
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();
|
return new XmlParser();
|
||||||
} else {
|
} else {
|
||||||
throw new EFhirClientException("Invalid format: " + format);
|
throw new EFhirClientException("Invalid format: " + format);
|
||||||
|
|
|
@ -81,7 +81,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
private String acceptLang;
|
private String acceptLang;
|
||||||
private String contentLang;
|
private String contentLang;
|
||||||
private int useCount;
|
private int useCount;
|
||||||
|
|
||||||
// Pass endpoint for client - URI
|
// Pass endpoint for client - URI
|
||||||
public FHIRToolingClient(String baseServiceUrl, String userAgent) throws URISyntaxException {
|
public FHIRToolingClient(String baseServiceUrl, String userAgent) throws URISyntaxException {
|
||||||
preferredResourceFormat = ResourceFormat.RESOURCE_JSON;
|
preferredResourceFormat = ResourceFormat.RESOURCE_JSON;
|
||||||
|
@ -131,7 +131,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
TerminologyCapabilities capabilities = null;
|
TerminologyCapabilities capabilities = null;
|
||||||
try {
|
try {
|
||||||
capabilities = (TerminologyCapabilities) client.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(),
|
capabilities = (TerminologyCapabilities) client.issueGetResourceRequest(resourceAddress.resolveMetadataTxCaps(),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "TerminologyCapabilities", timeoutNormal).getReference();
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "TerminologyCapabilities", timeoutNormal).getReference();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new FHIRException("Error fetching the server's terminology capabilities", e);
|
throw new FHIRException("Error fetching the server's terminology capabilities", e);
|
||||||
}
|
}
|
||||||
|
@ -142,7 +142,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
CapabilityStatement conformance = null;
|
CapabilityStatement conformance = null;
|
||||||
try {
|
try {
|
||||||
conformance = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false),
|
conformance = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(false),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "CapabilitiesStatement", timeoutNormal).getReference();
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "CapabilitiesStatement", timeoutNormal).getReference();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new FHIRException("Error fetching the server's conformance statement", 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 {
|
public CapabilityStatement getCapabilitiesStatementQuick() throws EFhirClientException {
|
||||||
if (capabilities != null)
|
if (capabilities != null)
|
||||||
return capabilities;
|
return capabilities;
|
||||||
try {
|
try {
|
||||||
capabilities = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true),
|
capabilities = (CapabilityStatement) client.issueGetResourceRequest(resourceAddress.resolveMetadataUri(true),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "CapabilitiesStatement-Quick", timeoutNormal)
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "CapabilitiesStatement-Quick", timeoutNormal)
|
||||||
.getReference();
|
.getReference();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new FHIRException("Error fetching the server's capability statement: " + e.getMessage(), e);
|
throw new FHIRException("Error fetching the server's capability statement: " + e.getMessage(), e);
|
||||||
|
@ -167,7 +167,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<Resource> result = null;
|
ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass + "/" + id,
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass + "/" + id,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -184,7 +184,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass.getName() + "/" + id,
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass.getName() + "/" + id,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -202,7 +202,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(
|
result = client.issueGetResourceRequest(
|
||||||
resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
||||||
getPreferredResourceFormat(), generateHeaders(),
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(),
|
||||||
"VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version, timeoutNormal);
|
"VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version, timeoutNormal);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -220,7 +220,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(
|
result = client.issueGetResourceRequest(
|
||||||
resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass.getName() + "?url=" + canonicalURL,
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass.getName() + "?url=" + canonicalURL,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -244,7 +244,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
result = client.issuePutRequest(
|
result = client.issuePutRequest(
|
||||||
resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Update " + resource.fhirType() + "/" + resource.getId(),
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + resource.getId(),
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -274,7 +274,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Update " + resource.fhirType() + "/" + id,
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Update " + resource.fhirType() + "/" + id,
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
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);
|
URI url = resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps);
|
||||||
if (complex) {
|
if (complex) {
|
||||||
byte[] body = ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat()));
|
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);
|
"POST " + resourceClass.getName() + "/$" + name, timeoutLong);
|
||||||
} else {
|
} else {
|
||||||
result = client.issueGetResourceRequest(url, getPreferredResourceFormat(), generateHeaders(),
|
result = client.issueGetResourceRequest(url, withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(),
|
||||||
"GET " + resourceClass.getName() + "/$" + name, timeoutLong);
|
"GET " + resourceClass.getName() + "/$" + name, timeoutLong);
|
||||||
}
|
}
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
|
@ -337,7 +337,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(),
|
transactionResult = client.postBatchRequest(resourceAddress.getBaseServiceUri(),
|
||||||
ByteUtils.resourceToByteArray(batch, false, isJson(getPreferredResourceFormat())),
|
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) {
|
} catch (Exception e) {
|
||||||
handleException("An error occurred trying to process this transaction request", e);
|
handleException("An error occurred trying to process this transaction request", e);
|
||||||
}
|
}
|
||||||
|
@ -351,7 +351,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(),
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(),
|
||||||
"POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong);
|
"POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -396,7 +396,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
recordUse();
|
recordUse();
|
||||||
Bundle feed = null;
|
Bundle feed = null;
|
||||||
try {
|
try {
|
||||||
feed = client.issueGetFeedRequest(new URI(url), getPreferredResourceFormat(), timeoutLong);
|
feed = client.issueGetFeedRequest(new URI(url), withVer(getPreferredResourceFormat(), "4.0"), timeoutLong);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException("An error has occurred while trying to retrieve history since last update", 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<Resource> result = null;
|
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", parameters),
|
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) {
|
} catch (IOException e) {
|
||||||
throw new FHIRException(e);
|
throw new FHIRException(e);
|
||||||
}
|
}
|
||||||
|
@ -440,7 +440,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
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);
|
generateHeaders(), "ValueSet/$expand?url=" + source.getUrl(), timeoutExpand);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
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<Resource> result = null;
|
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params),
|
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) {
|
} catch (IOException e) {
|
||||||
throw new FHIRException(e);
|
throw new FHIRException(e);
|
||||||
}
|
}
|
||||||
|
@ -480,7 +480,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
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(),
|
generateHeaders(), source == null ? "ValueSet/$expand" : "ValueSet/$expand?url=" + source.getUrl(),
|
||||||
timeoutExpand);
|
timeoutExpand);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
|
@ -512,7 +512,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
result = client.issuePostRequest(
|
result = client.issuePostRequest(
|
||||||
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Closure?name=" + name, timeoutNormal);
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Closure?name=" + name, timeoutNormal);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
(OperationOutcome) result.getPayload());
|
(OperationOutcome) result.getPayload());
|
||||||
|
@ -533,7 +533,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
result = client.issuePostRequest(
|
result = client.issuePostRequest(
|
||||||
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "UpdateClosure?name=" + name, timeoutOperation);
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "UpdateClosure?name=" + name, timeoutOperation);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
(OperationOutcome) result.getPayload());
|
(OperationOutcome) result.getPayload());
|
||||||
|
@ -645,7 +645,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
org.hl7.fhir.r4.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetResource(resourceClass, id),
|
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) {
|
} catch (IOException e) {
|
||||||
throw new FHIRException(e);
|
throw new FHIRException(e);
|
||||||
}
|
}
|
||||||
|
@ -664,4 +664,5 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
useCount++;
|
useCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ import org.hl7.fhir.r4.model.Resource;
|
||||||
import org.hl7.fhir.r4.utils.ResourceUtilities;
|
import org.hl7.fhir.r4.utils.ResourceUtilities;
|
||||||
import org.hl7.fhir.r4.utils.client.EFhirClientException;
|
import org.hl7.fhir.r4.utils.client.EFhirClientException;
|
||||||
import org.hl7.fhir.r4.utils.client.ResourceFormat;
|
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.TextFile;
|
||||||
import org.hl7.fhir.utilities.settings.FhirSettings;
|
import org.hl7.fhir.utilities.settings.FhirSettings;
|
||||||
|
|
||||||
|
@ -335,9 +336,11 @@ public class FhirRequestBuilder {
|
||||||
if (StringUtils.isBlank(format)) {
|
if (StringUtils.isBlank(format)) {
|
||||||
format = ResourceFormat.RESOURCE_XML.getHeader();
|
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();
|
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();
|
return new XmlParser();
|
||||||
} else {
|
} else {
|
||||||
throw new EFhirClientException("Invalid format: " + format);
|
throw new EFhirClientException("Invalid format: " + format);
|
||||||
|
|
|
@ -350,6 +350,7 @@ public class SimpleWorkerContext extends BaseWorkerContext implements IWorkerCon
|
||||||
setTxCaps(capabilityStatement);
|
setTxCaps(capabilityStatement);
|
||||||
return capabilitiesStatementQuick.getSoftware().getVersion();
|
return capabilitiesStatementQuick.getSoftware().getVersion();
|
||||||
} catch (Exception e) {
|
} 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);
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -205,6 +205,7 @@ public class TerminologyClientR5 implements ITerminologyClient {
|
||||||
public ITerminologyClient setClientHeaders(ClientHeaders clientHeaders) {
|
public ITerminologyClient setClientHeaders(ClientHeaders clientHeaders) {
|
||||||
this.clientHeaders = clientHeaders;
|
this.clientHeaders = clientHeaders;
|
||||||
this.client.setClientHeaders(this.clientHeaders.headers());
|
this.client.setClientHeaders(this.clientHeaders.headers());
|
||||||
|
this.client.setVersionInMimeTypes(true);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -109,6 +109,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
|
|
||||||
private int useCount;
|
private int useCount;
|
||||||
|
|
||||||
|
|
||||||
//Pass endpoint for client - URI
|
//Pass endpoint for client - URI
|
||||||
public FHIRToolingClient(String baseServiceUrl, String userAgent) throws URISyntaxException {
|
public FHIRToolingClient(String baseServiceUrl, String userAgent) throws URISyntaxException {
|
||||||
preferredResourceFormat = ResourceFormat.RESOURCE_JSON;
|
preferredResourceFormat = ResourceFormat.RESOURCE_JSON;
|
||||||
|
@ -160,7 +161,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
for (ResourceFormat attemptedResourceFormat : resourceFormats) {
|
for (ResourceFormat attemptedResourceFormat : resourceFormats) {
|
||||||
try {
|
try {
|
||||||
T output = (T) client.issueGetResourceRequest(resourceUri,
|
T output = (T) client.issueGetResourceRequest(resourceUri,
|
||||||
preferredResourceFormat.getHeader(),
|
withVer(preferredResourceFormat.getHeader(), "5.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
message,
|
message,
|
||||||
timeoutNormal).getReference();
|
timeoutNormal).getReference();
|
||||||
|
@ -213,7 +214,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<Resource> result = null;
|
ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
getPreferredResourceFormat(), generateHeaders(), "Read " + resourceClass + "/" + id,
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(), "Read " + resourceClass + "/" + id,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(),
|
||||||
|
@ -231,7 +232,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Read " + resourceClass.getName() + "/" + id,
|
"Read " + resourceClass.getName() + "/" + id,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -249,7 +250,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(resourceClass, id, version),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version,
|
"VRead " + resourceClass.getName() + "/" + id + "/?_history/" + version,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -267,7 +268,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
ResourceRequest<T> result = null;
|
ResourceRequest<T> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
result = client.issueGetResourceRequest(resourceAddress.resolveGetUriFromResourceClassAndCanonical(resourceClass, canonicalURL),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Read " + resourceClass.getName() + "?url=" + canonicalURL,
|
"Read " + resourceClass.getName() + "?url=" + canonicalURL,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -291,7 +292,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resource.getClass(), resource.getId()),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Update " + resource.fhirType() + "/" + resource.getId(),
|
"Update " + resource.fhirType() + "/" + resource.getId(),
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
|
@ -319,7 +320,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
result = client.issuePutRequest(resourceAddress.resolveGetUriFromResourceClassAndId(resourceClass, id),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Update " + resource.fhirType() + "/" + id,
|
"Update " + resource.fhirType() + "/" + id,
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
|
@ -356,10 +357,10 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
URI url = resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps);
|
URI url = resourceAddress.resolveOperationURLFromClass(resourceClass, name, ps);
|
||||||
if (complex) {
|
if (complex) {
|
||||||
byte[] body = ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat()));
|
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);
|
"POST " + resourceClass.getName() + "/$" + name, timeoutLong);
|
||||||
} else {
|
} 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()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
||||||
|
@ -381,7 +382,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
recordUse();
|
recordUse();
|
||||||
Bundle transactionResult = null;
|
Bundle transactionResult = null;
|
||||||
try {
|
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(),
|
generateHeaders(),
|
||||||
"transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size()));
|
"transaction", timeoutOperation + (timeoutEntry * batch.getEntry().size()));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -397,7 +398,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
result = client.issuePostRequest(resourceAddress.resolveValidateUri(resourceClass, id),
|
||||||
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(resource, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(), generateHeaders(),
|
withVer(getPreferredResourceFormat(), "4.0"), generateHeaders(),
|
||||||
"POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong);
|
"POST " + resourceClass.getName() + (id != null ? "/" + id : "") + "/$validate", timeoutLong);
|
||||||
if (result.isUnsuccessfulRequest()) {
|
if (result.isUnsuccessfulRequest()) {
|
||||||
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
throw new EFhirClientException("Server returned error code " + result.getHttpStatus(), (OperationOutcome) result.getPayload());
|
||||||
|
@ -456,7 +457,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand"),
|
||||||
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"ValueSet/$expand?url=" + source.getUrl(),
|
"ValueSet/$expand?url=" + source.getUrl(),
|
||||||
timeoutExpand);
|
timeoutExpand);
|
||||||
|
@ -475,7 +476,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
org.hl7.fhir.r5.utils.client.network.ResourceRequest<Resource> result = null;
|
org.hl7.fhir.r5.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params),
|
result = client.issueGetResourceRequest(resourceAddress.resolveOperationUri(CodeSystem.class, "lookup", params),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"CodeSystem/$lookup",
|
"CodeSystem/$lookup",
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -505,7 +506,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
|
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(ValueSet.class, "expand", params),
|
||||||
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(p, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
source == null ? "ValueSet/$expand" : "ValueSet/$expand?url=" + source.getUrl(),
|
source == null ? "ValueSet/$expand" : "ValueSet/$expand?url=" + source.getUrl(),
|
||||||
timeoutExpand);
|
timeoutExpand);
|
||||||
|
@ -530,7 +531,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"Closure?name=" + name,
|
"Closure?name=" + name,
|
||||||
timeoutNormal);
|
timeoutNormal);
|
||||||
|
@ -552,7 +553,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
try {
|
try {
|
||||||
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
result = client.issuePostRequest(resourceAddress.resolveOperationUri(null, "closure", new HashMap<String, String>()),
|
||||||
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
ByteUtils.resourceToByteArray(params, false, isJson(getPreferredResourceFormat())),
|
||||||
getPreferredResourceFormat(),
|
withVer(getPreferredResourceFormat(), "4.0"),
|
||||||
generateHeaders(),
|
generateHeaders(),
|
||||||
"UpdateClosure?name=" + name,
|
"UpdateClosure?name=" + name,
|
||||||
timeoutOperation);
|
timeoutOperation);
|
||||||
|
@ -681,7 +682,7 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
|
||||||
org.hl7.fhir.r5.utils.client.network.ResourceRequest<Resource> result = null;
|
org.hl7.fhir.r5.utils.client.network.ResourceRequest<Resource> result = null;
|
||||||
try {
|
try {
|
||||||
result = client.issueGetResourceRequest(resourceAddress.resolveGetResource(resourceClass, id),
|
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) {
|
} catch (IOException e) {
|
||||||
throw new FHIRException(e);
|
throw new FHIRException(e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ import org.hl7.fhir.r5.model.Resource;
|
||||||
import org.hl7.fhir.r5.utils.ResourceUtilities;
|
import org.hl7.fhir.r5.utils.ResourceUtilities;
|
||||||
import org.hl7.fhir.r5.utils.client.EFhirClientException;
|
import org.hl7.fhir.r5.utils.client.EFhirClientException;
|
||||||
import org.hl7.fhir.r5.utils.client.ResourceFormat;
|
import org.hl7.fhir.r5.utils.client.ResourceFormat;
|
||||||
|
import org.hl7.fhir.utilities.MimeType;
|
||||||
import org.hl7.fhir.utilities.settings.FhirSettings;
|
import org.hl7.fhir.utilities.settings.FhirSettings;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
@ -309,9 +310,10 @@ public class FhirRequestBuilder {
|
||||||
if (StringUtils.isBlank(format)) {
|
if (StringUtils.isBlank(format)) {
|
||||||
format = ResourceFormat.RESOURCE_XML.getHeader();
|
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();
|
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();
|
return new XmlParser();
|
||||||
} else {
|
} else {
|
||||||
throw new EFhirClientException("Invalid format: " + format);
|
throw new EFhirClientException("Invalid format: " + format);
|
||||||
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -14,7 +14,9 @@ public class FHIRBaseToolingClient {
|
||||||
protected int timeoutEntry = DEFAULT_TIMEOUT_ENTRY;
|
protected int timeoutEntry = DEFAULT_TIMEOUT_ENTRY;
|
||||||
protected int timeoutLong = DEFAULT_TIMEOUT_OPERATION_LONG;
|
protected int timeoutLong = DEFAULT_TIMEOUT_OPERATION_LONG;
|
||||||
protected int timeoutExpand = DEFAULT_TIMEOUT_OPERATION_EXPAND;
|
protected int timeoutExpand = DEFAULT_TIMEOUT_OPERATION_EXPAND;
|
||||||
|
|
||||||
|
protected boolean versionInMimeTypes;
|
||||||
|
|
||||||
|
|
||||||
public long getTimeoutNormal() {
|
public long getTimeoutNormal() {
|
||||||
return timeoutNormal;
|
return timeoutNormal;
|
||||||
|
@ -64,5 +66,17 @@ public class FHIRBaseToolingClient {
|
||||||
timeoutLong = i * DEFAULT_TIMEOUT_OPERATION_LONG;
|
timeoutLong = i * DEFAULT_TIMEOUT_OPERATION_LONG;
|
||||||
timeoutExpand = i * DEFAULT_TIMEOUT_OPERATION_EXPAND;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,6 +71,18 @@ public class MimeType {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getSource() {
|
||||||
|
return source;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBase() {
|
||||||
|
return base;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Map<String, String> getParams() {
|
||||||
|
return params;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean hasParam(String name) {
|
public boolean hasParam(String name) {
|
||||||
return params.containsKey(name);
|
return params.containsKey(name);
|
||||||
}
|
}
|
||||||
|
@ -135,4 +147,5 @@ public class MimeType {
|
||||||
return null;
|
return 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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -13,10 +13,10 @@
|
||||||
"valueCode" : "both"
|
"valueCode" : "both"
|
||||||
}],
|
}],
|
||||||
"url" : "http://tx-dev.fhir.org/r2/metadata",
|
"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",
|
"name" : "FHIR Reference Server Conformance Statement",
|
||||||
"status" : "active",
|
"status" : "active",
|
||||||
"date" : "2024-01-04T06:37:42.409Z",
|
"date" : "2024-01-10T04:28:20.082Z",
|
||||||
"contact" : [{
|
"contact" : [{
|
||||||
"telecom" : [{
|
"telecom" : [{
|
||||||
"system" : "other",
|
"system" : "other",
|
||||||
|
@ -27,8 +27,8 @@
|
||||||
"kind" : "instance",
|
"kind" : "instance",
|
||||||
"software" : {
|
"software" : {
|
||||||
"name" : "Reference Server",
|
"name" : "Reference Server",
|
||||||
"version" : "3.0.0",
|
"version" : "3.1.0",
|
||||||
"releaseDate" : "2023-06-19T19:50:55.040Z"
|
"releaseDate" : "2024-01-08T12:29:45.425Z"
|
||||||
},
|
},
|
||||||
"implementation" : {
|
"implementation" : {
|
||||||
"description" : "FHIR Server running at http://tx-dev.fhir.org/r2",
|
"description" : "FHIR Server running at http://tx-dev.fhir.org/r2",
|
||||||
|
|
|
@ -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" : {
|
{"code" : {
|
||||||
"system" : "http://acme.org/devices/clinical-codes",
|
"system" : "http://acme.org/devices/clinical-codes",
|
||||||
"code" : "body-weight",
|
"code" : "body-weight",
|
||||||
|
|
|
@ -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" : {
|
{"code" : {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"code" : "3141-9",
|
"code" : "3141-9",
|
||||||
|
|
|
@ -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" : {
|
{"code" : {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"code" : "27113001",
|
"code" : "27113001",
|
||||||
|
|
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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" : {
|
{"code" : {
|
||||||
"system" : "http://unitsofmeasure.org",
|
"system" : "http://unitsofmeasure.org",
|
||||||
"code" : "[lb_av]"
|
"code" : "[lb_av]"
|
||||||
|
|
|
@ -13,10 +13,10 @@
|
||||||
"valueCode" : "both"
|
"valueCode" : "both"
|
||||||
}],
|
}],
|
||||||
"url" : "http://tx-dev.fhir.org/r3/metadata",
|
"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",
|
"name" : "FHIR Reference Server Conformance Statement",
|
||||||
"status" : "active",
|
"status" : "active",
|
||||||
"date" : "2024-01-04T06:37:48.299Z",
|
"date" : "2024-01-10T04:28:23.535Z",
|
||||||
"contact" : [{
|
"contact" : [{
|
||||||
"telecom" : [{
|
"telecom" : [{
|
||||||
"system" : "other",
|
"system" : "other",
|
||||||
|
@ -27,8 +27,8 @@
|
||||||
"instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"],
|
"instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"],
|
||||||
"software" : {
|
"software" : {
|
||||||
"name" : "Reference Server",
|
"name" : "Reference Server",
|
||||||
"version" : "3.0.0",
|
"version" : "3.1.0",
|
||||||
"releaseDate" : "2023-06-19T19:50:55.040Z"
|
"releaseDate" : "2024-01-08T12:29:45.425Z"
|
||||||
},
|
},
|
||||||
"implementation" : {
|
"implementation" : {
|
||||||
"description" : "FHIR Server running at http://tx-dev.fhir.org/r3",
|
"description" : "FHIR Server running at http://tx-dev.fhir.org/r3",
|
||||||
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -13,10 +13,10 @@
|
||||||
"valueCode" : "both"
|
"valueCode" : "both"
|
||||||
}],
|
}],
|
||||||
"url" : "http://tx-dev.fhir.org/r3/metadata",
|
"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",
|
"name" : "FHIR Reference Server Conformance Statement",
|
||||||
"status" : "active",
|
"status" : "active",
|
||||||
"date" : "2024-01-04T06:37:52.096Z",
|
"date" : "2024-01-10T04:28:27.754Z",
|
||||||
"contact" : [{
|
"contact" : [{
|
||||||
"telecom" : [{
|
"telecom" : [{
|
||||||
"system" : "other",
|
"system" : "other",
|
||||||
|
@ -27,8 +27,8 @@
|
||||||
"instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"],
|
"instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"],
|
||||||
"software" : {
|
"software" : {
|
||||||
"name" : "Reference Server",
|
"name" : "Reference Server",
|
||||||
"version" : "3.0.0",
|
"version" : "3.1.0",
|
||||||
"releaseDate" : "2023-06-19T19:50:55.040Z"
|
"releaseDate" : "2024-01-08T12:29:45.425Z"
|
||||||
},
|
},
|
||||||
"implementation" : {
|
"implementation" : {
|
||||||
"description" : "FHIR Server running at http://tx-dev.fhir.org/r3",
|
"description" : "FHIR Server running at http://tx-dev.fhir.org/r3",
|
||||||
|
|
|
@ -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" : {
|
||||||
"code" : "d"
|
"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": {
|
}, "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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
||||||
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -1,9 +1,9 @@
|
||||||
-------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------
|
||||||
{"code" : {
|
{"code" : {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"code" : "19935-6",
|
"code" : "29463-7",
|
||||||
"display" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter"
|
"display" : "Body Weight"
|
||||||
}, "valueSet" :null, "langs":"fi", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": {
|
}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": {
|
||||||
"resourceType" : "Parameters",
|
"resourceType" : "Parameters",
|
||||||
"parameter" : [{
|
"parameter" : [{
|
||||||
"name" : "profile-url",
|
"name" : "profile-url",
|
||||||
|
@ -11,8 +11,8 @@
|
||||||
}]
|
}]
|
||||||
}}####
|
}}####
|
||||||
v: {
|
v: {
|
||||||
"display" : "Maximum expiratory gas flow Respiratory system airway by Peak flow meter",
|
"display" : "Body weight",
|
||||||
"code" : "19935-6",
|
"code" : "29463-7",
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
@ -24,8 +24,9 @@ v: {
|
||||||
-------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------
|
||||||
{"code" : {
|
{"code" : {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"code" : "19935-6"
|
"code" : "3141-9",
|
||||||
}, "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": {
|
"display" : "Body weight Measured"
|
||||||
|
}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": {
|
||||||
"resourceType" : "Parameters",
|
"resourceType" : "Parameters",
|
||||||
"parameter" : [{
|
"parameter" : [{
|
||||||
"name" : "profile-url",
|
"name" : "profile-url",
|
||||||
|
@ -33,31 +34,8 @@ v: {
|
||||||
}]
|
}]
|
||||||
}}####
|
}}####
|
||||||
v: {
|
v: {
|
||||||
"display" : "ei käännetty",
|
"display" : "Body weight Measured",
|
||||||
"code" : "19935-6",
|
"code" : "3141-9",
|
||||||
"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",
|
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
@ -83,6 +61,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -105,6 +84,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -127,6 +107,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -150,6 +131,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -173,6 +155,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -196,6 +179,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -218,6 +202,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -241,6 +226,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -263,6 +249,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -286,6 +273,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"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) '--')",
|
"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",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"issue" : [{
|
||||||
|
@ -350,6 +339,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -373,6 +363,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -396,6 +387,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -419,6 +411,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -442,6 +435,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -465,6 +459,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -488,6 +483,7 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"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) '--')",
|
"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",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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" : {
|
{"code" : {
|
||||||
|
@ -680,53 +549,6 @@ v: {
|
||||||
"system" : "http://loinc.org",
|
"system" : "http://loinc.org",
|
||||||
"version" : "2.74",
|
"version" : "2.74",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"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" : "",
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
|
|
|
@ -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" : {
|
{"code" : {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"code" : "66493003"
|
"code" : "66493003"
|
||||||
|
@ -15,6 +38,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -38,6 +62,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"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) '--')",
|
"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",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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) '--')",
|
"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",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"issue" : [{
|
||||||
|
@ -143,6 +170,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -166,6 +194,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -189,6 +218,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -212,75 +242,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
"issues" : {
|
"unknown-systems" : "",
|
||||||
"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",
|
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"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'",
|
"error" : "Unknown code '823681000000100' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '886921000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '1077881000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '887181000000106' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '887161000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '1052891000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '715851000000102' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '717121000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '933361000000108' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '887171000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '887201000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '1052951000000105' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '886731000000109' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '887231000000104' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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'",
|
"error" : "Unknown code '9290701000001101' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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" : {
|
{"code" : {
|
||||||
|
@ -904,6 +904,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
}
|
}
|
||||||
|
@ -927,80 +928,7 @@ v: {
|
||||||
"system" : "http://snomed.info/sct",
|
"system" : "http://snomed.info/sct",
|
||||||
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
"version" : "http://snomed.info/sct/900000000000207008/version/20230901",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
"issues" : {
|
"unknown-systems" : "",
|
||||||
"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",
|
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"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'",
|
"error" : "Unknown code '11181000146103' in the CodeSystem 'http://snomed.info/sct' version 'http://snomed.info/sct/900000000000207008/version/20230901'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
||||||
|
|
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
-------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------
|
||||||
{"code" : {
|
{"code" : {
|
||||||
"system" : "http://unitsofmeasure.org",
|
"system" : "http://unitsofmeasure.org",
|
||||||
"code" : "L/min"
|
"code" : "[lb_av]"
|
||||||
}, "valueSet" :null, "langs":"fi", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"false", "profile": {
|
}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"true", "guessSystem":"false", "activeOnly":"false", "membershipOnly":"false", "displayWarningMode":"false", "versionFlexible":"true", "profile": {
|
||||||
"resourceType" : "Parameters",
|
"resourceType" : "Parameters",
|
||||||
"parameter" : [{
|
"parameter" : [{
|
||||||
"name" : "profile-url",
|
"name" : "profile-url",
|
||||||
|
@ -10,8 +10,8 @@
|
||||||
}]
|
}]
|
||||||
}}####
|
}}####
|
||||||
v: {
|
v: {
|
||||||
"display" : "L/min",
|
"display" : "[lb_av]",
|
||||||
"code" : "L/min",
|
"code" : "[lb_av]",
|
||||||
"system" : "http://unitsofmeasure.org",
|
"system" : "http://unitsofmeasure.org",
|
||||||
"version" : "2.0.1",
|
"version" : "2.0.1",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
@ -19,62 +19,6 @@ v: {
|
||||||
"resourceType" : "OperationOutcome"
|
"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" : {
|
{"code" : {
|
||||||
|
@ -93,6 +37,7 @@ v: {
|
||||||
"error" : "Unknown code 'tbl' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'",
|
"error" : "Unknown code 'tbl' in the CodeSystem 'http://unitsofmeasure.org' version '2.0.1'",
|
||||||
"class" : "UNKNOWN",
|
"class" : "UNKNOWN",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"server" : "http://tx-dev.fhir.org/r3",
|
||||||
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome",
|
"resourceType" : "OperationOutcome",
|
||||||
"issue" : [{
|
"issue" : [{
|
||||||
|
@ -149,28 +94,6 @@ v: {
|
||||||
"system" : "http://unitsofmeasure.org",
|
"system" : "http://unitsofmeasure.org",
|
||||||
"version" : "2.0.1",
|
"version" : "2.0.1",
|
||||||
"server" : "http://tx-dev.fhir.org/r3",
|
"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" : "",
|
"unknown-systems" : "",
|
||||||
"issues" : {
|
"issues" : {
|
||||||
"resourceType" : "OperationOutcome"
|
"resourceType" : "OperationOutcome"
|
||||||
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -9,10 +9,10 @@
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
"url" : "http://tx-dev.fhir.org/r4/metadata",
|
"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",
|
"name" : "FHIR Reference Server Conformance Statement",
|
||||||
"status" : "active",
|
"status" : "active",
|
||||||
"date" : "2024-01-04T06:38:17.377Z",
|
"date" : "2024-01-10T04:28:09.566Z",
|
||||||
"contact" : [{
|
"contact" : [{
|
||||||
"telecom" : [{
|
"telecom" : [{
|
||||||
"system" : "other",
|
"system" : "other",
|
||||||
|
@ -23,8 +23,8 @@
|
||||||
"instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"],
|
"instantiates" : ["http://hl7.org/fhir/CapabilityStatement/terminology-server"],
|
||||||
"software" : {
|
"software" : {
|
||||||
"name" : "Reference Server",
|
"name" : "Reference Server",
|
||||||
"version" : "3.0.0",
|
"version" : "3.1.0",
|
||||||
"releaseDate" : "2023-06-19T19:50:55.040Z"
|
"releaseDate" : "2024-01-08T12:29:45.425Z"
|
||||||
},
|
},
|
||||||
"implementation" : {
|
"implementation" : {
|
||||||
"description" : "FHIR Server running at http://tx-dev.fhir.org/r4",
|
"description" : "FHIR Server running at http://tx-dev.fhir.org/r4",
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"version" : "2.0.0",
|
"version" : "2.0.0",
|
||||||
"name" : "FHIR Reference Server Teminology Capability Statement",
|
"name" : "FHIR Reference Server Teminology Capability Statement",
|
||||||
"status" : "active",
|
"status" : "active",
|
||||||
"date" : "2024-01-04T06:38:17.612Z",
|
"date" : "2024-01-10T04:28:09.785Z",
|
||||||
"contact" : [{
|
"contact" : [{
|
||||||
"telecom" : [{
|
"telecom" : [{
|
||||||
"system" : "other",
|
"system" : "other",
|
||||||
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
-------------------------------------------------------------------------------------
|
|
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue