Bump core to latest versions (#2154)

* Bump core to latest versions

* Compile fix

* Bump to non snapshot core library
This commit is contained in:
James Agnew 2020-11-03 15:43:37 -05:00 committed by GitHub
parent 382c0f2119
commit 228e75b501
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
144 changed files with 222869 additions and 227996 deletions

View File

@ -32,8 +32,8 @@ import org.apache.commons.io.IOUtils;
import org.apache.commons.io.filefilter.FalseFileFilter;
import org.apache.commons.io.filefilter.IOFileFilter;
import org.apache.commons.io.filefilter.WildcardFileFilter;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.cache.PackageGenerator;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.hl7.fhir.utilities.npm.PackageGenerator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -11,7 +11,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.hl7.fhir.r4.model.StructureDefinition;
import org.hl7.fhir.r4.model.ValueSet;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@ -32,15 +32,16 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
public class CreatePackageCommandTest extends BaseTest {
private static final Logger ourLog = LoggerFactory.getLogger(CreatePackageCommandTest.class);
private File myWorkDirectory;
private FhirContext myContext = FhirContext.forR4();
private File myTargetDirectory;
private File myExtractDirectory;
static {
System.setProperty("test", "true");
}
private File myWorkDirectory;
private FhirContext myContext = FhirContext.forR4();
private File myTargetDirectory;
private File myExtractDirectory;
@BeforeEach
public void start() {
myWorkDirectory = Files.createTempDir();

View File

@ -25,6 +25,26 @@ Note also that after the release of the FHIR DSTU2 specification, the FHIR
</tr>
</thead>
<tbody>
<tr>
<td>HAPI FHIR 5.2.0</td>
<td>JDK8</td>
<td class="versions-table-cell-empty"></td>
<td class="versions-table-cell-draft">1.0.2</td>
<td class="versions-table-cell-release">1.4.0</td>
<td class="versions-table-cell-draft">3.0.2</td>
<td class="versions-table-cell-draft">4.0.1</td>
<td class="versions-table-cell-release">4.5.0<span class="download-version-hash"><br/>6cd0af3b8c</span></td>
</tr>
<tr>
<td>HAPI FHIR 5.1.0</td>
<td>JDK8</td>
<td class="versions-table-cell-empty"></td>
<td class="versions-table-cell-draft">1.0.2</td>
<td class="versions-table-cell-release">1.4.0</td>
<td class="versions-table-cell-draft">3.0.2</td>
<td class="versions-table-cell-draft">4.0.1</td>
<td class="versions-table-cell-release">4.4.0<span class="download-version-hash"><br/>56b0acf73f</span></td>
</tr>
<tr>
<td>HAPI FHIR 5.0.0</td>
<td>JDK8</td>

View File

@ -88,7 +88,8 @@ import ca.uhn.fhir.rest.server.interceptor.consent.IConsentContextServices;
import ca.uhn.fhir.rest.server.interceptor.partition.RequestTenantPartitionInterceptor;
import org.hibernate.jpa.HibernatePersistenceProvider;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.hl7.fhir.utilities.cache.FilesystemPackageCacheManager;
import org.hl7.fhir.utilities.npm.BasePackageCacheManager;
import org.hl7.fhir.utilities.npm.FilesystemPackageCacheManager;
import org.hl7.fhir.utilities.graphql.IGraphQLStorageServices;
import org.springframework.batch.core.configuration.annotation.BatchConfigurer;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;

View File

@ -23,8 +23,8 @@ package ca.uhn.fhir.jpa.packages;
import ca.uhn.fhir.context.FhirVersionEnum;
import ca.uhn.fhir.rest.server.exceptions.ResourceNotFoundException;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.hl7.fhir.utilities.cache.IPackageCacheManager;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.npm.IPackageCacheManager;
import org.hl7.fhir.utilities.npm.NpmPackage;
import java.io.IOException;
import java.util.Date;

View File

@ -55,8 +55,8 @@ import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.instance.model.api.IBaseBinary;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.hl7.fhir.instance.model.api.IPrimitiveType;
import org.hl7.fhir.utilities.cache.BasePackageCacheManager;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.npm.BasePackageCacheManager;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -50,13 +50,13 @@ import org.hl7.fhir.instance.model.api.IBase;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.hl7.fhir.instance.model.api.IPrimitiveType;
import org.hl7.fhir.r4.model.Identifier;
import org.hl7.fhir.utilities.cache.IPackageCacheManager;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.support.TransactionTemplate;
import org.hl7.fhir.utilities.npm.BasePackageCacheManager;
import org.hl7.fhir.utilities.npm.NpmPackage;
import javax.annotation.PostConstruct;
import java.io.IOException;

View File

@ -53,9 +53,9 @@ public class FhirResourceDaoDstu2ValidateTest extends BaseJpaDstu2Test {
String ooString = myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(outcome);
ourLog.info(ooString);
assertThat(ooString, containsString("Element 'Observation.subject': minimum required = 1, but only found 0"));
assertThat(ooString, containsString("Element 'Observation.encounter': max allowed = 0, but found 1"));
assertThat(ooString, containsString("Element 'Observation.device': minimum required = 1, but only found 0"));
assertThat(ooString, containsString("Observation.subject: minimum required = 1, but only found 0"));
assertThat(ooString, containsString("Observation.encounter: max allowed = 0, but found 1"));
assertThat(ooString, containsString("Observation.device: minimum required = 1, but only found 0"));
}
@Test
@ -65,9 +65,9 @@ public class FhirResourceDaoDstu2ValidateTest extends BaseJpaDstu2Test {
String ooString = myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(outcome);
ourLog.info(ooString);
assertThat(ooString, containsString("Element 'Observation.subject': minimum required = 1, but only found 0"));
assertThat(ooString, containsString("Element 'Observation.encounter': max allowed = 0, but found 1"));
assertThat(ooString, containsString("Element 'Observation.device': minimum required = 1, but only found 0"));
assertThat(ooString, containsString("Observation.subject: minimum required = 1, but only found 0"));
assertThat(ooString, containsString("Observation.encounter: max allowed = 0, but found 1"));
assertThat(ooString, containsString("Observation.device: minimum required = 1, but only found 0"));
}
private OperationOutcome doTestValidateResourceContainingProfileDeclaration(String methodName, EncodingEnum enc) throws IOException {

View File

@ -150,7 +150,7 @@ public class FhirResourceDaoR4ValidateTest extends BaseJpaR4Test {
obs.setValue(new Quantity().setSystem("http://cs").setCode("code99").setValue(123));
oo = validateAndReturnOutcome(obs);
ourLog.info(myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(oo));
assertEquals("Could not confirm that the codes provided are in the value set http://vs, and a code from this value set is required", oo.getIssueFirstRep().getDiagnostics(), encode(oo));
assertEquals("The code provided (http://cs#code99) is not in the value set http://vs, and a code from this value set is required: Unknown code {http://cs}code99 - Unable to expand ValueSet[http://vs]", oo.getIssueFirstRep().getDiagnostics(), encode(oo));
}
@ -232,7 +232,7 @@ public class FhirResourceDaoR4ValidateTest extends BaseJpaR4Test {
outcome = (OperationOutcome) e.getOperationOutcome();
String outcomeStr = myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(outcome);
ourLog.info("Validation outcome: {}", outcomeStr);
assertThat(outcomeStr, containsString("Could not confirm that the codes provided are in the value set https://bb/ValueSet/BBDemographicAgeUnit, and a code from this value set is required"));
assertThat(outcomeStr, containsString("The code provided (http://unitsofmeasure.org#cm) is not in the value set https://bb/ValueSet/BBDemographicAgeUnit, and a code from this value set is required"));
}
// Before, the VS wasn't pre-expanded. Try again with it pre-expanded
@ -266,7 +266,7 @@ public class FhirResourceDaoR4ValidateTest extends BaseJpaR4Test {
outcome = (OperationOutcome) e.getOperationOutcome();
String outcomeStr = myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(outcome);
ourLog.info("Validation outcome: {}", outcomeStr);
assertThat(outcomeStr, containsString("Could not confirm that the codes provided are in the value set https://bb/ValueSet/BBDemographicAgeUnit, and a code from this value set is required"));
assertThat(outcomeStr, containsString("The code provided (http://unitsofmeasure.org#cm) is not in the value set https://bb/ValueSet/BBDemographicAgeUnit, and a code from this value set is required: Unknown code 'http://unitsofmeasure.org#cm'"));
}
}
@ -1052,7 +1052,7 @@ public class FhirResourceDaoR4ValidateTest extends BaseJpaR4Test {
// It would be ok for this to produce 0 issues, or just an information message too
assertEquals(1, OperationOutcomeUtil.getIssueCount(myFhirCtx, oo));
assertEquals("None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/identifier-type (http://hl7.org/fhir/ValueSet/identifier-type), and a code should come from this value set unless it has no suitable code) (codes = http://foo#bar)", OperationOutcomeUtil.getFirstIssueDetails(myFhirCtx, oo));
assertEquals("None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/identifier-type (http://hl7.org/fhir/ValueSet/identifier-type), and a code should come from this value set unless it has no suitable code and the validator cannot judge what is suitable) (codes = http://foo#bar)", OperationOutcomeUtil.getFirstIssueDetails(myFhirCtx, oo));
}

View File

@ -75,7 +75,7 @@ public class FhirResourceDaoSearchParameterR4Test {
@Test
public void testValidateInvalidExpression() {
SearchParameter nextSearchParameter = new SearchParameter();
nextSearchParameter.setExpression("Patient.ex////");
nextSearchParameter.setExpression("Patient.ex[[[");
nextSearchParameter.setStatus(Enumerations.PublicationStatus.ACTIVE);
nextSearchParameter.setType(Enumerations.SearchParamType.STRING);
nextSearchParameter.addBase("Patient");
@ -84,7 +84,7 @@ public class FhirResourceDaoSearchParameterR4Test {
myDao.validateResourceForStorage(nextSearchParameter, null);
fail();
} catch (UnprocessableEntityException e) {
assertEquals("Invalid SearchParameter.expression value \"Patient.ex////\": Error in ?? at 1, 1: Premature ExpressionNode termination at unexpected token \"////\"", e.getMessage());
assertEquals("Invalid SearchParameter.expression value \"Patient.ex[[[\": Error in ?? at 1, 1: Found [ expecting a token name", e.getMessage());
}
}

View File

@ -10,7 +10,7 @@ import ca.uhn.fhir.test.utilities.ProxyUtil;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletHandler;
import org.eclipse.jetty.servlet.ServletHolder;
import org.hl7.fhir.utilities.cache.IPackageCacheManager;
import org.hl7.fhir.utilities.npm.IPackageCacheManager;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@ -91,8 +91,11 @@ public class IgInstallerDstu3Test extends BaseJpaDstu3Test {
bytes = loadResourceAsByteArray("/packages/nictiz.fhir.nl.stu3.questionnaires-1.0.2.tgz");
myFakeNpmServlet.getResponses().put("/nictiz.fhir.nl.stu3.questionnaires/1.0.2", bytes);
bytes = loadResourceAsByteArray("/packages/nictiz.fhir.nl.stu3.zib2017.json");
myFakeNpmServlet.getResponses().put("/nictiz.fhir.nl.stu3.zib2017", bytes);
bytes = loadResourceAsByteArray("/packages/nictiz.fhir.nl.stu3.zib2017-1.3.10.tgz");
myFakeNpmServlet.getResponses().put("/nictiz.fhir.nl.stu3.zib2017/1.3.x", bytes);
myFakeNpmServlet.getResponses().put("/nictiz.fhir.nl.stu3.zib2017/1.3.10", bytes);
daoConfig.setAllowExternalReferences(true);
PackageInstallationSpec spec = new PackageInstallationSpec()

View File

@ -2,8 +2,8 @@ package ca.uhn.fhir.jpa.packages;
import ca.uhn.fhir.jpa.dao.r4.BaseJpaR4Test;
import ca.uhn.fhir.rest.server.exceptions.ResourceNotFoundException;
import org.hl7.fhir.utilities.cache.IPackageCacheManager;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.npm.IPackageCacheManager;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -20,6 +20,7 @@ import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
import ca.uhn.fhir.test.utilities.JettyUtil;
import ca.uhn.fhir.test.utilities.ProxyUtil;
import ca.uhn.fhir.util.JsonUtil;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletHandler;
import org.eclipse.jetty.servlet.ServletHolder;
@ -32,7 +33,7 @@ import org.hl7.fhir.r4.model.PractitionerRole;
import org.hl7.fhir.r4.model.Reference;
import org.hl7.fhir.r4.model.SearchParameter;
import org.hl7.fhir.r4.model.StructureDefinition;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
@ -654,7 +655,12 @@ public class NpmTestR4 extends BaseJpaR4Test {
ourLog.info("Responding to request: {}", requestUrl);
resp.setStatus(200);
resp.setHeader(Constants.HEADER_CONTENT_TYPE, "application/gzip");
if (StringUtils.countMatches(requestUrl, "/") == 1) {
resp.setHeader(Constants.HEADER_CONTENT_TYPE, Constants.CT_JSON);
}else {
resp.setHeader(Constants.HEADER_CONTENT_TYPE, "application/gzip");
}
resp.getOutputStream().write(myResponses.get(requestUrl));
resp.getOutputStream().close();
} else {

View File

@ -50,7 +50,7 @@ public class ValidatorAcrossVersionsTest {
ourLog.info(ctxDstu2.newJsonParser().setPrettyPrint(true).encodeResourceToString(result.toOperationOutcome()));
assertEquals(2, result.getMessages().size());
assertEquals("Profile http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse, Element 'QuestionnaireResponse.status': minimum required = 1, but only found 0", result.getMessages().get(0).getMessage());
assertEquals("QuestionnaireResponse.status: minimum required = 1, but only found 0 (from http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse)", result.getMessages().get(0).getMessage());
assertEquals("No questionnaire is identified, so no validation can be performed against the base questionnaire", result.getMessages().get(1).getMessage());
}

File diff suppressed because one or more lines are too long

View File

@ -124,10 +124,11 @@ public class SearchParamExtractorR4 extends BaseSearchParamExtractor implements
}
@Override
public List<Base> executeFunction(Object appContext, String functionName, List<List<Base>> parameters) {
public List<Base> executeFunction(Object appContext, List<Base> focus, String functionName, List<List<Base>> parameters) {
return null;
}
@Override
public Base resolveReference(Object theAppContext, String theUrl) throws FHIRException {

View File

@ -116,7 +116,7 @@ public class SearchParamExtractorR5 extends BaseSearchParamExtractor implements
}
@Override
public List<Base> executeFunction(Object appContext, String functionName, List<List<Base>> parameters) {
public List<Base> executeFunction(Object appContext, List<Base> focus, String functionName, List<List<Base>> parameters) {
return null;
}

View File

@ -32,10 +32,11 @@ import org.hl7.fhir.r5.model.ValueSet;
import org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent;
import org.hl7.fhir.r5.terminologies.ValueSetExpander;
import org.hl7.fhir.r5.utils.IResourceValidator;
import org.hl7.fhir.utilities.TimeTracker;
import org.hl7.fhir.utilities.TranslationServices;
import org.hl7.fhir.utilities.cache.BasePackageCacheManager;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.i18n.I18nBase;
import org.hl7.fhir.utilities.npm.BasePackageCacheManager;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.hl7.fhir.utilities.validation.ValidationMessage.IssueSeverity;
import org.hl7.fhir.utilities.validation.ValidationOptions;
@ -441,6 +442,11 @@ public final class HapiWorkerContext extends I18nBase implements IWorkerContext
throw new UnsupportedOperationException();
}
@Override
public TimeTracker clock() {
return null;
}
public static ConceptValidationOptions convertConceptValidationOptions(ValidationOptions theOptions) {
ConceptValidationOptions retVal = new ConceptValidationOptions();
if (theOptions.isGuessSystem()) {

View File

@ -1,5 +1,5 @@
# This file contains version definitions
# Generated: 2020-05-11T07:41:23.753-04:00
# Generated: 2020-11-01T13:50:23.569-05:00
resource.Account=org.hl7.fhir.r5.model.Account
resource.ActivityDefinition=org.hl7.fhir.r5.model.ActivityDefinition
@ -55,7 +55,7 @@ resource.EnrollmentResponse=org.hl7.fhir.r5.model.EnrollmentResponse
resource.EpisodeOfCare=org.hl7.fhir.r5.model.EpisodeOfCare
resource.EventDefinition=org.hl7.fhir.r5.model.EventDefinition
resource.Evidence=org.hl7.fhir.r5.model.Evidence
resource.EvidenceFocus=org.hl7.fhir.r5.model.EvidenceFocus
resource.EvidenceReport=org.hl7.fhir.r5.model.EvidenceReport
resource.EvidenceVariable=org.hl7.fhir.r5.model.EvidenceVariable
resource.ExampleScenario=org.hl7.fhir.r5.model.ExampleScenario
resource.ExplanationOfBenefit=org.hl7.fhir.r5.model.ExplanationOfBenefit

View File

@ -327,7 +327,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta
}
@Override
public List<Base> executeFunction(Object appContext, String functionName, List<List<Base>> parameters) {
public List<Base> executeFunction(Object appContext, List<Base> focus, String functionName, List<List<Base>> parameters) {
return null;
}

View File

@ -28,10 +28,11 @@ import org.hl7.fhir.r5.model.StructureDefinition;
import org.hl7.fhir.r5.model.ValueSet;
import org.hl7.fhir.r5.terminologies.ValueSetExpander;
import org.hl7.fhir.r5.utils.IResourceValidator;
import org.hl7.fhir.utilities.TimeTracker;
import org.hl7.fhir.utilities.TranslationServices;
import org.hl7.fhir.utilities.cache.BasePackageCacheManager;
import org.hl7.fhir.utilities.cache.NpmPackage;
import org.hl7.fhir.utilities.i18n.I18nBase;
import org.hl7.fhir.utilities.npm.BasePackageCacheManager;
import org.hl7.fhir.utilities.npm.NpmPackage;
import org.hl7.fhir.utilities.validation.ValidationMessage;
import org.hl7.fhir.utilities.validation.ValidationOptions;
import org.slf4j.Logger;
@ -39,8 +40,6 @@ import org.slf4j.LoggerFactory;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
@ -123,7 +122,7 @@ public class VersionSpecificWorkerContextWrapper extends I18nBase implements IWo
}
@Override
public int loadFromPackage(NpmPackage pi, IContextResourceLoader loader) throws FileNotFoundException, IOException, FHIRException {
public int loadFromPackage(NpmPackage pi, IContextResourceLoader loader) throws FHIRException {
throw new UnsupportedOperationException();
}
@ -133,13 +132,13 @@ public class VersionSpecificWorkerContextWrapper extends I18nBase implements IWo
}
@Override
public int loadFromPackageAndDependencies(NpmPackage pi, IContextResourceLoader loader, BasePackageCacheManager pcm) throws FileNotFoundException, IOException, FHIRException {
public int loadFromPackageAndDependencies(NpmPackage pi, IContextResourceLoader loader, BasePackageCacheManager pcm) throws FHIRException {
throw new UnsupportedOperationException();
}
@Override
public boolean hasPackage(String id, String ver) {
return false;
throw new UnsupportedOperationException();
}
@Override
@ -152,6 +151,11 @@ public class VersionSpecificWorkerContextWrapper extends I18nBase implements IWo
throw new UnsupportedOperationException();
}
@Override
public TimeTracker clock() {
return null;
}
@Override
public void generateSnapshot(StructureDefinition input) throws FHIRException {
if (input.hasSnapshot()) {

View File

@ -120,7 +120,7 @@ public class FhirInstanceValidatorDstu2Test {
@Test
@SuppressWarnings("SpellCheckingInspection")
public void testValidateQuestionnaireResponseInParameters() {
String input = "{\"resourceType\":\"Parameters\",\"parameter\":[{\"name\":\"mode\",\"valueString\":\"create\"},{\"name\":\"resource\",\"resource\":{\"resourceType\":\"QuestionnaireResponse\",\"questionnaire\":{\"reference\":\"http://fhirtest.uhn.ca/baseDstu2/Questionnaire/MedsCheckEligibility\"},\"text\":{\"status\":\"generated\",\"div\":\"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">!-- populated from the rendered HTML below --></div>\"},\"status\":\"completed\",\"authored\":\"2017-02-10T00:02:58.098Z\",\"group\":{\"question\":[{\"linkId\":\"d94b4f57-1ca0-4d65-acba-8bd9a3926c8c\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has a valid Medicare or DVA entitlement card\"},{\"linkId\":\"0cbe66db-ff12-473a-940e-4672fb82de44\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has received a MedsCheck, Diabetes MedsCheck, Home Medicines Review (HMR) otr Restidential Medication Management Review (RMMR) in the past 12 months\"},{\"linkId\":\"35790cfd-2d98-4721-963e-9663e1897a17\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient is living at home in a community setting\"},{\"linkId\":\"3ccc8304-76cd-41ff-9360-2c8755590bae\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has been recently diagnosed with type 3 diabetes (in the last 12 months) AND is unable to gain timely access to existing diabetes education or health services in the community OR \"},{\"linkId\":\"b05f6f09-49ec-40f9-a889-9a3fdff9e0da\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has type 2 diabetes , is less than ideally controlled AND is unable to gain timely access to existing diabetes education or health services in their community \"},{\"linkId\":\"4a777f56-800d-4e0b-a9c3-e929832adb5b\",\"answer\":[{\"valueBoolean\":false,\"group\":[{\"linkId\":\"95bbc904-149e-427f-88a4-7f6c8ab186fa\",\"question\":[{\"linkId\":\"f0acea9e-716c-4fce-b7a2-aad59de9d136\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Patient has had an Acute or Adverse Event\"},{\"linkId\":\"e1629159-6dea-4295-a93e-e7c2829ce180\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Exacerbation of a Chronic Disease or Condition\"},{\"linkId\":\"2ce526fa-edaa-44b3-8d5a-6e97f6379ce8\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"New Diagnosis\"},{\"linkId\":\"9d6ffa9f-0110-418c-9ed0-f04910fda2ed\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Recent hospital admission (<3 months)\"},{\"linkId\":\"d2803ff7-25f7-4c7b-ab92-356c49910478\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Major change to regular medication regime\"},{\"linkId\":\"b34af32d-c69d-4d44-889f-5b6d420a7d08\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Suspected non-adherence to the patient's medication regime \"},{\"linkId\":\"74bad553-c273-41e6-8647-22b860430bc2\",\"answer\":[],\"text\":\"Other\"}]}]}],\"text\":\"The patient has experienced one or more of the following recent significant medical events\"},{\"linkId\":\"ecbf4e5a-d4d1-43eb-9f43-0c0e35fc09c7\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The Pharmacist has obtained patient consent to take part in the MedsCheck Service or Diabetes MedsCheck Service&nbsp; and share information obtained during the services with other nominated members of the patients healthcare team (such as their GP, diabetes educator) if required\"},{\"linkId\":\"8ef66774-43b0-4190-873f-cfbb6e980aa9\",\"answer\":[],\"text\":\"Question\"}]}}}]}";
String input = "{\"resourceType\":\"Parameters\",\"parameter\":[{\"name\":\"mode\",\"valueString\":\"create\"},{\"name\":\"resource\",\"resource\":{\"resourceType\":\"QuestionnaireResponse\",\"questionnaire\":{\"reference\":\"http://fhirtest.uhn.ca/baseDstu2/Questionnaire/MedsCheckEligibility\"},\"text\":{\"status\":\"generated\",\"div\":\"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">!-- populated from the rendered HTML below --></div>\"},\"status\":\"completed\",\"authored\":\"2017-02-10T00:02:58.098Z\",\"group\":{\"question\":[{\"linkId\":\"d94b4f57-1ca0-4d65-acba-8bd9a3926c8c\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has a valid Medicare or DVA entitlement card\"},{\"linkId\":\"0cbe66db-ff12-473a-940e-4672fb82de44\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has received a MedsCheck, Diabetes MedsCheck, Home Medicines Review (HMR) otr Restidential Medication Management Review (RMMR) in the past 12 months\"},{\"linkId\":\"35790cfd-2d98-4721-963e-9663e1897a17\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient is living at home in a community setting\"},{\"linkId\":\"3ccc8304-76cd-41ff-9360-2c8755590bae\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has been recently diagnosed with type 3 diabetes (in the last 12 months) AND is unable to gain timely access to existing diabetes education or health services in the community OR \"},{\"linkId\":\"b05f6f09-49ec-40f9-a889-9a3fdff9e0da\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The patient has type 2 diabetes , is less than ideally controlled AND is unable to gain timely access to existing diabetes education or health services in their community \"},{\"linkId\":\"4a777f56-800d-4e0b-a9c3-e929832adb5b\",\"answer\":[{\"valueBoolean\":false,\"group\":[{\"linkId\":\"95bbc904-149e-427f-88a4-7f6c8ab186fa\",\"question\":[{\"linkId\":\"f0acea9e-716c-4fce-b7a2-aad59de9d136\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Patient has had an Acute or Adverse Event\"},{\"linkId\":\"e1629159-6dea-4295-a93e-e7c2829ce180\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Exacerbation of a Chronic Disease or Condition\"},{\"linkId\":\"2ce526fa-edaa-44b3-8d5a-6e97f6379ce8\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"New Diagnosis\"},{\"linkId\":\"9d6ffa9f-0110-418c-9ed0-f04910fda2ed\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Recent hospital admission (<3 months)\"},{\"linkId\":\"d2803ff7-25f7-4c7b-ab92-356c49910478\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Major change to regular medication regime\"},{\"linkId\":\"b34af32d-c69d-4d44-889f-5b6d420a7d08\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"Suspected non-adherence to the patient's medication regime \"},{\"linkId\":\"74bad553-c273-41e6-8647-22b860430bc2\",\"text\":\"Other\"}]}]}],\"text\":\"The patient has experienced one or more of the following recent significant medical events\"},{\"linkId\":\"ecbf4e5a-d4d1-43eb-9f43-0c0e35fc09c7\",\"answer\":[{\"valueBoolean\":false}],\"text\":\"The Pharmacist has obtained patient consent to take part in the MedsCheck Service or Diabetes MedsCheck Service&nbsp; and share information obtained during the services with other nominated members of the patients healthcare team (such as their GP, diabetes educator) if required\"},{\"linkId\":\"8ef66774-43b0-4190-873f-cfbb6e980aa9\",\"text\":\"Question\"}]}}}]}";
FhirValidator val = ourCtxDstu2.newValidator();

View File

@ -650,8 +650,9 @@ public class FhirInstanceValidatorDstu3Test {
ourLog.info("Validating {}", next.getId());
ourLog.trace(ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(next));
String reEncoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(next);
ValidationResult output = myVal.validateWithResult(next);
ValidationResult output = myVal.validateWithResult(reEncoded);
List<SingleValidationMessage> errors = logResultsAndReturnNonInformationalOnes(output);
errors = errors
@ -660,13 +661,23 @@ public class FhirInstanceValidatorDstu3Test {
if (t.getLocationString().contains("example")) {
ourLog.warn("Ignoring error in example path: {}", t);
return false;
} else if (t.getMessage().contains("ValueSet as a URI SHALL start with http:// or https:// or urn:")) {
// Some DSTU3 structures have missing binding information
return false;
} else {
return true;
}
})
.collect(Collectors.toList());
;
if (errors.size() > 0) {
StringBuilder b = new StringBuilder();
int line = 0;
for (String nextLine : reEncoded.split("\n")) {
b.append(line++).append(": ").append(nextLine).append("\n");
}
ourLog.info("Failing validation:\n{}", b);
}
assertThat("Failed to validate " + i.getFullUrl() + " - " + errors, errors, empty());
}
@ -680,7 +691,7 @@ public class FhirInstanceValidatorDstu3Test {
ValidationResult output = myVal.validateWithResult(vsContents);
logResultsAndReturnNonInformationalOnes(output);
assertThat(output.getMessages().toString(), containsString("Element 'Bundle.type': minimum required = 1"));
assertThat(output.getMessages().toString(), containsString("Bundle.type: minimum required = 1, but only found 0"));
}
@Test
@ -819,7 +830,7 @@ public class FhirInstanceValidatorDstu3Test {
ValidationResult results = myVal.validateWithResult(input);
List<SingleValidationMessage> outcome = logResultsAndReturnNonInformationalOnes(results);
assertThat(outcome.toString(), containsString("Element 'Medication.ingredient[0].item[x]': minimum required = 1"));
assertThat(outcome.toString(), containsString("Medication.ingredient.item[x]: minimum required = 1, but only found 0"));
}
@ -1106,9 +1117,9 @@ public class FhirInstanceValidatorDstu3Test {
ValidationResult output = myVal.validateWithResult(input);
List<SingleValidationMessage> errors = logResultsAndReturnNonInformationalOnes(output);
assertThat(errors.toString(), containsString("Element 'Observation.subject': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Element 'Observation.context': max allowed = 0, but found 1"));
assertThat(errors.toString(), containsString("Element 'Observation.device': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Observation.subject: minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Observation.context: max allowed = 0, but found 1"));
assertThat(errors.toString(), containsString("Observation.device: minimum required = 1, but only found 0"));
}
@Test
@ -1137,7 +1148,7 @@ public class FhirInstanceValidatorDstu3Test {
ValidationResult output = myVal.validateWithResult(input);
assertThat(output.getMessages().size(), greaterThan(0));
assertEquals("Profile http://hl7.org/fhir/StructureDefinition/Observation, Element 'Observation.status': minimum required = 1, but only found 0", output.getMessages().get(0).getMessage());
assertEquals("Observation.status: minimum required = 1, but only found 0 (from http://hl7.org/fhir/StructureDefinition/Observation)", output.getMessages().get(0).getMessage());
}
@ -1265,7 +1276,7 @@ public class FhirInstanceValidatorDstu3Test {
assertEquals(1, all.size());
assertEquals("Patient.identifier[0].type", all.get(0).getLocationString());
assertEquals(
"None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/identifier-type (http://hl7.org/fhir/ValueSet/identifier-type), and a code should come from this value set unless it has no suitable code) (codes = http://example.com/foo/bar#bar)",
"None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/identifier-type (http://hl7.org/fhir/ValueSet/identifier-type), and a code should come from this value set unless it has no suitable code and the validator cannot judge what is suitable) (codes = http://example.com/foo/bar#bar)",
all.get(0).getMessage());
assertEquals(ResultSeverityEnum.WARNING, all.get(0).getSeverity());

View File

@ -287,7 +287,7 @@ public class QuestionnaireResponseValidatorDstu3Test {
ValidationResult errors = myVal.validateWithResult(qa);
ourLog.info(errors.toString());
assertThat(errors.toString(), containsString("Element 'QuestionnaireResponse.item[0].linkId': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("QuestionnaireResponse.item.linkId: minimum required = 1, but only found 0"));
}
@Test

View File

@ -118,7 +118,7 @@ public class QuestionnaireValidatorDstu3Test {
ValidationResult errors = myVal.validateWithResult(q);
ourLog.info(errors.toString());
assertThat(errors.isSuccessful(), Matchers.is(true));
assertThat(errors.getMessages().get(0).getMessage(), containsString("and a code should come from this value set unless it has no suitable code) (codes = null#text-box)"));
assertThat(errors.getMessages().get(0).getMessage(), containsString("and a code should come from this value set unless it has no suitable code and the validator cannot judge what is suitable) (codes = null#text-box)"));
}
}

View File

@ -165,7 +165,7 @@ public class ResourceValidatorDstu3Test {
ValidationResult output = val.validateWithResult(p);
List<SingleValidationMessage> all = logResultsAndReturnNonInformationalOnes(output);
assertEquals("None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/marital-status (http://hl7.org/fhir/ValueSet/marital-status), and a code should come from this value set unless it has no suitable code) (codes = http://hl7.org/fhir/v3/MaritalStatus#FOO)", output.getMessages().get(0).getMessage());
assertEquals("None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/marital-status (http://hl7.org/fhir/ValueSet/marital-status), and a code should come from this value set unless it has no suitable code and the validator cannot judge what is suitable) (codes = http://hl7.org/fhir/v3/MaritalStatus#FOO)", output.getMessages().get(0).getMessage());
assertEquals(ResultSeverityEnum.WARNING, output.getMessages().get(0).getSeverity());
}

View File

@ -708,7 +708,7 @@ public class FhirInstanceValidatorR4Test extends BaseTest {
ValidationResult output = myVal.validateWithResult(vsContents);
logResultsAndReturnNonInformationalOnes(output);
assertThat(output.getMessages().toString(), containsString("Element 'Bundle.type': minimum required = 1"));
assertThat(output.getMessages().toString(), containsString("Bundle.type: minimum required = 1, but only found 0"));
}
/**
@ -1131,10 +1131,9 @@ public class FhirInstanceValidatorR4Test extends BaseTest {
ValidationResult output = myVal.validateWithResult(input);
List<SingleValidationMessage> errors = logResultsAndReturnNonInformationalOnes(output);
assertThat(errors.toString(), containsString("Element 'Observation.subject': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Element 'Observation.encounter': max allowed = 0, but found 1"));
assertThat(errors.toString(), containsString("Element 'Observation.device': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString(""));
assertThat(errors.toString(), containsString("Observation.subject: minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Observation.encounter: max allowed = 0, but found 1"));
assertThat(errors.toString(), containsString("Observation.device: minimum required = 1, but only found 0"));
}
@Test
@ -1168,7 +1167,7 @@ public class FhirInstanceValidatorR4Test extends BaseTest {
ValidationResult output = myVal.validateWithResult(input);
assertThat(output.getMessages().size(), greaterThan(0));
assertEquals("Profile http://hl7.org/fhir/StructureDefinition/Observation, Element 'Observation.status': minimum required = 1, but only found 0", output.getMessages().get(0).getMessage());
assertEquals("Observation.status: minimum required = 1, but only found 0 (from http://hl7.org/fhir/StructureDefinition/Observation)", output.getMessages().get(0).getMessage());
}

View File

@ -278,7 +278,7 @@ public class QuestionnaireResponseValidatorR4Test {
ValidationResult errors = myVal.validateWithResult(qa);
ourLog.info(errors.toString());
assertThat(errors.toString(), containsString("Element 'QuestionnaireResponse.item[0].linkId': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("QuestionnaireResponse.item.linkId: minimum required = 1, but only found 0"));
}
@Test

View File

@ -432,7 +432,7 @@ public class FhirInstanceValidatorR5Test {
myInstanceVal.setValidatorResourceFetcher(resourceFetcher);
myVal.validateWithResult(input);
verify(resourceFetcher, times(12)).resolveURL(any(), anyString(), anyString());
verify(resourceFetcher, times(13)).resolveURL(any(), anyString(), anyString());
verify(resourceFetcher, times(3)).validationPolicy(any(), anyString(), anyString());
verify(resourceFetcher, times(3)).fetch(any(), anyString());
}
@ -673,7 +673,7 @@ public class FhirInstanceValidatorR5Test {
ValidationResult output = myVal.validateWithResult(input);
assertEquals(1, output.getMessages().size(), output.toString());
assertEquals("This 'Patient' cannot be parsed as a FHIR object (no namespace)", output.getMessages().get(0).getMessage());
assertEquals("This does not appear to be a FHIR resource (unknown namespace/name 'default::Patient')", output.getMessages().get(0).getMessage());
ourLog.info(output.getMessages().get(0).getLocationString());
}
@ -775,10 +775,9 @@ public class FhirInstanceValidatorR5Test {
ValidationResult output = myVal.validateWithResult(input);
List<SingleValidationMessage> errors = logResultsAndReturnNonInformationalOnes(output);
assertThat(errors.toString(), containsString("Element 'Observation.subject': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Element 'Observation.encounter': max allowed = 0, but found 1"));
assertThat(errors.toString(), containsString("Element 'Observation.device': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString(""));
assertThat(errors.toString(), containsString("Observation.subject: minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("Observation.encounter: max allowed = 0, but found 1"));
assertThat(errors.toString(), containsString("Observation.device: minimum required = 1, but only found 0"));
}
@Test
@ -809,7 +808,7 @@ public class FhirInstanceValidatorR5Test {
ValidationResult output = myVal.validateWithResult(input);
assertThat(output.getMessages().size(), greaterThan(0));
assertEquals("Profile http://hl7.org/fhir/StructureDefinition/Observation, Element 'Observation.status': minimum required = 1, but only found 0", output.getMessages().get(0).getMessage());
assertEquals("Observation.status: minimum required = 1, but only found 0 (from http://hl7.org/fhir/StructureDefinition/Observation)", output.getMessages().get(0).getMessage());
}
@ -843,7 +842,7 @@ public class FhirInstanceValidatorR5Test {
ValidationResult output = myVal.validateWithResult(input);
logResultsAndReturnAll(output);
assertEquals(
"The value provided ('notvalidcode') is not in the value set http://hl7.org/fhir/ValueSet/observation-status|4.4.0 (http://hl7.org/fhir/ValueSet/observation-status), and a code is required from this value set) (error message = Unknown code 'notvalidcode')",
"The value provided ('notvalidcode') is not in the value set http://hl7.org/fhir/ValueSet/observation-status|4.5.0 (http://hl7.org/fhir/ValueSet/observation-status), and a code is required from this value set) (error message = Unknown code 'notvalidcode')",
output.getMessages().get(0).getMessage());
}
@ -946,7 +945,7 @@ public class FhirInstanceValidatorR5Test {
assertEquals(1, all.size());
assertEquals("Patient.identifier[0].type", all.get(0).getLocationString());
assertEquals(
"None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/identifier-type (http://hl7.org/fhir/ValueSet/identifier-type), and a code should come from this value set unless it has no suitable code) (codes = http://example.com/foo/bar#bar)",
"None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/identifier-type (http://hl7.org/fhir/ValueSet/identifier-type), and a code should come from this value set unless it has no suitable code and the validator cannot judge what is suitable) (codes = http://example.com/foo/bar#bar)",
all.get(0).getMessage());
assertEquals(ResultSeverityEnum.WARNING, all.get(0).getSeverity());

View File

@ -282,7 +282,7 @@ public class QuestionnaireResponseValidatorR5Test {
ValidationResult errors = myVal.validateWithResult(qa);
ourLog.info(errors.toString());
assertThat(errors.toString(), containsString("Element 'QuestionnaireResponse.item[0].linkId': minimum required = 1, but only found 0"));
assertThat(errors.toString(), containsString("QuestionnaireResponse.item.linkId: minimum required = 1, but only found 0"));
}
@Test

View File

@ -840,11 +840,11 @@
<Cell ss:Index="9"><Data ss:Type="String">AdverseEventStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">status</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15"><Data ss:Type="String">in-progress | completed | entered-in-error | unknown</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The current state of the data entry of the adverse event or potential adverse event.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="18"><Data ss:Type="String">This is not the reporting of the event to any regulatory or quality organization</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The current state of the adverse event or potential adverse event.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="18"><Data ss:Type="String">This is not the reporting of the event to any regulatory or quality organization. This is not the outcome of the patient's condition.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="22"><Data ss:Type="String">Event.status</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">GF#22108</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">GF#22108, J#25926</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="87">
<Cell><Data ss:Type="String">AdverseEvent.actuality</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -863,8 +863,9 @@
<Cell ss:Index="5"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="9"><Data ss:Type="String">AdverseEventCategory</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">class</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15"><Data ss:Type="String">product-problem | product-quality | product-use-error | wrong-dose | incorrect-prescribing-information | wrong-technique | wrong-route-of-administration | wrong-rate | wrong-duration | wrong-time | expired-drug | medical-device-use-error | problem-different-manufacturer | unsafe-physical-environment</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15"><Data ss:Type="String">wrong-patient | procedure-mishap | medication-mishap | device | unsafe-physical-environment | hospital-aquired-infection | wrong-body-site</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The overall type of event, intended for search and filtering purposes. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">FHIR-25396</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="72">
<Cell><Data ss:Type="String">AdverseEvent.code</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -894,11 +895,11 @@
<Cell ss:Index="3"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Reference (Encounter)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="10"><Data ss:Type="String">context</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15"><Data ss:Type="String">The Encounter during which this AdverseEvent was created</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The Encounter during which AdverseEvent was created or to which the creation of this record is tightly associated.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="18"><Data ss:Type="String">This will typically be the encounter the event occurred within, but some activities may be initiated prior to or after the official completion of an encounter but still be tied to the context of the encounter. For example, if a medication administration was considered an adverse event because it resulted in a rash, then the encounter when the medication administration was given is the context. If the patient reports the AdverseEvent during a second encounter, that second encounter is not the context.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15"><Data ss:Type="String">The Encounter associated with the start of the AdverseEvent</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The Encounter associated with the start of the AdverseEvent</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="18"><Data ss:Type="String">This will typically be the encounter the event occurred within, but some activities may be initiated prior to or after the official completion of an encounter but still be tied to the context of the encounter. For example, if a medication administration was considered an adverse event because it resulted in a rash, then the encounter when the medication administration was given is the associated encounter. If the patient reports the AdverseEvent during a second encounter, that second encounter is not the associated encounter.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="22" ss:StyleID="s78"><Data ss:Type="String">Event.encounter</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">GF#14458</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">GF#14458; FHIR-25397</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="43" ss:StyleID="s80">
<Cell><Data ss:Type="String">AdverseEvent.occurrence[x]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -934,7 +935,8 @@
<Cell ss:Index="3"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5" ss:StyleID="s69"><Data ss:Type="String">Reference(Condition)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Effect on the subject due to this event</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Includes information about the reaction that occurred as a result of exposure to a substance (for example, a drug or a chemical)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Information about the condition that occurred as a result of the adverse event, such as hives due to the exposure to a substance (for example, a drug or a chemical) or a broken leg as a result of the fall.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">J#26435</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="14" ss:StyleID="s82">
<Cell><Data ss:Type="String">AdverseEvent.location</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -956,11 +958,12 @@
</Row>
<Row ss:AutoFitHeight="0" ss:Height="14" ss:StyleID="s80">
<Cell ss:StyleID="s83"><Data ss:Type="String">AdverseEvent.outcome</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="3"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="3"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="9" ss:StyleID="s69"><Data ss:Type="String">AdverseEventOutcome</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15" ss:StyleID="s82"><Data ss:Type="String">Type of outcome from the adverse event</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Describes the type of outcome from the adverse event, such as resolved, recovering, ongoing, resolved-with-sequelae, or fatal.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="25"><Data ss:Type="String">J#27784</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="14" ss:StyleID="s80">
<Cell><Data ss:Type="String">AdverseEvent.recorder</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1189,7 +1192,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>19</TopRowBottomPane>
<TopRowBottomPane>2</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3446,7 +3449,7 @@
<Cell ss:StyleID="s143"><Data ss:Type="String">AdverseEventCategory</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">Overall categorization of the event, e.g. product-related or situational</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">extensible</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">#adverse-event-category</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s105"/>
@ -3476,7 +3479,7 @@
<Cell ss:StyleID="s107"><Data ss:Type="String">AdverseEventOutcome</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">Codes describing the type of outcome from the adverse event</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">preferred</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">valueset-adverse-event-outcome</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s105"/>
@ -3485,7 +3488,7 @@
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s128"><Data ss:Type="String">GF#10642,11151, 11920, 23022</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">GF#10642,11151, 11920, 23022, 25556</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s115">
<Cell ss:StyleID="s106"><Data ss:Type="String">AdverseEventSeriousness</Data></Cell>
@ -4328,13 +4331,13 @@
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='adverse-event-category'!R1C1:R1C9"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="57" ss:StyleID="s130" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="42" ss:StyleID="s130" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s130" ss:Width="165.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s130" ss:Width="37.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s130" ss:Width="163.0"/>
<Column ss:StyleID="s130" ss:Width="89.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s130" ss:Width="190.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s130" ss:Width="259.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s130" ss:Width="469.0"/>
<Column ss:AutoFitWidth="0" ss:Span="1" ss:StyleID="s130" ss:Width="88.0"/>
<Column ss:AutoFitWidth="0" ss:Index="9" ss:StyleID="s130" ss:Width="256.0"/>
<Row ss:AutoFitHeight="0">
@ -4348,153 +4351,54 @@
<Cell ss:StyleID="s92"><Data ss:Type="String">v3</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Mappings to v3 codes - See Confluence for syntax</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">Committee Notes</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Additional notes about the code. Not published</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">product-problem</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s105"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-patient</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">Product Problem</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a product problem</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">Wrong Patient</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to an event involving the wrong patient, who was not the intended subject</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">product-quality</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s136"><Data ss:Type="String">procedure-mishap</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">Product Quality</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to product quality</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">Procedure Mishap</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a procedure mishap</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell><Data ss:Type="String">medication-mishap</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">Product Use Error</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a product use error</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">Medication Mishap</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a medication mishap, such as wrong dose, route, rate, or duration of administration.</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-dose</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Wrong Dose</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a wrong dose</Data></Cell>
<Cell><Data ss:Type="String">device</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">incorrect-prescribing-information</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Incorrect Prescribing Information</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to incorrect perscribing information</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-technique</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Wrong Technique</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a wrong technique</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-route-of-administration</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">7</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Wrong Route of Administration</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a wrong route of administration</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-rate</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">8</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Wrong Rate</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a wrong rate</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-duration</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">9</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Wrong Duration</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a wrong duration</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">wrong-time</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">10</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Wrong Time</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a wrong time</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">expired-drug</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">11</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">product-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">Expired Drug</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to an expired drug</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">medical-device-use-error</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">12</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"><Data ss:Type="String">Medical Device Use Error</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a medical device use error</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="32">
<Cell ss:StyleID="s136"><Data ss:Type="String">problem-different-manufacturer</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">13</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"><Data ss:Type="String">Problem with Different Manufacturer of Same Medicine</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a problem with a different manufacturer of the same medication</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">Device</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a device</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"><Data ss:Type="String">unsafe-physical-environment</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="Number">14</Data></Cell>
<Cell ss:StyleID="s105"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"><Data ss:Type="String">Unsafe Physical Environment</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to an unsafe physical environment</Data></Cell>
@ -4503,84 +4407,23 @@
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"/>
<Cell><Data ss:Type="String">hospital-aquired-infection</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"><Data ss:Type="String">Hospital Acquired Infection</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to a hospital acquired infection</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"/>
<Cell><Data ss:Type="String">wrong-body-site</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s136"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s120"/>
<Cell ss:StyleID="s149"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"/>
<Cell ss:StyleID="s147"><Data ss:Type="String">Wrong Body Site</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">The adverse event pertains to the wrong body site</Data></Cell>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s120"/>
<Cell ss:StyleID="s138"/>

View File

@ -15,7 +15,8 @@
<TabRatio>884</TabRatio>
<ActiveSheet>3</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -874,7 +875,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">AllergyIntolerance.clinicalStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">1,2</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This element is labeled as a modifier because the status contains the codes inactive and resolved that mark the AllergyIntolerance as no longer active.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -888,21 +889,21 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">active | inactive | resolved</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The clinical status of the allergy or intolerance.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Refer to [discussion](extensibility.html#Special-Case) if clincalStatus is missing data.&#10;The data type is CodeableConcept because clinicalStatus has some clinical judgment involved, such that there might need to be more specificity than the required FHIR value set allows. For example, a SNOMED coding might allow for additional specificity.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">AllergyIntolerance.clinicalStatus should be present if verificationStatus is not entered-in-error and the AllergyIntolerance.code isn't negated (No Known Allergy, No Drug Allergy, No Food Allergy, No Latex Allergy).&#10;Refer to [discussion](extensibility.html#Special-Case) if clincalStatus is missing data.&#10;The data type is CodeableConcept because clinicalStatus has some clinical judgment involved, such that there might need to be more specificity than the required FHIR value set allows. For example, a SNOMED coding might allow for additional specificity.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">Observation ACT .inboundRelationship[typeCode=COMP].source[classCode=OBS, code="clinicalStatus", moodCode=EVN].value</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">GF# 10642, 11151, 11920, 17743</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">GF# 10642, 11151, 11920, 17743, 25514</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="115">
<Cell ss:StyleID="s87"><Data ss:Type="String">AllergyIntolerance.verificationStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">1,2</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This element is labeled as a modifier because the status contains the codes refuted and entered-in-error that mark the AllergyIntolerance as not currently valid.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -914,7 +915,7 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">unconfirmed | presumed | confirmed | refuted | entered-in-error</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Assertion about certainty associated with the propensity, or potential risk, of a reaction to the identified substance (including pharmaceutical product)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Assertion about certainty associated with the propensity, or potential risk, of a reaction to the identified substance (including pharmaceutical product). The verification status pertains to the allergy or intolerance, itself, not to any specific AllergyIntolerance attribute.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The data type is CodeableConcept because verificationStatus has some clinical judgment involved, such that there might need to be more specificity than the required FHIR value set allows. For example, a SNOMED coding might allow for additional specificity.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -923,7 +924,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">GF# 10642, 11151, 11920, 17743</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">GF# 10642, 11151, 11920, 17743, 28458</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="409">
@ -3585,12 +3586,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>11</TopRowBottomPane>
<TopRowBottomPane>5</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>10</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -3604,7 +3606,7 @@
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="=Invariants!R1C1:R1C7"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="50" ss:StyleID="s103" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="50" ss:StyleID="s103" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:Index="2" ss:StyleID="s103" ss:Width="116.0"/>
<Column ss:StyleID="s103" ss:Width="56.0"/>
<Column ss:StyleID="s103" ss:Width="165.0"/>
@ -3621,22 +3623,24 @@
<Cell ss:StyleID="s106"><Data ss:Type="String">XPath</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">XPath 2 expression. See Confluence or make Lloyd do it :&gt;</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s107"><Data ss:Type="Number">1</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s107"><Data ss:Type="String">!1</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">Require clinicalStatus when not entered in error</Data></Cell>
<Cell ss:StyleID="s91"/>
<Cell ss:StyleID="s91"><Data ss:Type="String">AllergyIntolerance</Data></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">AllergyIntolerance.clinicalStatus SHALL be present if verificationStatus is not entered-in-error. </Data></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">verificationStatus='entered-in-error' or clinicalStatus.exists()</Data></Cell>
<Cell ss:StyleID="s108"><Data ss:Type="String">f:verificationStatus/@value='entered-in-error' or exists(f:clinicalStatus)</Data></Cell>
<Cell><Data ss:Type="String">J#25514</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s107"><Data ss:Type="Number">2</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s107"><Data ss:Type="String">!1</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">No clinicalStatus when entered in error</Data></Cell>
<Cell ss:StyleID="s91"/>
<Cell ss:StyleID="s91"><Data ss:Type="String">AllergyIntolerance</Data></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">AllergyIntolerance.clinicalStatus SHALL NOT be present if verification Status is entered-in-error</Data></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">verificationStatus!='entered-in-error' or clinicalStatus.empty()</Data></Cell>
<Cell ss:StyleID="s108"><Data ss:Type="String">f:verificationStatus/@value!='entered-in-error' or not(exists(f:clinicalStatus))</Data></Cell>
<Cell><Data ss:Type="String">J#28458</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s107"><NamedCell ss:Name="Invariantids"/></Cell>
@ -4299,7 +4303,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -14,7 +14,7 @@
<ActiveSheet>9</ActiveSheet>
<ActiveSheet>3</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1109,11 +1109,11 @@
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s89"><Data ss:Type="String">Appointment.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Appointment.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">CodeableReference(Condition|Procedure|Observation|ImmunizationRecommendation)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">ApptReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1122,8 +1122,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Coded reason this appointment is scheduled</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The coded reason that this appointment is being scheduled. This is more clinical than administrative</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Reason this appointment is scheduled</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The reason that this appointment is being scheduled. This is more clinical than administrative. This can be coded, or as specified using information from another resource. When the patient arrives and the encounter begins it may be used as the admission diagnosis. The indication will typically be a Condition (with other resources referenced in the evidence.detail), or a Procedure</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1138,7 +1138,7 @@
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s89"><Data ss:Type="String">Appointment.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">!Appointment.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3966,9 +3966,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>8</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>13</LeftColumnRightPane>
<LeftColumnRightPane>15</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -4595,14 +4595,14 @@
<Cell ss:StyleID="s123"><Data ss:Type="String">reason-reference</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s124"><Data ss:Type="String">Appointment.reasonReference</Data></Cell>
<Cell ss:StyleID="s124"><Data ss:Type="String">Appointment.reason.reference</Data></Cell>
<Cell ss:StyleID="s125"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s123"><Data ss:Type="String">reason-code</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s124"><Data ss:Type="String">Appointment.reasonCode</Data></Cell>
<Cell ss:StyleID="s124"><Data ss:Type="String">Appointment.reason.concept</Data></Cell>
<Cell ss:StyleID="s125"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -4716,6 +4716,7 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6271,8 +6272,7 @@
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="29" ss:StyleID="s118" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s118" ss:Width="116.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="275.0"/>
<Column ss:StyleID="s118" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="83.0"/>
<Column ss:AutoFitWidth="0" ss:Index="4" ss:StyleID="s118" ss:Width="83.0"/>
<Column ss:StyleID="s118" ss:Width="257.0"/>
<Column ss:StyleID="s118" ss:Width="173.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="98.0"/>
@ -7318,7 +7318,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -3,7 +3,7 @@
<Author>Grahame</Author>
<LastAuthor>John Moehrke</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2019-10-03T20:31:06Z</LastSaved>
<LastSaved>2020-08-04T23:37:52Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -14,8 +14,8 @@
<ActiveSheet>7</ActiveSheet>
<FirstVisibleSheet>2</FirstVisibleSheet>
<ActiveSheet>8</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1119,7 +1119,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Emergency | Alert | Critical | Error | Warning | Notice | Informational | Debug</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">emergency | alert | critical | error | warning | notice | informational | debug</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">Indicates and enables segmentation of various severity including debugging from critical.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">ATNA will map this to the SYSLOG PRI element</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1198,7 +1198,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">code</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">AuditEventOutcome</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1208,13 +1208,13 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Whether the event succeeded or failed</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">Indicates whether the event succeeded or failed</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">Indicates whether the event succeeded or failed. A free text descripiton can be given in outcome.text.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">when a code is given there must be one code from the given codeSystem, and may be other equivilant codes from other codeSystems (for example http response codes such as 2xx, 4xx, or 5xx)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">In some cases a "success" may be partial, for example, an incomplete or interrupted transfer of a radiological study. For the purpose of establishing accountability, these distinctions are not relevant</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">.actionNegationInd</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">.outboundRelationship[typeCode=OUT].target.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">EventOutcomeIndicator</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">EventOutcomeIndicator EventOutcomeIndicator</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1224,7 +1224,7 @@
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s89"><Data ss:Type="String">AuditEvent.outcomeDesc</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">!AuditEvent.outcomeDesc</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1242,8 +1242,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">.outboundRelationship[typeCode=OUT].target.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="20" ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">EventOutcomeDescription</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4146,9 +4145,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>2</TopRowBottomPane>
<TopRowBottomPane>22</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>13</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -6356,7 +6355,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6375,12 +6373,12 @@
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="=Bindings!R1C1:R1C13"/>
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="30" ss:StyleID="s151" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="27" ss:StyleID="s151" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="143.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="371.0"/>
<Column ss:StyleID="s151" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="60.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="239.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="415.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="221.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="98.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="89.0"/>
@ -6426,7 +6424,7 @@
<Cell ss:StyleID="s155"><Data ss:Type="String">#audit-event-action</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">DICOM Audit Event Action</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:HRef="http://build.fhir.org/codesystem-dicom-dcim.html" ss:StyleID="s62"><Data ss:Type="String">http://dicom.nema.org/resources/ontology/DCM</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
@ -6437,11 +6435,11 @@
<Cell ss:StyleID="s157"><Data ss:Type="String">AuditEventOutcome</Data></Cell>
<Cell ss:StyleID="s158"><Data ss:Type="String">Indicates whether the event succeeded or failed</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">required</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">extensible</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">#audit-event-outcome</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">DICOM Audit Event Outcome</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:HRef="http://build.fhir.org/codesystem-dicom-dcim.html" ss:StyleID="s62"><Data ss:Type="String">http://dicom.nema.org/resources/ontology/DCM</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
@ -6456,7 +6454,7 @@
<Cell ss:StyleID="s155"><Data ss:Type="String">#network-type</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">DICOM Audit Event Network Type</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:HRef="http://build.fhir.org/codesystem-dicom-dcim.html" ss:StyleID="s62"><Data ss:Type="String">http://dicom.nema.org/resources/ontology/DCM</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
@ -6471,7 +6469,7 @@
<Cell ss:StyleID="s155"><Data ss:Type="String">valueset-audit-entity-type</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">DICOM Audit Event Entity Type</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:HRef="http://build.fhir.org/codesystem-dicom-dcim.html" ss:StyleID="s62"><Data ss:Type="String">http://dicom.nema.org/resources/ontology/DCM</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
@ -6486,7 +6484,7 @@
<Cell ss:StyleID="s155"><Data ss:Type="String">#object-role</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">DICOM Audit Event Entity Role</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:HRef="http://build.fhir.org/codesystem-dicom-dcim.html" ss:StyleID="s62"><Data ss:Type="String">http://dicom.nema.org/resources/ontology/DCM</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
@ -6503,7 +6501,7 @@
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
@ -6518,7 +6516,7 @@
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
@ -6533,22 +6531,7 @@
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s157"><Data ss:Type="String">!DICOMRoleId</Data></Cell>
<Cell ss:StyleID="s158"><Data ss:Type="String">How the agent participated in the event. </Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">extensible</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">valueset-dicm-402-roleid</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
@ -6558,12 +6541,12 @@
<Cell ss:StyleID="s158"><Data ss:Type="String">Used when the event is about exporting/importing onto media.</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">extensible</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">valueset-dicm-405-mediatype</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s161"><Data ss:Type="String">valueset-audit-media-type</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">DICOM Media Types</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
@ -6578,37 +6561,7 @@
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s157"><Data ss:Type="String">!DICOMAlertType</Data></Cell>
<Cell ss:StyleID="s158"><Data ss:Type="String">The type of source where event originated.</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">valueset-dicm-403-alerttype</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s157"><Data ss:Type="String">!DICOMObjectIdType</Data></Cell>
<Cell ss:StyleID="s158"><Data ss:Type="String">Describes the identifier.</Data></Cell>
<Cell ss:StyleID="s155"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">valueset-dicm-404-objectidtype</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
@ -6653,7 +6606,7 @@
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"><Data ss:Type="String">These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright © 2011 by the National Electrical Manufacturers Association.</Data></Cell>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s155"/>
<Cell ss:StyleID="s160"/>
@ -6836,12 +6789,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>5</LeftColumnRightPane>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -6874,7 +6828,7 @@
<Cell ss:StyleID="s108"><Data ss:Type="String">Committee Notes</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Additional notes about the code. Not published</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s144"><Data ss:Type="String">Emergency</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">emergency</Data></Cell>
<Cell ss:StyleID="s133"><Data ss:Type="Number">0</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s168"/>
@ -6885,7 +6839,7 @@
<Cell ss:StyleID="s145"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Alert</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">alert</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>
@ -6896,7 +6850,7 @@
<Cell ss:StyleID="s147"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Critical</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">critical</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>
@ -6907,7 +6861,7 @@
<Cell ss:StyleID="s147"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Error</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">error</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>
@ -6918,7 +6872,7 @@
<Cell ss:StyleID="s147"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Warning</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">warning</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>
@ -6929,7 +6883,7 @@
<Cell ss:StyleID="s147"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Notice</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">notice</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>
@ -6940,7 +6894,7 @@
<Cell ss:StyleID="s147"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Informational</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">informational</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>
@ -6951,7 +6905,7 @@
<Cell ss:StyleID="s147"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">Debug</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">debug</Data></Cell>
<Cell ss:StyleID="s136"><Data ss:Type="Number">7</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s169"/>

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Eric Haas</LastAuthor>
<LastAuthor>Gino Canessa</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2017-03-18T21:15:30Z</LastSaved>
<LastSaved>2020-04-20T15:00:57Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<CustomDocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
@ -18,7 +18,6 @@
<ActiveSheet>2</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -900,7 +899,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">document | message | transaction | transaction-response | batch | batch-response | history | searchset | collection</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">document | message | transaction | transaction-response | batch | batch-response | history | searchset | collection | subscription-notification</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Indicates the purpose of this bundle - how it is intended to be used</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">It's possible to use a bundle for other purposes (e.g. a document can be accepted as a transaction). This is primarily defined so that there can be specific rules for some of the bundle types</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3692,7 +3691,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>19</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3711,9 +3710,9 @@
<Column ss:AutoFitWidth="0" ss:Index="2" ss:StyleID="s101" ss:Width="116.0"/>
<Column ss:StyleID="s101" ss:Width="56.0"/>
<Column ss:StyleID="s101" ss:Width="165.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="205.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="297.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="266.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="336.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="370.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="375.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s101" ss:Width="260.0"/>
<Column ss:AutoFitWidth="0" ss:Index="11" ss:StyleID="s101" ss:Width="217.0"/>
<Row ss:AutoFitHeight="0" ss:Height="16" ss:StyleID="s70">
@ -3748,18 +3747,18 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.request</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">error</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Bundle</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.request mandatory for batch/transaction/history, otherwise prohibited</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.all(request.exists() = (%resource.type = 'batch' or %resource.type = 'transaction' or %resource.type = 'history'))</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">not(f:entry/f:request) or (f:type/@value = 'batch') or (f:type/@value = 'transaction') or (f:type/@value = 'history')</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.request mandatory for batch/transaction/history, allowed for subscription-notification, otherwise prohibited</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.all(request.exists() = (%resource.type = 'batch' or %resource.type = 'transaction' or %resource.type = 'history')) or (type='subscription-notification')</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">not(f:entry/f:request) or (f:type/@value = 'batch') or (f:type/@value = 'transaction') or (f:type/@value = 'history') or (f:type/@value = 'subscription-notification)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s105"><Data ss:Type="Number">4</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.response</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">error</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Bundle</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.response mandatory for batch-response/transaction-response/history, otherwise prohibited</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.all(response.exists() = (%resource.type = 'batch-response' or %resource.type = 'transaction-response' or %resource.type = 'history'))</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">not(f:entry/f:response) or (f:type/@value = 'batch-response') or (f:type/@value = 'transaction-response') or (f:type/@value = 'history')</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.response mandatory for batch-response/transaction-response/history, allowed for subscription-notification, otherwise prohibited</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">entry.all(response.exists() = (%resource.type = 'batch-response' or %resource.type = 'transaction-response' or %resource.type = 'history')) or (type='subscription-notification')</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">not(f:entry/f:response) or (f:type/@value = 'batch-response') or (f:type/@value = 'transaction-response') or (f:type/@value = 'history') or (f:type/@value = 'subscription-notification)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s105"><Data ss:Type="Number">5</Data><NamedCell ss:Name="Invariantids"/></Cell>
@ -3825,13 +3824,13 @@
<Cell ss:StyleID="s106"><Data ss:Type="String">not(f:type/@value='message') or f:entry[1]/f:resource/f:MessageHeader</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s105"><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s106"/>
<Cell ss:StyleID="s105"><Data ss:Type="Number">13</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Subscription.entry.first</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">error</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Bundle</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">A subscription-notification must have a SubscriptionStatus as the first resource</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">type = 'subscription-notification' implies entry.first().resource.is(SubscriptionStatus)</Data></Cell>
<Cell ss:StyleID="s106"><Data ss:Type="String">not(f:type/@value='subscription-notification') or f:entry[1]/f:resource/f:SubscriptionStatus</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s105"><NamedCell ss:Name="Invariantids"/></Cell>
@ -6548,12 +6547,12 @@
<Cell ss:StyleID="s144"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"/>
<Cell ss:StyleID="s132"/>
<Cell ss:StyleID="s143"><Data ss:Type="String">subscription-notification</Data></Cell>
<Cell ss:StyleID="s132"><Data ss:Type="Number">8</Data></Cell>
<Cell ss:StyleID="s118"/>
<Cell ss:StyleID="s153"/>
<Cell ss:StyleID="s153"/>
<Cell ss:StyleID="s153"/>
<Cell ss:StyleID="s153"><Data ss:Type="String">Subscription Notification</Data></Cell>
<Cell ss:StyleID="s153"><Data ss:Type="String">The bundle has been generated by a Subscription to communicate information to a client.</Data></Cell>
<Cell ss:StyleID="s132"/>
<Cell ss:StyleID="s132"/>
<Cell ss:StyleID="s144"/>

File diff suppressed because it is too large Load Diff

View File

@ -873,7 +873,7 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">MetadataResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">CanonicalResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>

View File

@ -14,7 +14,8 @@
<ActiveSheet>3</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -773,8 +774,7 @@
<Column ss:StyleID="s68" ss:Width="29.0"/>
<Column ss:StyleID="s68" ss:Width="34.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s68" ss:Width="119.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s68" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s68" ss:Width="65.0"/>
<Column ss:AutoFitWidth="0" ss:Index="7" ss:StyleID="s68" ss:Width="65.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s68" ss:Width="167.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s68" ss:Width="81.0"/>
<Column ss:Span="1" ss:StyleID="s68" ss:Width="52.0"/>
@ -1154,11 +1154,11 @@
<Cell ss:StyleID="s92"><Data ss:Type="String">GF#23030</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">CareTeam.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">CareTeam.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(Condition)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CareTeamReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1180,7 +1180,7 @@
<Cell ss:StyleID="s92"><Data ss:Type="String">GF#12367</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">CareTeam.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">!CareTeam.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1193,7 +1193,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Why the care team exists</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Condition(s) that this care team addresses</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Condition(s) that this care team addresses (condition(s) that this care team addresses)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3556,12 +3556,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>16</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -4272,7 +4273,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5804,8 +5804,7 @@
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="31" ss:StyleID="s111" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s111" ss:Width="125.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="376.0"/>
<Column ss:StyleID="s111" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="69.0"/>
<Column ss:AutoFitWidth="0" ss:Index="4" ss:StyleID="s111" ss:Width="69.0"/>
<Column ss:StyleID="s111" ss:Width="45.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="252.0"/>
<Column ss:StyleID="s111" ss:Width="172.0"/>

File diff suppressed because it is too large Load Diff

View File

@ -18,7 +18,8 @@
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>3</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -849,7 +850,7 @@
<Cell><Data ss:Type="String">fmm</Data></Cell>
<Cell><Data ss:Type="Number">0</Data></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">entered-in-error-status</Data></Cell>
<Cell><Data ss:Type="String">.status = entered-in-error</Data></Cell>
</Row>
@ -860,6 +861,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
@ -1410,11 +1412,11 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s96"><Data ss:Type="String">ClinicalImpression.finding.itemCodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s96"><Data ss:Type="String">ClinicalImpression.finding.item</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(Condition | Observation | DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">ConditionKind</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1424,7 +1426,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">What was found</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Specific text or code for finding or diagnosis, which may include ruled-out or resolved conditions</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Specific text, code or reference for finding or diagnosis, which may include ruled-out or resolved conditions</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1436,7 +1438,7 @@
<Cell ss:StyleID="s93"><Data ss:Type="String">GF#14150</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s96"><Data ss:Type="String">ClinicalImpression.finding.itemReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s96"><Data ss:Type="String">!ClinicalImpression.finding.itemReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3875,16 +3877,16 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>14</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -4412,6 +4414,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -4474,7 +4477,7 @@
<Cell ss:StyleID="s122"><Data ss:Type="String">finding-code</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s123"><Data ss:Type="String">ClinicalImpression.finding.itemCodeableConcept</Data></Cell>
<Cell ss:StyleID="s123"><Data ss:Type="String">ClinicalImpression.finding.item.concept</Data></Cell>
<Cell ss:StyleID="s97"/>
<Cell ss:StyleID="s97"/>
<Cell ss:StyleID="s124"/>
@ -4483,7 +4486,7 @@
<Cell ss:StyleID="s122"><Data ss:Type="String">finding-ref</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s123"><Data ss:Type="String">ClinicalImpression.finding.itemReference</Data></Cell>
<Cell ss:StyleID="s123"><Data ss:Type="String">ClinicalImpression.finding.item.reference</Data></Cell>
<Cell ss:StyleID="s97"/>
<Cell ss:StyleID="s97"/>
<Cell ss:StyleID="s124"/>
@ -4586,12 +4589,14 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5177,6 +5182,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5447,6 +5453,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -5724,6 +5731,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6132,6 +6140,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6168,8 +6177,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" ss:StyleID="s119" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="188.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="275.0"/>
<Column ss:StyleID="s119" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="53.0"/>
<Column ss:AutoFitWidth="0" ss:Index="4" ss:StyleID="s119" ss:Width="53.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="299.0"/>
<Column ss:StyleID="s119" ss:Width="173.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="98.0"/>
@ -6636,6 +6644,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -7232,6 +7241,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -919,7 +919,7 @@
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">MetadataResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">CanonicalResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4286,7 +4286,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>28</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -4920,7 +4920,7 @@
<Cell ss:StyleID="s130"><Data ss:Type="String">Note that the $lookup operation is more than just a code system search - the server finds the concept, and gathers the return information from the underlying code system definitions.</Data></Cell>
<Cell><Data ss:Type="String">$lookup-request.txt</Data></Cell>
<Cell><Data ss:Type="String">$lookup-response.txt</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">4.1.0</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">4.0.0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s116"><Data ss:Type="String">lookup.code</Data></Cell>
@ -5196,7 +5196,7 @@
<Cell ss:StyleID="s130"/>
<Cell><Data ss:Type="String">$validate-code-request.txt</Data></Cell>
<Cell><Data ss:Type="String">$validate-code-response.txt</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">4.1.0</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">4.0.0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s116"><Data ss:Type="String">validate-code.url</Data></Cell>
@ -5382,7 +5382,7 @@
<Cell ss:StyleID="s130"/>
<Cell><Data ss:Type="String">$subsumes-request.txt</Data></Cell>
<Cell><Data ss:Type="String">$subsumes-response.txt</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">4.1.0</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">4.0.0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s116"><Data ss:Type="String">subsumes.codeA</Data></Cell>

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Miller,Michelle M</LastAuthor>
<LastAuthor>Grahame Grieve</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2019-09-16T23:18:29Z</LastSaved>
<LastSaved>2019-12-30T03:10:51Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -24,6 +24,7 @@
<TabRatio>845</TabRatio>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -942,8 +943,8 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">A record of information transmitted from a sender to a receiver</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">An occurrence of information being transmitted; e.g. an alert that was sent to a responsible provider, a public health agency communication to a provider/reporter in response to a case report for a reportable condition.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">A clinical or business level record of information being transmitted or shared</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">A clinical or business level record of information being transmitted or shared; e.g. an alert that was sent to a responsible provider, a public health agency communication to a provider/reporter in response to a case report for a reportable condition. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -953,7 +954,7 @@
<Cell ss:StyleID="s83"><Data ss:Type="String">Event</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String">0;0</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">J#13389</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"><Data ss:Type="String">Communication.identifier</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1457,7 +1458,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Device|Organization|Patient|Practitioner|PractitionerRole|RelatedPerson|HealthcareService|Endpoint)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Device|Organization|Patient|Practitioner|PractitionerRole|RelatedPerson|HealthcareService|Endpoint|CareTeam)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1477,14 +1478,14 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">Event.performer.actor</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">GF#22626, GF#22630</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">GF#22626, GF#22630, J#26619</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">Communication.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Communication.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(Any)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CommunicationReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1496,7 +1497,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">Indication for message</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">The reason or justification for the communication.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Textual reasons can be captured using reasonCode.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Textual reasons can be captured using reason.concept.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1507,7 +1508,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="29">
<Cell ss:StyleID="s86"><Data ss:Type="String">Communication.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">!Communication.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s98"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3788,9 +3789,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>19</TopRowBottomPane>
<TopRowBottomPane>16</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>13</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>

View File

@ -19,6 +19,7 @@
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -1409,11 +1410,11 @@
<Cell ss:StyleID="s92"><Data ss:Type="String">GF#14064, GF#22626, GF#22631, GF#22630</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="29">
<Cell ss:StyleID="s86"><Data ss:Type="String">CommunicationRequest.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">CommunicationRequest.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(Any)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1434,7 +1435,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="29">
<Cell ss:StyleID="s86"><Data ss:Type="String">CommunicationRequest.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">!CommunicationRequest.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3714,7 +3715,7 @@
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>16</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>17</LeftColumnRightPane>
<LeftColumnRightPane>12</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -6058,8 +6059,7 @@
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="199.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="314.0"/>
<Column ss:StyleID="s111" ss:Width="58.0"/>
<Column ss:StyleID="s111" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="251.0"/>
<Column ss:AutoFitWidth="0" ss:Index="5" ss:StyleID="s111" ss:Width="251.0"/>
<Column ss:StyleID="s111" ss:Width="197.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="111.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="101.0"/>

View File

@ -813,7 +813,7 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">MetadataResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">CanonicalResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>

View File

@ -5161,7 +5161,7 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Profiles!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" ss:StyleID="s113" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="40" ss:StyleID="s113" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s113" ss:Width="114.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s113" ss:Width="281.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s113" ss:Width="252.0"/>
@ -5399,12 +5399,6 @@
<Cell ss:StyleID="s119"/>
<Cell ss:StyleID="s120"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s118"/>
<Cell ss:StyleID="s119"/>
<Cell ss:StyleID="s119"/>
<Cell ss:StyleID="s120"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="16">
<Cell ss:StyleID="s122"/>
<Cell ss:StyleID="s124"/>
@ -5912,7 +5906,7 @@
<Cell ss:StyleID="s119"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s119"><Data ss:Type="String">required</Data></Cell>
<Cell ss:StyleID="s119"/>
<Cell ss:StyleID="s149"><Data ss:Type="String">http://terminology.hl7.org/ValueSet/v3-ConfidentialityClassification</Data></Cell>
<Cell ss:StyleID="s149"><Data ss:Type="String">http://terminology.hl7.org/ValueSet/v3-Confidentiality</Data></Cell>
<Cell ss:StyleID="s119"/>
<Cell ss:StyleID="s119"/>
<Cell ss:StyleID="s119"/>

View File

@ -18,7 +18,6 @@
<TabRatio>690</TabRatio>
<ActiveSheet>2</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -751,10 +750,7 @@
<Cell><Data ss:Type="String">entered-in-error-status</Data></Cell>
<Cell><Data ss:Type="String">.status = retired</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">fmm</Data></Cell>
<Cell><Data ss:Type="Number">2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0"/>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
@ -762,6 +758,8 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
@ -825,7 +823,7 @@
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">MetadataResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">CanonicalResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1578,7 +1576,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">Concept in target system for element </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">A concept from the target value set that this concept maps to </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Ideally there would only be one map, with an 'equivalent' mapping. But multiple maps are allowed for several narrower options, or to assert that other concepts are not related.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Ideally there would only be one map, with an 'equivalent' mapping. But multiple maps are allowed for several narrower (i.e. source-is-broader-than-target) options, or to assert that other concepts are not related.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1656,8 +1654,8 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">related-to | equivalent | broader | narrower | not-related-to</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The relationship between the source and target concepts. The relationship is read from target to source (e.g. the target is 'broader' than the source).</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">related-to | equivalent | source-is-narrower-than-target | source-is-broader-than-target | not-related-to</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The relationship between the source and target concepts. The relationship is read from source to target (e.g. source-is-narrower-than-target).</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This element is labeled as a modifier because it may indicate that there is no mapping</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3871,9 +3869,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>24</TopRowBottomPane>
<TopRowBottomPane>29</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>9</LeftColumnRightPane>
<LeftColumnRightPane>10</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -3907,9 +3905,9 @@
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">error</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">ConceptMap.group.element.target</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">If the map is narrower or not-related-to, there SHALL be some comments</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">comment.exists() or relationship.empty() or ((relationship != 'narrower') and (relationship != 'not-related-to'))</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s107"><Data ss:Type="String">exists(f:comment) or not(exists(f:relationship)) or ((f:relationship/@value != 'narrower') and (f:v/@value != 'not-related-to'))</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">If the map is source-is-broader-than-target or not-related-to, there SHALL be some comments</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">comment.exists() or relationship.empty() or ((relationship != 'source-is-broader-than-target') and (relationship != 'not-related-to'))</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s107"><Data ss:Type="String">exists(f:comment) or not(exists(f:relationship)) or ((f:relationship/@value != 'source-is-broader-than-target') and (f:v/@value != 'not-related-to'))</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s108"><Data ss:Type="Number">2</Data><NamedCell ss:Name="Invariantids"/></Cell>
@ -4356,7 +4354,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -4983,7 +4980,7 @@
<Cell ss:StyleID="s116"><Data ss:Type="String">ConceptMap</Data></Cell>
<Cell ss:StyleID="s116"/>
<Cell ss:StyleID="s116"/>
<Cell ss:StyleID="s132"><Data ss:Type="String">A list of new entries (code / system --&gt; code/system) that the client should add to its closure table. The only kind of entry mapping relationships that can be returned are equivalent, narrower and broader.</Data></Cell>
<Cell ss:StyleID="s132"><Data ss:Type="String">A list of new entries (code / system --&gt; code/system) that the client should add to its closure table. The only kind of entry mapping relationships that can be returned are equivalent, source-is-broader-than-target and source-is-narrower-than-target.</Data></Cell>
<Cell ss:StyleID="s133"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -5310,9 +5307,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>6</TopRowBottomPane>
<TopRowBottomPane>20</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>6</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>

View File

@ -16,6 +16,7 @@
<TabRatio>763</TabRatio>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -930,7 +931,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">Condition.clinicalStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">3,4,5</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">3,4</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This element is labeled as a modifier because the status contains codes that mark the condition as no longer active.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -958,7 +959,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">Condition.verificationStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">3,5</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="Number">3</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This element is labeled as a modifier because the status contains the code refuted and entered-in-error that mark the Condition as not currently valid.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -969,7 +970,7 @@
<Cell ss:Index="13" ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">unconfirmed | provisional | differential | confirmed | refuted | entered-in-error</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The verification status to support the clinical status of the condition.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The verification status to support the clinical status of the condition. The verification status pertains to the condition, itself, not to any specific condition attribute.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">verificationStatus is not required. For example, when a patient has abdominal pain in the ED, there is not likely going to be a verification status.&#10;The data type is CodeableConcept because verificationStatus has some clinical judgment involved, such that there might need to be more specificity than the required FHIR value set allows. For example, a SNOMED coding might allow for additional specificity.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -980,7 +981,7 @@
<Cell ss:StyleID="s91"><Data ss:Type="String">Event.status</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">GF#11281, GF#16193</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">GF#11281, GF#16193, J#28458</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell ss:StyleID="s87"><Data ss:Type="String">Condition.category</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1203,7 +1204,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">Estimated or actual date, date-time, or age</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Estimated or actual date or date-time the condition began, in the opinion of the clinician</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Age is generally used when the patient reports an age at which the Condition began to occur</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Age is generally used when the patient reports an age at which the Condition began to occur. Period is generally used to convey an imprecise onset that occurred within the time period. For example, Period is not intended to convey the transition period before the chronic bronchitis or COPD condition was diagnosed, but Period can be used to convey an imprecise diagnosis date.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.effectiveTime.low or .inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code="age at onset"].value</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">PRB-16</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1373,7 +1374,7 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Simple summary (disease specific)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">A simple summary of the stage such as "Stage 3". The determination of the stage is disease-specific</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">A simple summary of the stage such as "Stage 3" or "Early Onset". The determination of the stage is disease-specific, such as cancer, retinopathy of prematurity, kidney diseases, Alzheimer's, or Parkinson disease.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1384,7 +1385,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">J#26847</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s87"><Data ss:Type="String">Condition.stage.assessment</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1459,10 +1460,10 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Supporting evidence</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Supporting evidence for the verification status</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Supporting evidence / manifestations that are the basis of the Condition's verification status, such as evidence that confirmed or refuted the condition</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The evidence may be a simple list of coded symptoms/manifestations, or references to observations or formal assessments, or both</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">If the condition was confirmed, but subsequently refuted, then the evidence can be cumulative including all evidence over time. The evidence may be a simple list of coded symptoms/manifestations, or references to observations or formal assessments, or both.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.outboundRelationship[typeCode=SPRT].target[classCode=OBS, moodCode=EVN]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3607,7 +3608,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>11</TopRowBottomPane>
<TopRowBottomPane>2</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3679,7 +3680,7 @@
<Cell ss:StyleID="s110"><Data ss:Type="String">not(exists(*[starts-with(local-name(.), 'abatement')])) or exists(f:clinicalStatus/f:coding[f:system/@value='http://terminology.hl7.org/CodeSystem/condition-clinical' and f:code/@value=('resolved', 'remission', 'inactive')])</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s109"><Data ss:Type="Number">5</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s109"><Data ss:Type="String">!5</Data><NamedCell ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">No clinicalStatus when entered in error</Data></Cell>
<Cell ss:StyleID="s91"/>
<Cell ss:StyleID="s91"><Data ss:Type="String">Condition</Data></Cell>
@ -6334,7 +6335,7 @@
<Cell ss:StyleID="s121"/>
<Cell ss:StyleID="s157"/>
<Cell ss:StyleID="s157"><Data ss:Type="String">Refuted</Data></Cell>
<Cell ss:StyleID="s157"><Data ss:Type="String">This condition has been ruled out by diagnostic and clinical evidence.</Data></Cell>
<Cell ss:StyleID="s157"><Data ss:Type="String">This condition has been ruled out by subsequent diagnostic and clinical evidence.</Data></Cell>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s144"/>

View File

@ -15,8 +15,8 @@
<TabRatio>574</TabRatio>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ActiveSheet>9</ActiveSheet>
<FirstVisibleSheet>9</FirstVisibleSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -896,6 +896,9 @@
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s183">
<Interior/>
</Style>
</Styles>
<Names>
<NamedRange ss:Name="Invariantids" ss:RefersTo="=Invariants!R2C1:R50C1"/>
@ -1427,7 +1430,7 @@
<Cell ss:StyleID="s91"/>
<Cell ss:StyleID="s88"/>
</Row>
<Row ss:Height="30" ss:StyleID="s96">
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s96">
<Cell ss:StyleID="s87"><Data ss:Type="String">Contract.site</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2665,7 +2668,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s101"><Data ss:Type="String">Contract.term.offer.securityLabelNumber</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2860,7 +2863,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s87"><Data ss:Type="String">Contract.term.asset.context</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3168,7 +3171,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s101"><Data ss:Type="String">Contract.term.asset.securityLabelNumber</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3196,7 +3199,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s107"><Data ss:Type="String">Contract.term.asset.valuedItem</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4121,11 +4124,11 @@
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="28">
<Cell ss:StyleID="s87"><Data ss:Type="String">Contract.term.action.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Contract.term.action.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableReference(Condition|Observation|DiagnosticReport|DocumentReference|Questionnaire|QuestionnaireResponse)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4135,7 +4138,7 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s99"><Data ss:Type="String">Why is action (not) needed?</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s99"><Data ss:Type="String">Rationale for the action to be performed or not performed. Describes why the action is permitted or prohibited. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s99"><Data ss:Type="String">Rationale for the action to be performed or not performed. Describes why the action is permitted or prohibited. Either a coded concept, or another resource whose existence justifies permitting or not permitting this action</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4149,7 +4152,7 @@
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="86">
<Cell ss:StyleID="s87"><Data ss:Type="String">Contract.term.action.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">!Contract.term.action.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4177,7 +4180,7 @@
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="29">
<Cell ss:StyleID="s87"><Data ss:Type="String">Contract.term.action.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">!Contract.term.action.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -6288,11 +6291,10 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>4</TopRowBottomPane>
<TopRowBottomPane>101</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -6301,8 +6303,6 @@
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C1:R188C26">
</AutoFilter>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Names>
@ -8593,8 +8593,7 @@
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="42" ss:StyleID="s138" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s138" ss:Width="164.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s138" ss:Width="275.0"/>
<Column ss:StyleID="s138" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s138" ss:Width="79.0"/>
<Column ss:AutoFitWidth="0" ss:Index="4" ss:StyleID="s138" ss:Width="79.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s138" ss:Width="190.0"/>
<Column ss:StyleID="s138" ss:Width="173.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s138" ss:Width="98.0"/>
@ -9089,7 +9088,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">Codes for the types of action perfomer </Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">valueset-provenance-agent-type</Data></Cell>
<Cell ss:StyleID="s183"><Data ss:Type="String">http://hl7.org/fhir/ValueSet/participation-role-type</Data></Cell>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"/>
@ -9104,7 +9103,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">Codes for the role of the action performer</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">valueset-provenance-agent-role</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">http://hl7.org/fhir/ValueSet/security-role-type</Data></Cell>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"/>
@ -9225,10 +9224,11 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>16</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>

View File

@ -984,7 +984,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">MetadataResource</Data><NamedCell
<Cell ss:StyleID="s78"><Data ss:Type="String">CanonicalResource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Eric Haas</LastAuthor>
<LastAuthor>Jose Costa Teixeira</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2018-10-30T23:14:39Z</LastSaved>
<LastSaved>2020-08-15T22:13:18Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -14,9 +14,8 @@
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>9</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -1003,9 +1002,9 @@
</Worksheet>
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R126C25"/>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R133C25"/>
</Names>
<Table ss:ExpandedColumnCount="25" ss:ExpandedRowCount="126" ss:StyleID="s69" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="25" ss:ExpandedRowCount="133" ss:StyleID="s69" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s70" ss:Width="227.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s69" ss:Width="167.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s69" ss:Width="29.0"/>
@ -1109,6 +1108,33 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="Number">7662</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.displayName</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String"/><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">string</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The name used to display by default when the device is referenced</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">The name used to display by default when the device is referenced. Based on intent of use by the resource creator, this may reflect one of the names in Device.deviceName, or may be another simple name</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.definition</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1333,7 +1359,7 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">barcode | rfid | manual +</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">barcode | rfid | manual | card | self-reported | electronic-transmission | unknown</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">A coded entry to indicate how the data was entered.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Supports a way to distinguish hand entered from machine read data.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s97"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1361,7 +1387,7 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">active | inactive | entered-in-error | unknown</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Status of the Device availability.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Status of the Device record. This is not the status of the device like availability.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">This element is labeled as a modifier because the status contains the codes inactive and entered-in-error that mark the device (record)as not currently valid</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1387,8 +1413,8 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">online | paused | standby | offline | not-ready | transduc-discon | hw-discon | off</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Reason for the dtatus of the Device availability.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">discarded | obsolete | removed</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Reason for the status of the Device record. For example, why is the record not active.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s66"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1442,7 +1468,7 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">Name of device manufacturer</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">A name of the manufacturer</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">A name of the manufacturer or entity legally responsible for the device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s97"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1567,7 +1593,7 @@
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5" ss:StyleID="s85"><Data ss:Type="String">BackboneElement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">The name of the device as given by the manufacturer</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">The name or names of the device as known to the manufacturer and/or patient</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">This represents the manufacturer's name of the device as provided by the device, from a UDI label, or by a person describing the Device. This typically would be used when a person provides the name(s) or when the device represents one of the names available from DeviceDefinition</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="21" ss:StyleID="s88"><Data ss:Type="String">Participant.name</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="23"><Data ss:Type="String">400;0</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1596,7 +1622,7 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><Data ss:Type="String">udi-label-name | user-friendly-name | patient-reported-name | manufacturer-name | model-name | other</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String"><Font html:Color="#000000">The type of deviceName.&#10;</Font><B><Font html:Color="#000000">UDILabelName |</Font></B><Font html:Color="#000000"> UserFriendlyName | PatientReportedName | </Font><B><Font html:Color="#000000">ManufactureDeviceName | ModelName</Font></B></ss:Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String"><Font html:Color="#000000">The type of deviceName. Note that ManufactureDeviceName means that the name is the name as given by the manufacturer, not the name of the manufacturer.&#10;</Font><B><Font html:Color="#000000">UDILabelName |</Font></B><Font html:Color="#000000"> UserFriendlyName | PatientReportedName | </Font><B><Font html:Color="#000000">ManufactureDeviceName | ModelName</Font></B></ss:Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s62"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1665,7 +1691,7 @@
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s102"><Data ss:Type="String">Device.type</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s102"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s102"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s102"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5" ss:StyleID="s102"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7" ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="String">DeviceType</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1675,7 +1701,7 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s103"><Data ss:Type="String">The kind or type of device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s103"><Data ss:Type="String">The kind or type of device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s103"><Data ss:Type="String">The kind or type of device. A device instance may have more than one type - in which case those are the types that apply to the specific instance of the device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1693,7 +1719,7 @@
<Cell ss:StyleID="s85"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5" ss:StyleID="s85"><Data ss:Type="String">BackboneElement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14" ss:StyleID="s86"><Data ss:Type="String">The capabilities supported on a device, the standards to which the device conforms for a particular purpose, and used for the communication</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">The capabilities supported on a device, the standards to which the device conforms for a particular purpose, and used for the communication</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">The device function, including in some cases whether or not the functionality conforms to some standard. For example, a PHD blood pressure specialization indicates that the device conforms to the IEEE 11073-10407 Blood Pressure Specialization. This is NOT an alternate name or an additional descriptive name given by the manufacturer. That would be found in the deviceName element.&#10;In the PHD case, there are 11073 10101 nomenclature codes that define the specialization standards and that will be used, for example, in the PHD case for the specialization.systemType element. The specialization.version would be the version of the standard if the systemType referred to a standard.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1797,10 +1823,11 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">A single component of the device version</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">A single component of the device version</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">The hardware or software module of the device to which the version applies</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">The hardware or software module of the device to which the version applies</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Note that the module of the device would not need to be tracked as a separate device, e.g., using different UDI, thus would typically involve one or more software modules. For example, a device may involve two software modules each on a different version.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="18" ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1870,8 +1897,8 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">Code that specifies the property DeviceDefinitionPropetyCode (Extensible)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">Code that specifies the property DeviceDefinitionPropetyCode (Extensible)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">Code that specifies the property being represented</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">Code that specifies the property being represented. No codes are specified but the MDC codes are an example: https://build.fhir.org/mdc.html</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1948,8 +1975,8 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">Patient to whom Device is affixed</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Patient information, If the device is affixed to a person</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">If the device is implanted in a patient, then need to associate the device to the patient</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Patient information, if the device is affixed to, or associated to a patient for their specific use, irrespective of the procedure, use, observation, or other activity that the device is involved in</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">If the device is implanted, or otherwise in use by the patient (e.g., wheelchair, oxygen tank), without further describing its specific use, then the device needs to be associated to the patient.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">.playedRole[typeCode=USED].scoper.playedRole[typeCode=PAT]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1960,6 +1987,168 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.operationalStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">BackboneElement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">The status of the device itself - whether it is switched on, or activated, etc</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">The status of the device itself - whether it is switched on, or activated, etc</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.operationalStatus.value</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">on |off | standby</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">on |off | standby</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.operationalStatus.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The reasons given for the current operational status</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The reasons given for the current operational status - i.e. why is the device switched on etc.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.associationStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">BackboneElement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The state of the usage or application of the device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The state of the usage or application of the device - whether the device is implanted, or explanted, or attached to the patient</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.associationStatus.value</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">implanted|explanted|attached</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">implanted|explanted|attached</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.associationStatus.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The reasons given for the current association status</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">The reasons given for the current association status - i.e. why is the device explanted, or attached to the patient, etc.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="31">
<Cell ss:StyleID="s78"><Data ss:Type="String">Device.owner</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4323,20 +4512,19 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>21</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>8</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C1:R126C25">
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C1:R133C25">
</AutoFilter>
</Worksheet>
<Worksheet ss:Name="Invariants">
@ -4935,53 +5123,53 @@
<Cell ss:Index="6" ss:StyleID="s132"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">definition</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"/>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.definition</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The definition / type of the device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">parent</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"/>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.parent</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The parent device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">manufacture-date</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"><Data ss:Type="String"> </Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.manufactureDate</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The manufacture date of the device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">expiration-date</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"/>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.expirationDate</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The expiration date of the device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">lot-number</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"/>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.lotNumber</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The lot number of the device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">serial-number</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"/>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.serialNumber</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The serial number of the device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"><Data ss:Type="String">version</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s131"/>
<Cell ss:Index="6" ss:StyleID="s132"/>
<Cell ss:StyleID="s131"><Data ss:Type="String">Device.version.value</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s132"><Data ss:Type="String">The specific version of the device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s130"/>
@ -6205,7 +6393,7 @@
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="=Examples!R1C1:R2C7"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="40" ss:StyleID="s151" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s151" ss:Width="89.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s151" ss:Width="199.0"/>
<Column ss:StyleID="s151" ss:Width="28.0"/>
<Column ss:StyleID="s151" ss:Width="328.0"/>
<Column ss:StyleID="s151" ss:Width="97.0"/>
@ -6600,7 +6788,7 @@
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="=Bindings!R1C1:R1C13"/>
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="33" ss:StyleID="s125" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s125" ss:Width="115.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s125" ss:Width="133.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s125" ss:Width="377.0"/>
<Column ss:StyleID="s125" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s125" ss:Width="66.0"/>
@ -7141,89 +7329,89 @@
<Cell ss:StyleID="s155"><Data ss:Type="String">Committee Notes</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Additional notes about the code. Not published</Font> </ss:Data></Comment></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">online</Data></Cell>
<Cell ss:StyleID="s156"><Data ss:Type="String">discarded</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"><Data ss:Type="String">Online</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is off.</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device has been discarded</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">paused</Data></Cell>
<Cell ss:StyleID="s156"><Data ss:Type="String">obsolete</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"><Data ss:Type="String">Paused</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is paused.</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is obsolete</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">standby</Data></Cell>
<Cell ss:StyleID="s156"><Data ss:Type="String">removed</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"><Data ss:Type="String">Standby</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is ready but not actively operating.</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device has been removed</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">offline</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"><Data ss:Type="String">Offline</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is offline.</Data></Cell>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">not-ready</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"><Data ss:Type="String">Not Ready</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is not ready.</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">transduc-discon</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"><Data ss:Type="String">Transducer Disconnected</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device transducer is disconnected.</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"><Data ss:Type="String">hw-discon</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">7</Data></Cell>
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"><Data ss:Type="String">Hardware Disconnected</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device hardware is disconnected.</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="21">
<Cell ss:StyleID="s156"><Data ss:Type="String">off</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">8</Data></Cell>
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"><Data ss:Type="String">Off</Data></Cell>
<Cell ss:StyleID="s173"><Data ss:Type="String">The device is off.</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
@ -7664,6 +7852,8 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
@ -8333,8 +8523,19 @@
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s156"><Data ss:Type="String">electronic-transmission</Data></Cell>
<Cell ss:StyleID="s159"><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"><Data ss:Type="String">Electronic Transmission</Data></Cell>
<Cell ss:StyleID="s175"><Data ss:Type="String">The UDI information was received electronically from the device through a communication protocol, such as the IEEE 11073 20601 version 4 exchange protocol over Bluetooth or USB</Data></Cell>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s181"><Data ss:Type="String">unknown</Data></Cell>
<Cell ss:StyleID="s182"><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s182"><Data ss:Type="Number">7</Data></Cell>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s182"/>
<Cell ss:StyleID="s182"><Data ss:Type="String">Unknown</Data></Cell>
@ -8344,22 +8545,11 @@
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s181"/>
<Cell ss:StyleID="s182"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s160"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s156"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s173"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s182"/>
<Cell ss:StyleID="s182"/>
<Cell ss:StyleID="s175"/>
<Cell ss:StyleID="s159"/>
<Cell ss:StyleID="s159"/>

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame Grieve</LastAuthor>
<LastAuthor>Jose Costa Teixeira</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2019-05-31T20:06:03Z</LastSaved>
<LastSaved>2020-04-30T20:54:29Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -22,7 +22,7 @@
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>3</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1173,11 +1173,11 @@
<Cell><Data ss:Type="String">device</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Request.code</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">DeviceRequest.code[x]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">DeviceRequest.code</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Reference(Device) | CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableReference(Device | DeviceDefinition )</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1478,12 +1478,12 @@
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s72">
<Cell ss:Index="2" ss:StyleID="s87"><Data ss:Type="String">Request.reasonCode</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reasonCode</Data></Cell>
<Cell ss:Formula="=R2C4&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s87"><Data ss:Type="String">DeviceRequest.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reason</Data></Cell>
<Cell ss:Formula="=R2C4&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s87"><Data ss:Type="String">DeviceRequest.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableReference(Condition|Observation|DiagnosticReport|DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1493,7 +1493,7 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Coded Reason for request</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Coded/Linked Reason for request</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Reason or justification for the use of this device. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1509,7 +1509,7 @@
<Row ss:AutoFitHeight="0" ss:StyleID="s72">
<Cell ss:Index="2" ss:StyleID="s87"><Data ss:Type="String">Request.reasonReference</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reasonReference</Data></Cell>
<Cell ss:Formula="=R2C4&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s87"><Data ss:Type="String">DeviceRequest.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Formula="=&#34;!&#34;&amp;R2C4&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s87"><Data ss:Type="String">!DeviceRequest.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1950,13 +1950,12 @@
<VerticalResolution>600</VerticalResolution>
</Print>
<Zoom>110</Zoom>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>4</SplitVertical>
<LeftColumnRightPane>15</LeftColumnRightPane>
<LeftColumnRightPane>8</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -2549,7 +2548,7 @@
<Cell ss:StyleID="s125"><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s93"/>
<Cell ss:StyleID="s128"><Data ss:Type="String">DeviceRequest.codeCodeableConcept</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">DeviceRequest.code.concept</Data></Cell>
<Cell ss:StyleID="s129"><Data ss:Type="String">Code for what is being requested/ordered</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
@ -2623,7 +2622,7 @@
<Cell ss:StyleID="s125"><Data ss:Type="String">device</Data></Cell>
<Cell ss:StyleID="s93"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s93"/>
<Cell ss:StyleID="s128"><Data ss:Type="String">DeviceRequest.codeReference</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">DeviceRequest.code.reference</Data></Cell>
<Cell ss:StyleID="s129"><Data ss:Type="String">Reference to resource that is being requested/ordered</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
@ -2754,6 +2753,7 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -4302,8 +4302,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="28" ss:StyleID="s119" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s119" ss:Width="158.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="275.0"/>
<Column ss:StyleID="s119" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="113.0"/>
<Column ss:AutoFitWidth="0" ss:Index="4" ss:StyleID="s119" ss:Width="113.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="280.0"/>
<Column ss:StyleID="s119" ss:Width="173.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s119" ss:Width="98.0"/>

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Eric Haas</LastAuthor>
<LastAuthor>Jose Costa Teixeira</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2017-10-23T02:11:28Z</LastSaved>
<LastSaved>2020-02-15T08:54:03Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -19,7 +19,6 @@
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -279,7 +278,7 @@
<Font ss:Color="#333333" ss:FontName="Verdana" ss:Size="11" x:Family="Swiss"/>
</Style>
<Style ss:ID="s96">
<Font ss:Color="#333333" ss:FontName="Verdana" ss:Size="11"/>
<Font ss:Color="#333333" ss:FontName="Verdana" ss:Size="11" x:Family="Swiss"/>
</Style>
<Style ss:ID="s97">
<Alignment ss:Horizontal="Left" ss:ShrinkToFit="1" ss:Vertical="Top" ss:WrapText="1"/>
@ -789,6 +788,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:Print> </x:Print>
@ -797,9 +797,9 @@
</Worksheet>
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C3:R112C27"/>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C3:R115C27"/>
</Names>
<Table ss:ExpandedColumnCount="50" ss:ExpandedRowCount="112" ss:StyleID="s68" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="50" ss:ExpandedRowCount="115" ss:StyleID="s68" x:FullColumns="1" x:FullRows="1">
<Column ss:Span="1" ss:StyleID="s69" ss:Width="148.0"/>
<Column ss:AutoFitWidth="0" ss:Index="3" ss:StyleID="s69" ss:Width="180.0"/>
<Column ss:AutoFitWidth="0" ss:Span="23" ss:StyleID="s68" ss:Width="146.0"/>
@ -849,7 +849,7 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">Record of use of a device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">A record of a device being used by a patient where the record is the result of a report from the patient or another clinician.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">A record of a device being used by a patient where the record is the result of a report from the patient or a clinician</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1034,14 +1034,42 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"/>
<Cell ss:StyleID="s86"><Data ss:Type="String">category</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.category</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The category of the statement - classifying how the statement is made</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This attribute indicates a category for the statement - The device statement may be made in an inpatient or outpatient settting (inpatient | outpatient | community | patientspecified)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">Event.code</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">code</Data></Cell>
<Cell ss:Formula="=&#34;!&#34;&amp;R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">!DeviceUseStatement.code</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1123,11 +1151,11 @@
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">Event.context</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">context</Data></Cell>
<Cell ss:Formula="=&#34;!&#34;&amp;R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">!DeviceUseStatement.context</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.context</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Encounter | EpisodeOfCare)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1136,8 +1164,8 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The encounter or episode of care that establishes the context for this device use statement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The encounter or episode of care that establishes the context for this device use statement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1210,8 +1238,8 @@
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"/>
<Cell ss:StyleID="s86"><Data ss:Type="String">recordedOn</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.recordedOn</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">dateAsserted</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.dateAsserted</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1224,8 +1252,8 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">When statement was recorded</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The time at which the statement was made/recorded. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">When the statement was made (and recorded)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The time at which the statement was recorded by informationSource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1237,6 +1265,64 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"/>
<Cell ss:StyleID="s86"><Data ss:Type="String">usageStatus</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.usageStatus</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The status of the device usage, for example always, sometimes, never. This is not the same as the status of the statement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The status of the device usage, for example always, sometimes, never. This is not the same as the status of the statement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"/>
<Cell ss:StyleID="s86"><Data ss:Type="String">usageReason</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.usageReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The reason for asserting the usage status - for example forgot, lost, stolen, broken</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The reason for asserting the usage status - for example forgot, lost, stolen, broken</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">Event.performer</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">performer</Data></Cell>
@ -1297,12 +1383,12 @@
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">Event.performer.actor</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">source</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.source</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">informationSource</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.informationSource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Patient | Practitioner | PractitionerRole | RelatedPerson)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Patient | Practitioner | PractitionerRole | RelatedPerson | Organization)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1360,7 +1446,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Device)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(Device | DeviceDefinition)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1369,14 +1455,14 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference to device used</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The details of the device used.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Code or Reference to device used</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Code or Reference to device used</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">DeviceUse.device</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1384,12 +1470,12 @@
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">Event.reasonCode</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">reasonCode</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">reason</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(Condition|Observation|DiagnosticReport|DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1399,11 +1485,11 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Why device was used</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Reason or justification for the use of the device.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Reason or justification for the use of the device. A coded concept, or another resource whose existence justifies this DeviceUseStatement</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.outboundRelationship[typeCode=RSON].target</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Action.indication.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1414,7 +1500,7 @@
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">Event.reasonReference</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">reasonReference</Data></Cell>
<Cell ss:Formula="=R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">DeviceUseStatement.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Formula="=&#34;!&#34;&amp;R2C3&amp;&#34;.&#34;&amp;RC[-1]" ss:StyleID="s86"><Data ss:Type="String">!DeviceUseStatement.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5" ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Condition|Observation|DiagnosticReport|DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1442,7 +1528,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">CodeableReference(BodyStructure)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">BodySite</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3890,6 +3976,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -3899,9 +3986,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>14</TopRowBottomPane>
<TopRowBottomPane>19</TopRowBottomPane>
<SplitVertical>3</SplitVertical>
<LeftColumnRightPane>3</LeftColumnRightPane>
<LeftColumnRightPane>11</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -3909,39 +3996,39 @@
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C5,R5C5</Range>
<Range>R25C5,R5C5</Range>
<Type>List</Type>
<CellRangeList/>
<Value>"0..1,1..1,0..*,1..*"</Value>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C21:R22C22,R5C21:R5C23</Range>
<Range>R25C21:R25C22,R5C21:R5C23,R24C21</Range>
<Type>List</Type>
<CellRangeList/>
<Value>"N/A"</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C8,R5C8:R5C9</Range>
<Range>R25C8,R5C8:R5C9</Range>
<Type>List</Type>
<CellRangeList/>
<Value>"Y,N"</Value>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C7,R5C7</Range>
<Range>R25C7,R5C7</Range>
<Type>List</Type>
<CellRangeList/>
<Value>"*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData"</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C6,R5C6</Range>
<Range>R25C6,R5C6</Range>
<Type>List</Type>
<Value>'/Users/ehaas/Documents/FHIR/working build/source/event/\\ERICS-AIR-2\ehaas\work\subversion\fhir\build\source\colorectal\Archive\[Invariants]Invariants'!#REF!</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C10:R22C11,R5C10:R5C11</Range>
<Range>R25C10:R25C11,R5C10:R5C11</Range>
<Type>List</Type>
<CellRangeList/>
<Value>"Bindings!A2..A30"</Value>
@ -3951,11 +4038,11 @@
<Range>R5C24</Range>
<Type>List</Type>
<CellRangeList/>
<Value>"left,right,up,down,[xpixels];[ypixels]"</Value>
<Value>"left,right,up,down,[xpixels],[ypixels]"</Value>
<ErrorHide/>
<ErrorStyle>Info</ErrorStyle>
</DataValidation>
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C3:R112C27">
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C3:R115C27">
</AutoFilter>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>C3</Range>
@ -4434,6 +4521,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -4485,9 +4573,9 @@
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s120"><Data ss:Type="String">device</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s118"><Data ss:Type="String">DeviceUseStatement.device</Data></Cell>
<Cell ss:StyleID="s118"><Data ss:Type="String">DeviceUseStatement.device.concept</Data></Cell>
<Cell ss:StyleID="s121"><Data ss:Type="String">Search by device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
@ -4680,6 +4768,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -4690,7 +4779,7 @@
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>3</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -5270,6 +5359,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5527,6 +5617,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -5800,6 +5891,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6186,6 +6278,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6209,8 +6302,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" ss:StyleID="s115" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s115" ss:Width="141.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s115" ss:Width="275.0"/>
<Column ss:StyleID="s115" ss:Width="51.0"/>
<Column ss:StyleID="s115" ss:Width="45.0"/>
<Column ss:Index="4" ss:StyleID="s115" ss:Width="45.0"/>
<Column ss:StyleID="s115" ss:Width="147.0"/>
<Column ss:StyleID="s115" ss:Width="173.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s115" ss:Width="98.0"/>
@ -6677,6 +6769,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -7256,6 +7349,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>

View File

@ -14,7 +14,6 @@
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -623,14 +622,6 @@
<Font ss:Color="#333399" ss:FontName="Calibri" ss:Size="11" x:Family="Swiss"/>
<Interior/>
</Style>
<Style ss:ID="s138">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
<Borders>
<Border ss:LineStyle="Continuous" ss:Position="Right" ss:Weight="3"/>
</Borders>
<Font ss:Bold="1" ss:Color="#000000" ss:FontName="Calibri" ss:Size="11" x:Family="Swiss"/>
<Interior/>
</Style>
<Style ss:ID="s139">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
@ -777,6 +768,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:Print> </x:Print>
@ -3793,11 +3785,10 @@
<VerticalResolution>600</VerticalResolution>
</Print>
<Zoom>130</Zoom>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>6</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -5401,7 +5392,7 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Profiles!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="37" ss:StyleID="s113" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="35" ss:StyleID="s113" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s113" ss:Width="232.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s113" ss:Width="281.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s113" ss:Width="252.0"/>
@ -5427,20 +5418,6 @@
<Cell ss:StyleID="s120"><Data ss:Type="String">spreadsheet</Data></Cell>
<Cell><Data ss:Type="String">core</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s138"><Data ss:Type="String">Diagnostic Report-Genetics</Data></Cell>
<Cell ss:StyleID="s119"><Data ss:Type="String">diagnosticreport-genetics-profile-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s119"><Data ss:Type="String">diagnosticreport-genetics-profile-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">spreadsheet</Data></Cell>
<Cell><Data ss:Type="String">core</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s118"><Data ss:Type="String">Profile for HLA Genotyping Results</Data></Cell>
<Cell ss:StyleID="s119"><Data ss:Type="String">diagnosticreport-hla-genotyping-results-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s119"><Data ss:Type="String">diagnosticreport-hla-genotyping-results-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s120"><Data ss:Type="String">spreadsheet</Data></Cell>
<Cell><Data ss:Type="String">core</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s118"/>
<Cell ss:StyleID="s119"/>
@ -5658,7 +5635,7 @@
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="=Examples!R1C1:R2C7"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="39" ss:StyleID="s139" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="35" ss:StyleID="s139" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s139" ss:Width="149.0"/>
<Column ss:StyleID="s139" ss:Width="45.0"/>
<Column ss:StyleID="s139" ss:Width="301.0"/>
@ -5667,7 +5644,7 @@
<Column ss:StyleID="s139" ss:Width="162.0"/>
<Column ss:StyleID="s139" ss:Width="57.0"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s103"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Descriptive Name</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s103"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000"> </Font><Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Descriptive Name</Font><Font html:Color="#000000"> </Font></ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Type</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Default = XML. Leave at default unless told otherwise</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s140"><Data ss:Type="String">Description</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Description of content/purposes of example</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Identity</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">resource id</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -5783,33 +5760,6 @@
<Cell ss:StyleID="s132"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"><Data ss:Type="String">Genetics -with family</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">An example of a genetics test report with Family member history</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">dg2</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">diagnosticreport-genetics-example-2-familyhistory.xml</Data></Cell>
<Cell ss:StyleID="s138"><Data ss:Type="String">Diagnostic Report-Genetics</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"><Data ss:Type="String">HLA genotyping</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">An example of a HLA genotyping results report </Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">hla-1</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">diagnosticreport-hla-genetics-results-example.xml</Data></Cell>
<Cell ss:StyleID="s132"><Data ss:Type="String">Profile for HLA Genotyping Results</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"><Data ss:Type="String">Comprehensive report</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">An example of a comprehensive bone marrow report</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">report</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">diagnosticreport-genetics-comprehensive-bone-marrow-report.xml</Data></Cell>
<Cell ss:StyleID="s138"><Data ss:Type="String">Diagnostic Report-Genetics</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"><Data ss:Type="String">Pap smear</Data></Cell>
<Cell ss:StyleID="s87"/>
@ -5819,15 +5769,6 @@
<Cell ss:StyleID="s132"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"><Data ss:Type="String">PGx Example </Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">An example of a PGx haplotype report</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">example-pgx</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">diagnosticreport-example-pgx.xml</Data></Cell>
<Cell ss:StyleID="s132"><Data ss:Type="String">Diagnostic Report-Genetics</Data></Cell>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s143"><Data ss:Type="String">Gingival Mass</Data></Cell>
<Cell ss:StyleID="s87"/>
@ -7121,7 +7062,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>4</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>

View File

@ -746,6 +746,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
@ -847,7 +848,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">Text summary of the resource, for human interpretation</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Contained resources do not have narrative. Resources that are not contained SHOULD have a narrative. In some cases, a resource may only have text with little or no additional discrete data (as long as all minOccurs=1 elements are satisfied). This may be necessary for data from legacy systems where information is captured as a "text blob" or where text is additionally entered raw or narrated and encoded information is added later.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Contained resources do not have a narrative. Resources that are not contained SHOULD have a narrative. In some cases, a resource may only have text with little or no additional discrete data (as long as all minOccurs=1 elements are satisfied). This may be necessary for data from legacy systems where information is captured as a "text blob" or where text is additionally entered raw or narrated and encoded information is added later.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Act.text?</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -872,7 +873,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Contained, inline Resources</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, nor can they have their own independent transaction scope</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This should never be done when the content can be identified properly, as once identification is lost, it is extremely difficult (and context dependent) to restore it again. Contained resources may have profiles and tags In their meta elements, but SHALL NOT have security labels</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -938,7 +939,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -964,7 +965,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -990,7 +991,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1016,7 +1017,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1042,7 +1043,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1068,7 +1069,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1094,7 +1095,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1120,7 +1121,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1146,7 +1147,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1172,7 +1173,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1198,7 +1199,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1224,7 +1225,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1250,7 +1251,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1276,7 +1277,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1302,7 +1303,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1328,7 +1329,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1354,7 +1355,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1380,7 +1381,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1406,7 +1407,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1432,7 +1433,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1458,7 +1459,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1484,7 +1485,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1510,7 +1511,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1536,7 +1537,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1562,7 +1563,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1588,7 +1589,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1614,7 +1615,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1640,7 +1641,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1666,7 +1667,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1692,7 +1693,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1718,7 +1719,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1744,7 +1745,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1770,7 +1771,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1796,7 +1797,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1822,7 +1823,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1848,7 +1849,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1874,7 +1875,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1900,7 +1901,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1926,7 +1927,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1952,7 +1953,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1978,7 +1979,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2004,7 +2005,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2030,7 +2031,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2056,7 +2057,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2082,7 +2083,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2108,7 +2109,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2134,7 +2135,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2160,7 +2161,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2186,7 +2187,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2212,7 +2213,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2238,7 +2239,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2264,7 +2265,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2290,7 +2291,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2316,7 +2317,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2342,7 +2343,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2368,7 +2369,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2394,7 +2395,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2420,7 +2421,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2446,7 +2447,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2472,7 +2473,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2498,7 +2499,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2524,7 +2525,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2550,7 +2551,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2576,7 +2577,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2602,7 +2603,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2628,7 +2629,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2654,7 +2655,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2680,7 +2681,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2706,7 +2707,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2732,7 +2733,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2758,7 +2759,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2784,7 +2785,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2810,7 +2811,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2836,7 +2837,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2862,7 +2863,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2888,7 +2889,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2914,7 +2915,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2940,7 +2941,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2966,7 +2967,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2992,7 +2993,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3018,7 +3019,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3044,7 +3045,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3070,7 +3071,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3096,7 +3097,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3122,7 +3123,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3148,7 +3149,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3174,7 +3175,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3200,7 +3201,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3226,7 +3227,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3252,7 +3253,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3278,7 +3279,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3304,7 +3305,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3330,7 +3331,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3389,6 +3390,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -3398,9 +3400,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>3</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -3871,6 +3873,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -4118,6 +4121,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -4702,6 +4706,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -4957,6 +4962,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -5233,6 +5239,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5626,6 +5633,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6114,6 +6122,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -6703,6 +6712,7 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -20,6 +20,7 @@
<TabRatio>735</TabRatio>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -1380,11 +1381,11 @@
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s89"><Data ss:Type="String">Event.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Event.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">CodeableReference(Condition|Observation|DiagnosticReport|DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">EventReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1393,7 +1394,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Why was {{title}} performed?</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Describes why the {{title}} occurred in coded or textual form.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Describes why the {{title}} occurred in coded or textual form or Indicates another resource whose existence justifies this {{title}}</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Textual reasons can be captured using reasonCode.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1405,7 +1406,7 @@
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s89"><Data ss:Type="String">Event.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">!Event.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1645,9 +1646,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>16</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>0</LeftColumnRightPane>
<LeftColumnRightPane>11</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -1667,13 +1668,7 @@
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4:R9C4,R11C4:R15C4,R17C4:R30C4</Range>
<Type>List</Type>
<Value>'\\ERICS-AIR-2\ehaas\work\subversion\fhir\build\source\colorectal\Archive\[Invariants]Invariants'!#REF!</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R10C4</Range>
<Range>R2C4:R9C4,R11C4:R15C4,R17C4:R30C4,R10C4,R16C4</Range>
<Type>List</Type>
<Value>'\\ERICS-AIR-2\ehaas\work\subversion\fhir\build\source\colorectal\Archive\[Invariants]Invariants'!#REF!</Value>
<ErrorHide/>
@ -1712,12 +1707,6 @@
<CellRangeList/>
<Value>"0..1,1..1,0..*,1..*"</Value>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R16C4</Range>
<Type>List</Type>
<Value>'\\ERICS-AIR-2\ehaas\work\subversion\fhir\build\source\colorectal\Archive\[Invariants]Invariants'!#REF!</Value>
<ErrorHide/>
</DataValidation>
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C1:R30C23">
</AutoFilter>
</Worksheet>
@ -4010,8 +3999,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="7" ss:StyleID="s117" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s117" ss:Width="124.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s117" ss:Width="274.0"/>
<Column ss:StyleID="s117" ss:Width="51.0"/>
<Column ss:StyleID="s117" ss:Width="45.0"/>
<Column ss:Index="4" ss:StyleID="s117" ss:Width="45.0"/>
<Column ss:StyleID="s117" ss:Width="146.0"/>
<Column ss:StyleID="s117" ss:Width="172.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s117" ss:Width="97.0"/>

View File

@ -4051,7 +4051,7 @@
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>8</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>

File diff suppressed because it is too large Load Diff

View File

@ -24,6 +24,7 @@
<ActiveSheet>1</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -1269,11 +1270,11 @@
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="29">
<Cell ss:StyleID="s87"><Data ss:Type="String">FamilyMemberHistory.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">FamilyMemberHistory.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s98"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableReference(Condition|Observation|AllergyIntolerance|QuestionnaireResponse|DiagnosticReport|DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">FamilyHistoryReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1282,18 +1283,18 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14" ss:StyleID="s88"><Data ss:Type="String">Why was family member history performed?</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Describes why the family member history occurred in coded or textual form.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Describes why the family member history occurred in coded or textual form, or Indicates a Condition, Observation, AllergyIntolerance, or QuestionnaireResponse that justifies this family member history event</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Textual reasons can be captured using reasonCode.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Event.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Event.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="29">
<Cell ss:StyleID="s87"><Data ss:Type="String">FamilyMemberHistory.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">!FamilyMemberHistory.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s98"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3647,9 +3648,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>5</TopRowBottomPane>
<TopRowBottomPane>14</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>4</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -5961,8 +5962,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" ss:StyleID="s118" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="211.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="338.0"/>
<Column ss:StyleID="s118" ss:Width="51.0"/>
<Column ss:StyleID="s118" ss:Width="79.0"/>
<Column ss:Index="4" ss:StyleID="s118" ss:Width="79.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="280.0"/>
<Column ss:StyleID="s118" ss:Width="172.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s118" ss:Width="97.0"/>

View File

@ -1306,11 +1306,11 @@
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s88"><Data ss:Type="String">Goal.outcomeCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Goal.outcome</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableReference(Observation)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">GoalOutcome</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1322,7 +1322,7 @@
<Cell ss:StyleID="s89"><Data ss:Type="String">What result was achieved regarding the goal?</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Identifies the change (or lack of change) at the point when the status of the goal is assessed. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">Outcome tracking is a key aspect of care planning</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Note that this should not duplicate the goal status.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Note that this should not duplicate the goal status; The goal outcome is independent of the outcome of the related activities. For example, if the Goal is to achieve a target body weight of 150 lb and a care plan activity is defined to diet, then the care plans activity outcome could be calories consumed whereas goal outcome is an observation for the actual body weight measured.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1332,7 +1332,7 @@
<Cell ss:StyleID="s93"><Data ss:Type="String">GF#11116</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s88"><Data ss:Type="String">Goal.outcomeReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">!Goal.outcomeReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2987,7 +2987,7 @@
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>16</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>10</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -5093,8 +5093,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="26" ss:StyleID="s111" x:FullColumns="1" x:FullRows="1">
<Column ss:StyleID="s111" ss:Width="119.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="274.0"/>
<Column ss:StyleID="s111" ss:Width="51.0"/>
<Column ss:StyleID="s111" ss:Width="79.0"/>
<Column ss:Index="4" ss:StyleID="s111" ss:Width="79.0"/>
<Column ss:StyleID="s111" ss:Width="145.0"/>
<Column ss:StyleID="s111" ss:Width="172.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s111" ss:Width="97.0"/>
@ -5513,8 +5512,7 @@
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="50" ss:StyleID="s136" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s136" ss:Width="113.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s136" ss:Width="34.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s136" ss:Width="51.0"/>
<Column ss:AutoFitWidth="0" ss:Span="1" ss:StyleID="s136" ss:Width="79.0"/>
<Column ss:AutoFitWidth="0" ss:Index="4" ss:Span="1" ss:StyleID="s136" ss:Width="79.0"/>
<Column ss:AutoFitWidth="0" ss:Index="6" ss:StyleID="s136" ss:Width="244.0"/>
<Column ss:AutoFitWidth="0" ss:Span="1" ss:StyleID="s136" ss:Width="84.0"/>
<Column ss:AutoFitWidth="0" ss:Index="9" ss:StyleID="s136" ss:Width="241.0"/>
@ -5562,7 +5560,7 @@
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s141"/>
</Row>
<Row ss:Height="16">
<Row ss:AutoFitHeight="0" ss:Height="16">
<Cell><Data ss:Type="String">active</Data></Cell>
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">accepted</Data></Cell>

View File

@ -840,7 +840,7 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">MetadataResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">CanonicalResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>

View File

@ -17,7 +17,7 @@
<ActiveSheet>3</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1082,11 +1082,11 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s93">
<Cell ss:StyleID="s86"><Data ss:Type="String">GuidanceResponse.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">GuidanceResponse.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">CodeableReference(Condition | Observation | DiagnosticReport | DocumentReference)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1096,19 +1096,19 @@
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">Why guidance is needed</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Describes the reason for the guidance response in coded or textual form</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Describes the reason for the guidance response in coded or textual form, or Indicates the reason the request was initiated. This is typically provided as a parameter to the evaluation and echoed by the service, although for some use cases, such as subscription- or event-based scenarios, it may provide an indication of the cause for the response</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="17" ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Event.reasonCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Event.reason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s95"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s93">
<Cell ss:StyleID="s86"><Data ss:Type="String">GuidanceResponse.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">!GuidanceResponse.reasonReference</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3292,6 +3292,7 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -4022,7 +4023,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5554,8 +5554,7 @@
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="22" ss:StyleID="s114" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s114" ss:Width="176.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s114" ss:Width="274.0"/>
<Column ss:StyleID="s114" ss:Width="51.0"/>
<Column ss:StyleID="s114" ss:Width="45.0"/>
<Column ss:Index="4" ss:StyleID="s114" ss:Width="45.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s114" ss:Width="290.0"/>
<Column ss:StyleID="s114" ss:Width="172.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s114" ss:Width="97.0"/>

View File

@ -3,7 +3,7 @@
<Author>Grahame</Author>
<LastAuthor>Grahame Grieve</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2018-10-10T19:49:10Z</LastSaved>
<LastSaved>2019-12-30T20:10:09Z</LastSaved>
<Version>16.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -872,7 +872,7 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">MetadataResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">CanonicalResource</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1847,7 +1847,7 @@
<Cell ss:StyleID="s101"><Data ss:Type="String">Nested Pages / Sections</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><Data ss:Type="String">Nested Pages/Sections under this page</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The implementation guide breadcrumbs are generated from this structure</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">The implementation guide breadcrumbs may be generated from this structure</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1869,9 +1869,9 @@
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><Data ss:Type="String">Defines how IG is built by tools</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><Data ss:Type="String">A set of parameters that defines how the implementation guide is built. The parameters are defined by the relevant tools that build the implementation guides</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">see [confluence](https://confluence.hl7.org/display/FHIR/Implementation+Guide+Parameters) for the parameters defined by the HL7 IG publisher</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1892,7 +1892,7 @@
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><Data ss:Type="String">apply | path-resource | path-pages | path-tx-cache | expansion-parameter | rule-broken-links | generate-xml | generate-json | generate-turtle | html-template</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><Data ss:Type="String">Code that identifies parameter</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3580,7 +3580,7 @@
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>25</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>8</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>

File diff suppressed because it is too large Load Diff

View File

@ -17,8 +17,7 @@
<ActiveSheet>4</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -777,7 +776,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:Print> </x:Print>
@ -857,10 +855,10 @@
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String">Act[classCode=GROUPER;moodCode=EVN]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">NPM Package</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">Library is a fairly general artifact that can be used to convey specific items like compiled CQL or Java packages, as well as a container, through the use of the composed-of related artifacts to convey groups like catalogs, quality programs, or composite artifacts</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">Library.url</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -883,7 +881,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.identifier[scope=BUSN;reliability=ISS]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.name</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -935,7 +933,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">N/A (to add?)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.version</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -961,7 +959,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">N/A</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.name</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1011,7 +1009,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">N/A</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1115,12 +1113,12 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">N/A</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Subject was added in R4 across all the knowledge artifacts to support content that focused on resource types other than patient, such as Location, Organization, or even Encounter, or Procedure, depending on the use case</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s93"><Data ss:Type="String">Library.date</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1169,7 +1167,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.participation[typeCode=AUT].role</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.maintainers</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1195,7 +1193,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.participation[typeCode=CALLBCK].role</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.maintainers.name, .maintainers.email, .maintainers.url</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1221,7 +1219,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.description</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1276,7 +1274,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Although jurisdiction was originally modeled as a type of useContext, it was specifically pulled out into its own element because of how often it is used. This is true across all the conformance resources</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s93"><Data ss:Type="String">Library.purpose</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1350,7 +1348,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">N/A (to add?)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.license</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1454,10 +1452,10 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">N/A (to add?)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.keyword</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Although topic could be modeled as a type of useContext, it was specifically modeled as an element because it is central to indexing support</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s93"><Data ss:Type="String">Library.author</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1478,7 +1476,7 @@
<Cell ss:Index="17" ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.participation[typeCode=AUT]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="21" ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="21" ss:StyleID="s91"><Data ss:Type="String">.author, .contributors</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="23" ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"/>
@ -1501,6 +1499,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">An individual or organization primarily responsible for internal coherence of the content</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="17" ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.participation[typeCode=AUT]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="21" ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="23" ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1575,7 +1574,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.outboundRelationship[typeCode=DOC,RSON,PREV, DRIV, USE, COMP] {successor would be PREV w/ inversionInd=true; No support for citation}</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.homepage { for relatedArtifact[documentation].url }, .dependencies { for relatedArtifact[depends-on] }</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1653,7 +1652,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">.files { for content[type=text] }, .bin { for content[type!=text] }</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3936,18 +3935,18 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>16</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>15</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
@ -4483,7 +4482,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -4714,7 +4712,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -5384,8 +5381,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5644,7 +5639,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -5925,7 +5919,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6322,7 +6315,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6800,7 +6792,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -7391,7 +7382,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
@ -7939,7 +7929,6 @@
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -832,7 +832,7 @@
<Column ss:AutoFitWidth="0" ss:StyleID="s69" ss:Width="66.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s69" ss:Width="120.0"/>
<Row ss:AutoFitHeight="0" ss:Height="48" ss:StyleID="s71">
<Cell ss:StyleID="s72"><Data ss:Type="String">Element</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000"> </Font><Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Format is ResourceName.componentName.componentName</Font><Font html:Color="#000000"> </Font></ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Element</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Format is ResourceName.componentName.componentName</Font><Font html:Color="#000000"> </Font></ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Aliases</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Other names - semi-colon separated</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Card.</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Min and max repetitions n..m</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Inv.</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Comma-delimited list of Ids from Invariant tab that controls appearance of this element</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -858,7 +858,7 @@
<Cell ss:StyleID="s76"><Data ss:Type="String">Display Hint</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Provides guidance to narrative auto-generator. Check Confluence documentation</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Committee Notes</Data><Comment ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Color="#000000" html:Face="Tahoma" html:Size="8" x:Family="Swiss">Not published</Font> </ss:Data></Comment><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="160">
<Row ss:AutoFitHeight="0" ss:Height="160">
<Cell ss:StyleID="s78"><Data ss:Type="String">Medication</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -874,7 +874,7 @@
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Definition of a Medication</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">This resource is primarily used for the identification and definition of a medication for the purposes of prescribing, dispensing, and administering a medication as well as for making statements about medication use.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">This resource is primarily used for the identification and definition of a medication, including ingredients, for the purposes of prescribing, dispensing, and administering a medication as well as for making statements about medication use.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -993,7 +993,7 @@
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="224">
<Row ss:AutoFitHeight="0" ss:Height="224">
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.doseForm</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1020,7 +1020,7 @@
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="160" ss:StyleID="s95">
<Row ss:AutoFitHeight="0" ss:Height="160" ss:StyleID="s95">
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.amount</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1047,7 +1047,7 @@
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="192">
<Row ss:AutoFitHeight="0" ss:Height="192">
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.ingredient</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1075,11 +1075,11 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="256">
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.ingredient.item[x]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.ingredient.item</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableConcept|Reference(Substance|Medication)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">CodeableReference(Substance|Medication)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1128,12 +1128,12 @@
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="410">
<Row ss:AutoFitHeight="0" ss:Height="410">
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.ingredient.strength[x]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Ratio | CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Ratio | CodeableConcept |Quantity</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1144,7 +1144,7 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Quantity of ingredient present</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet. This is expressed as a ratio where the numerator is 250mg and the denominator is 1 tablet.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet. This is expressed as a ratio where the numerator is 250mg and the denominator is 1 tablet but can also be expressed a quantity when the denominator is assumed to be 1 tablet.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1155,7 +1155,7 @@
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="33">
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s87"><Data ss:Type="String">Medication.batch</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3437,7 +3437,6 @@
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<TopRowVisible>7</TopRowVisible>
<LeftColumnVisible>6</LeftColumnVisible>
<ProtectObjects>False</ProtectObjects>
@ -3978,14 +3977,14 @@
<Cell ss:StyleID="s121"><Data ss:Type="String">ingredient</Data></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s122"><Data ss:Type="String">Medication.ingredient.itemReference</Data></Cell>
<Cell ss:StyleID="s122"><Data ss:Type="String">Medication.ingredient.item.reference</Data></Cell>
<Cell ss:StyleID="s123"><Data ss:Type="String">Returns medications for this ingredient reference</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s121"><Data ss:Type="String">ingredient-code</Data></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s122"><Data ss:Type="String">Medication.ingredient.itemCodeableConcept</Data></Cell>
<Cell ss:StyleID="s122"><Data ss:Type="String">Medication.ingredient.item.concept</Data></Cell>
<Cell ss:StyleID="s123"><Data ss:Type="String">Returns medications for this ingredient code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">

View File

@ -16,7 +16,6 @@
<TabRatio>719</TabRatio>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -1103,9 +1102,9 @@
</Worksheet>
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R95C25"/>
<NamedRange ss:Hidden="1" ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R96C25"/>
</Names>
<Table ss:ExpandedColumnCount="25" ss:ExpandedRowCount="95" ss:StyleID="s69" x:FullColumns="1" x:FullRows="1">
<Table ss:ExpandedColumnCount="25" ss:ExpandedRowCount="96" ss:StyleID="s69" x:FullColumns="1" x:FullRows="1">
<Column ss:AutoFitWidth="0" ss:StyleID="s70" ss:Width="296.0"/>
<Column ss:AutoFitWidth="0" ss:StyleID="s69" ss:Width="78.0"/>
<Column ss:StyleID="s69" ss:Width="30.0"/>
@ -1241,7 +1240,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Reference(Procedure)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Reference(Procedure | MedicationAdministration)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1251,9 +1250,9 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Event that dispense is part of </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The procedure that trigger the dispense</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The procedure or medication administration that triggered the dispense</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">While both a procedure and a medication administration may have triggered the dispense, but it is not expected that multiple procedures and/or multiple medication administrations would be triggers.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s95"><Data ss:Type="String">.outboundRelationship[typeCode=COMP]/target[classCode=PROC,moodCode=EVN]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1291,11 +1290,11 @@
<Cell ss:StyleID="s94"><Data ss:Type="String">Active - processed but not pickup Completed - process and pickup Aborted - process and put back in stock This is not related to partialFill whioch is really a partialFulfillment of the order</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.statusReason[x]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.statusReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableConcept|Reference(DetectedIssue)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableReference(DetectedIssue)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s96"><Data ss:Type="String">MedicationDispenseStatusReason</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1324,14 +1323,14 @@
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableConcept</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">MedicationDispenseCategory</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">MedicationDispenseAdminLocation</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Type of medication dispense</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Indicates the type of medication dispense (for example, where the medication is expected to be consumed or administered (i.e. inpatient or outpatient)).</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Indicates the type of medication dispense (for example, drug classification like ATC, where meds would be administered, legal category of the medication.)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The category can be used to include where the medication is expected to be consumed or other types of dispenses. Invariants can be used to bind to different value sets when profiling to bind.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1344,11 +1343,11 @@
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="225">
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.medication[x]</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.medication</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableConcept|Reference(Medication)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">CodeableReference(Medication)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">y</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">MedicationCode</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1373,7 +1372,7 @@
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.subject</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Reference(Patient | Group)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1439,7 +1438,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Information that supports the dispensing of the medication</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Additional information that supports the medication being dispensed.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Additional information that supports the medication being dispensed. For example, there may be requirements that a specific lab test has been completed prior to dispensing or the patient's weight at the time of dispensing is documented. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1510,7 +1509,7 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s97"><Data ss:Type="String">Reference(Practitioner |PractitionerRole | Organization | Patient | Device | RelatedPerson)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s97"><Data ss:Type="String">Reference(Practitioner |PractitionerRole | Organization | Patient | Device | RelatedPerson | CareTeam)</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1802,6 +1801,33 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.renderedDosageInstruction</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">string</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Full representation of the dosage instructions</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses. </Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">The content of the renderedDosageInstructions must not be different than the dose represented in the dosageInstruction content.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">SubstanceAdministration.text</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s93"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell ss:StyleID="s88"><Data ss:Type="String">MedicationDispense.dosageInstruction</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3710,14 +3736,14 @@
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>5</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C1:R95C25">
<AutoFilter xmlns="urn:schemas-microsoft-com:office:excel" x:Range="R1C1:R96C25">
</AutoFilter>
</Worksheet>
<Worksheet ss:Name="Invariants">
@ -4251,14 +4277,14 @@
<Cell ss:StyleID="s122"><Data ss:Type="String">medication</Data></Cell>
<Cell ss:StyleID="s123"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s123"/>
<Cell ss:StyleID="s124"><Data ss:Type="String">MedicationDispense.medicationReference</Data></Cell>
<Cell ss:StyleID="s124"><Data ss:Type="String">MedicationDispense.medication.reference</Data></Cell>
<Cell ss:StyleID="s125"><Data ss:Type="String">Returns dispenses of this medicine resource</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s122"><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s123"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s123"/>
<Cell ss:StyleID="s124"><Data ss:Type="String">MedicationDispense.medicationCodeableConcept</Data></Cell>
<Cell ss:StyleID="s124"><Data ss:Type="String">MedicationDispense.medication.concept</Data></Cell>
<Cell ss:StyleID="s125"><Data ss:Type="String">Returns dispenses of this medicine code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
@ -4676,11 +4702,11 @@
<Cell ss:StyleID="s136"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">MedicationDispenseCategory</Data></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">MedicationDispenseAdminLocation</Data></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">A code describing where the dispensed medication is expected to be consumed or administered</Data></Cell>
<Cell ss:StyleID="s134"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s134"><Data ss:Type="String">preferred</Data></Cell>
<Cell ss:StyleID="s134"><Data ss:Type="String">valueset-medicationdispense-category</Data></Cell>
<Cell ss:StyleID="s134"><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s134"><Data ss:Type="String">valueset-medicationdispense-admin-location</Data></Cell>
<Cell ss:StyleID="s134"/>
<Cell ss:StyleID="s134"/>
<Cell ss:StyleID="s134"/>

Some files were not shown because too many files have changed in this diff Show More