Start adding DEV structures

This commit is contained in:
James Agnew 2014-10-17 18:08:37 -04:00
parent 47edfb7b01
commit b07b8b9845
212 changed files with 127727 additions and 2692 deletions

View File

@ -1,6 +1,4 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
encoding/<project>=UTF-8

View File

View File

@ -0,0 +1,329 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<version>0.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hapi-fhir-structures-dev</artifactId>
<packaging>jar</packaging>
<name>HAPI FHIR Structures - DSTU (FHIR 0.80)</name>
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>0.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet_api_version}</version>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
<version>${jetty_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback_version}</version>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ebaysf.web</groupId>
<artifactId>cors-filter</artifactId>
<version>${ebay_cors_filter_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>${thymeleaf-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-schematron</artifactId>
<version>${phloc_schematron_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-commons</artifactId>
<version>${phloc_commons_version}</version>
<scope>test</scope>
</dependency>
<!-- UNIT TEST DEPENDENCIES -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15-sources</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>directory-naming</groupId>
<artifactId>naming-java</artifactId>
<version>0.8</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava_version}</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring_security_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring_security_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
<version>1.0.2.RELEASE</version>
<scope>test</scope>
</dependency>
-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-plugin</artifactId>
<version>0.7-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>generate-structures</goal>
</goals>
</execution>
</executions>
<configuration>
<package>ca.uhn.fhir.model.dev</package>
<version>dev</version>
<baseResourceNames>
<baseResourceName>adversereaction</baseResourceName>
<baseResourceName>alert</baseResourceName>
<baseResourceName>allergyintolerance</baseResourceName>
<baseResourceName>appointmentresponse</baseResourceName>
<baseResourceName>appointment</baseResourceName>
<baseResourceName>availability</baseResourceName>
<baseResourceName>careplan</baseResourceName>
<!-- <baseResourceName>claim</baseResourceName> -->
<baseResourceName>composition</baseResourceName>
<baseResourceName>conceptmap</baseResourceName>
<baseResourceName>condition</baseResourceName>
<baseResourceName>conformance</baseResourceName>
<baseResourceName>coverage</baseResourceName>
<baseResourceName>deviceobservationreport</baseResourceName>
<baseResourceName>device</baseResourceName>
<baseResourceName>diagnosticorder</baseResourceName>
<baseResourceName>diagnosticreport</baseResourceName>
<baseResourceName>documentmanifest</baseResourceName>
<baseResourceName>documentreference</baseResourceName>
<baseResourceName>encounter</baseResourceName>
<baseResourceName>familyhistory</baseResourceName>
<baseResourceName>geneexpression</baseResourceName>
<baseResourceName>geneticanalysis</baseResourceName>
<baseResourceName>group</baseResourceName>
<baseResourceName>gvfmeta</baseResourceName>
<baseResourceName>gvfvariant</baseResourceName>
<baseResourceName>imagingstudy</baseResourceName>
<baseResourceName>immunizationrecommendation</baseResourceName>
<baseResourceName>immunization</baseResourceName>
<baseResourceName>list</baseResourceName>
<baseResourceName>location</baseResourceName>
<baseResourceName>media</baseResourceName>
<baseResourceName>medicationadministration</baseResourceName>
<baseResourceName>medicationdispense</baseResourceName>
<baseResourceName>medicationprescription</baseResourceName>
<baseResourceName>medication</baseResourceName>
<baseResourceName>medicationstatement</baseResourceName>
<baseResourceName>messageheader</baseResourceName>
<baseResourceName>microarray</baseResourceName>
<baseResourceName>observation</baseResourceName>
<baseResourceName>operationoutcome</baseResourceName>
<baseResourceName>operationdefinition</baseResourceName>
<baseResourceName>orderresponse</baseResourceName>
<baseResourceName>order</baseResourceName>
<baseResourceName>organization</baseResourceName>
<baseResourceName>other</baseResourceName>
<baseResourceName>patient</baseResourceName>
<baseResourceName>practitioner</baseResourceName>
<baseResourceName>procedure</baseResourceName>
<baseResourceName>profile</baseResourceName>
<baseResourceName>provenance</baseResourceName>
<baseResourceName>query</baseResourceName>
<baseResourceName>questionnaire</baseResourceName>
<baseResourceName>relatedperson</baseResourceName>
<baseResourceName>remittance</baseResourceName>
<baseResourceName>securityevent</baseResourceName>
<baseResourceName>sequencinganalysis</baseResourceName>
<baseResourceName>sequencinglab</baseResourceName>
<baseResourceName>slot</baseResourceName>
<baseResourceName>specimen</baseResourceName>
<baseResourceName>substance</baseResourceName>
<baseResourceName>supply</baseResourceName>
<baseResourceName>user</baseResourceName>
<baseResourceName>valueset</baseResourceName>
</baseResourceNames>
<buildDatatypes>true</buildDatatypes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-plugin</artifactId>
<versionRange>[0.4-SNAPSHOT,)</versionRange>
<goals>
<goal>generate-structures</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven_javadoc_plugin_version}</version>
<configuration>
</configuration>
</plugin>
</plugins>
</reporting>
</project>

View File

@ -1,6 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="hapi-fhir-structures-dstu">
<wb-resource deploy-path="/" source-path="/target/generated-sources/tinder"/>
<wb-resource deploy-path="/" source-path="/src/main/java"/>
</wb-module>
<wb-module deploy-name="hapi-fhir-structures-dstu"/>
</project-modules>

View File

@ -206,13 +206,13 @@
<configuration>
<package>ca.uhn.fhir.model.dstu</package>
<baseResourceNames>
<!-- <baseResourceName>account</baseResourceName> -->
<!-- <baseResourceName>activitydefinition-extensions</baseResourceName> -->
<baseResourceName>account</baseResourceName>
<baseResourceName>adversereaction</baseResourceName>
<baseResourceName>adversereactionrisk</baseResourceName>
<baseResourceName>alert</baseResourceName>
<baseResourceName>allergyintolerance</baseResourceName>
<baseResourceName>appointmentresponse</baseResourceName>
<baseResourceName>appointment</baseResourceName>
<baseResourceName>appointmentresponse</baseResourceName>
<baseResourceName>availability</baseResourceName>
<baseResourceName>careplan</baseResourceName>
<baseResourceName>claim</baseResourceName>
@ -220,70 +220,70 @@
<baseResourceName>conceptmap</baseResourceName>
<baseResourceName>condition</baseResourceName>
<baseResourceName>conformance</baseResourceName>
<baseResourceName>contract</baseResourceName>
<baseResourceName>contraindication</baseResourceName>
<baseResourceName>coverage</baseResourceName>
<baseResourceName>deviceobservationreport</baseResourceName>
<baseResourceName>device</baseResourceName>
<baseResourceName>deviceobservationreport</baseResourceName>
<baseResourceName>diagnosticorder</baseResourceName>
<baseResourceName>diagnosticreport</baseResourceName>
<baseResourceName>documentmanifest</baseResourceName>
<baseResourceName>documentreference</baseResourceName>
<baseResourceName>encounter</baseResourceName>
<!-- <baseResourceName>familyhistory-genetics-profile</baseResourceName> -->
<baseResourceName>familyhistory</baseResourceName>
<baseResourceName>geneexpression</baseResourceName>
<baseResourceName>geneticanalysis</baseResourceName>
<baseResourceName>group</baseResourceName>
<baseResourceName>gvfmeta</baseResourceName>
<baseResourceName>gvfvariant</baseResourceName>
<baseResourceName>imagingstudy</baseResourceName>
<baseResourceName>immunizationrecommendation</baseResourceName>
<baseResourceName>immunization</baseResourceName>
<baseResourceName>immunizationrecommendation</baseResourceName>
<baseResourceName>list</baseResourceName>
<baseResourceName>location</baseResourceName>
<baseResourceName>media</baseResourceName>
<baseResourceName>medication</baseResourceName>
<baseResourceName>medicationadministration</baseResourceName>
<baseResourceName>medicationdispense</baseResourceName>
<baseResourceName>medicationprescription</baseResourceName>
<baseResourceName>medication</baseResourceName>
<baseResourceName>medicationstatement</baseResourceName>
<baseResourceName>messageheader</baseResourceName>
<baseResourceName>microarray</baseResourceName>
<!-- <baseResourceName>namespace</baseResourceName> -->
<baseResourceName>namespace</baseResourceName>
<baseResourceName>nutritionorder</baseResourceName>
<baseResourceName>observation</baseResourceName>
<baseResourceName>operationdefinition</baseResourceName>
<baseResourceName>operationoutcome</baseResourceName>
<baseResourceName>orderresponse</baseResourceName>
<baseResourceName>order</baseResourceName>
<baseResourceName>orderresponse</baseResourceName>
<baseResourceName>organization</baseResourceName>
<baseResourceName>other</baseResourceName>
<baseResourceName>patient</baseResourceName>
<!--<baseResourceName>person</baseResourceName>-->
<baseResourceName>person</baseResourceName>
<baseResourceName>practitioner</baseResourceName>
<baseResourceName>procedure</baseResourceName>
<baseResourceName>profile</baseResourceName>
<!-- <baseResourceName>protocol</baseResourceName> -->
<!-- <baseResourceName>provenance-extensions</baseResourceName> -->
<baseResourceName>protocol</baseResourceName>
<baseResourceName>provenance</baseResourceName>
<baseResourceName>query</baseResourceName>
<!-- <baseResourceName>questionnaire-extensions</baseResourceName> -->
<baseResourceName>questionnaire</baseResourceName>
<baseResourceName>questionnaireanswers</baseResourceName>
<baseResourceName>referralrequest</baseResourceName>
<baseResourceName>relatedperson</baseResourceName>
<baseResourceName>remittance</baseResourceName>
<!-- <baseResourceName>resource</baseResourceName> -->
<baseResourceName>riskassessment</baseResourceName>
<baseResourceName>securityclaim</baseResourceName>
<baseResourceName>securityevent</baseResourceName>
<!--<baseResourceName>sequence</baseResourceName>-->
<baseResourceName>securitygroup</baseResourceName>
<baseResourceName>securityprincipal</baseResourceName>
<baseResourceName>sequence</baseResourceName>
<baseResourceName>sequencinganalysis</baseResourceName>
<baseResourceName>sequencinglab</baseResourceName>
<baseResourceName>slot</baseResourceName>
<baseResourceName>specimen</baseResourceName>
<baseResourceName>subscription</baseResourceName>
<baseResourceName>substance</baseResourceName>
<baseResourceName>supply</baseResourceName>
<!--<baseResourceName>template</baseResourceName>-->
<baseResourceName>test</baseResourceName>
<baseResourceName>user</baseResourceName>
<!-- <baseResourceName>valueset-extensions</baseResourceName> -->
<baseResourceName>valueset</baseResourceName>
<!--<baseResourceName>vcfmeta</baseResourceName>-->
<!--<baseResourceName>vcfvariant</baseResourceName>-->
</baseResourceNames>
<buildDatatypes>true</buildDatatypes>
</configuration>

View File

@ -29,6 +29,11 @@
<artifactId>hapi-fhir-base</artifactId>
<version>0.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
<version>0.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>

View File

@ -1020,7 +1020,7 @@ public class Controller {
Conformance conformance;
try {
conformance = client.conformance();
conformance = (Conformance)client.conformance();
} catch (Exception e) {
ourLog.warn("Failed to load conformance statement", e);
theModel.put("errorMsg", "Failed to load conformance statement, error was: " + e.toString());

View File

@ -32,8 +32,8 @@ import ca.uhn.fhir.rest.annotation.RequiredParam;
import ca.uhn.fhir.rest.annotation.Search;
import ca.uhn.fhir.rest.api.MethodOutcome;
import ca.uhn.fhir.rest.client.IGenericClient;
import ca.uhn.fhir.rest.param.CodingListParam;
import ca.uhn.fhir.rest.param.DateRangeParam;
import ca.uhn.fhir.rest.param.TokenOrListParam;
import ca.uhn.fhir.rest.server.FifoMemoryPagingProvider;
import ca.uhn.fhir.rest.server.IResourceProvider;
import ca.uhn.fhir.rest.server.RestfulServer;
@ -173,7 +173,7 @@ public class OverlayTestApp {
@Search
public List<DiagnosticReport> findDiagnosticReportsByPatient (
@RequiredParam(name=DiagnosticReport.SP_SUBJECT + '.' + Patient.SP_IDENTIFIER) IdentifierDt thePatientId,
@OptionalParam(name=DiagnosticReport.SP_NAME) CodingListParam theNames,
@OptionalParam(name=DiagnosticReport.SP_NAME) TokenOrListParam theNames,
@OptionalParam(name=DiagnosticReport.SP_DATE) DateRangeParam theDateRange,
@IncludeParam(allow= {"DiagnosticReport.result"}) Set<Include> theIncludes
) throws Exception {
@ -184,7 +184,7 @@ public class OverlayTestApp {
@Search
public List<DiagnosticReport> findDiagnosticReportsByPatientIssued (
@RequiredParam(name=DiagnosticReport.SP_SUBJECT + '.' + Patient.SP_IDENTIFIER) IdentifierDt thePatientId,
@OptionalParam(name=DiagnosticReport.SP_NAME) CodingListParam theNames,
@OptionalParam(name=DiagnosticReport.SP_NAME) TokenOrListParam theNames,
@OptionalParam(name=DiagnosticReport.SP_ISSUED) DateRangeParam theDateRange,
@IncludeParam(allow= {"DiagnosticReport.result"}) Set<Include> theIncludes
) throws Exception {

View File

@ -51,7 +51,7 @@ public class TinderJpaRestServerMojo extends AbstractMojo {
File directoryBase = new File(targetDirectory, packageBase.replace(".", File.separatorChar + ""));
directoryBase.mkdirs();
ResourceGeneratorUsingSpreadsheet gen = new ResourceGeneratorUsingSpreadsheet();
ResourceGeneratorUsingSpreadsheet gen = new ResourceGeneratorUsingSpreadsheet("dstu");
gen.setBaseResourceNames(baseResourceNames);
try {

View File

@ -37,6 +37,9 @@ public class TinderStructuresMojo extends AbstractMojo {
@Parameter(alias = "package", required = true)
private String packageName;
@Parameter(alias = "version", required = true, defaultValue="dstu")
private String version = "dstu";
@Parameter(required = false)
private List<ProfileFileDefinition> resourceProfileFiles;
@ -81,7 +84,7 @@ public class TinderStructuresMojo extends AbstractMojo {
ourLog.info("Loading Datatypes...");
Map<String, String> datatypeLocalImports = new HashMap<String, String>();
DatatypeGeneratorUsingSpreadsheet dtp = new DatatypeGeneratorUsingSpreadsheet();
DatatypeGeneratorUsingSpreadsheet dtp = new DatatypeGeneratorUsingSpreadsheet(version);
if (buildDatatypes) {
try {
dtp.parse();
@ -94,7 +97,7 @@ public class TinderStructuresMojo extends AbstractMojo {
datatypeLocalImports = dtp.getLocalImports();
}
ResourceGeneratorUsingSpreadsheet rp = new ResourceGeneratorUsingSpreadsheet();
ResourceGeneratorUsingSpreadsheet rp = new ResourceGeneratorUsingSpreadsheet(version);
if (baseResourceNames != null && baseResourceNames.size() > 0) {
ourLog.info("Loading Resources...");
try {
@ -205,24 +208,31 @@ public class TinderStructuresMojo extends AbstractMojo {
// vsp.setResourceValueSetFiles(theResourceValueSetFiles);Directory("src/main/resources/vs/");
vsp.parse();
DatatypeGeneratorUsingSpreadsheet dtp = new DatatypeGeneratorUsingSpreadsheet();
DatatypeGeneratorUsingSpreadsheet dtp = new DatatypeGeneratorUsingSpreadsheet("dev");
dtp.parse();
dtp.bindValueSets(vsp);
dtp.markResourcesForImports();
Map<String, String> datatypeLocalImports = dtp.getLocalImports();
String dtOutputDir = "target/generated-sources/ca/uhn/fhir/model/dstu/composite";
dtp.writeAll(new File(dtOutputDir), null, "ca.uhn.fhir.model.dstu");
ResourceGeneratorUsingSpreadsheet rp = new ResourceGeneratorUsingSpreadsheet();
rp.setBaseResourceNames(Arrays.asList("securityevent"));
ResourceGeneratorUsingSpreadsheet rp = new ResourceGeneratorUsingSpreadsheet("dev");
rp.setBaseResourceNames(Arrays.asList("conceptmap","organization"));
rp.parse();
rp.bindValueSets(vsp);
rp.markResourcesForImports();
// rp.bindValueSets(vsp);
String rpOutputDir = "target/generated-sources/ca/uhn/fhir/model/dstu/resource";
String rpSOutputDir = "target/generated-resources/ca/uhn/fhir/model/dstu";
dtp.combineContentMaps(rp);
rp.combineContentMaps(dtp);
rp.getLocalImports().putAll(datatypeLocalImports);
datatypeLocalImports.putAll(rp.getLocalImports());
dtp.writeAll(new File(dtOutputDir), null, "ca.uhn.fhir.model.dstu");
rp.writeAll(new File(rpOutputDir), new File(rpSOutputDir), "ca.uhn.fhir.model.dstu");
String vsOutputDir = "target/generated-sources/ca/uhn/fhir/model/dstu/valueset";

View File

@ -48,10 +48,10 @@ public abstract class BaseElement {
myChildren = new ArrayList<BaseElement>();
}
myChildren.add(theElem);
// if (theElem.getDeclaringClassNameComplete()==null) {
theElem.setDeclaringClassNameComplete(getDeclaringClassNameCompleteForChildren());
// }
// if (theElem.getDeclaringClassNameComplete()==null) {
theElem.setDeclaringClassNameComplete(getDeclaringClassNameCompleteForChildren());
// }
}
public String getBinding() {
@ -63,11 +63,11 @@ public abstract class BaseElement {
}
public String getCardMax() {
return defaultString(myCardMax,"1");
return defaultString(myCardMax, "1");
}
public String getCardMin() {
return defaultString(myCardMin,"0");
return defaultString(myCardMin, "0");
}
public Map<String, Slicing> getChildElementNameToSlicing() {
@ -90,7 +90,7 @@ public abstract class BaseElement {
}
private String toStringConstant(String theDefinition) {
if (theDefinition==null) {
if (theDefinition == null) {
return "";
}
StringBuffer b = new StringBuffer();
@ -188,7 +188,7 @@ public abstract class BaseElement {
public void setElementName(String theName) {
myElementName = theName;
}
public void setElementNameAndDeriveParentElementName(String theName) {
int lastDot = theName.lastIndexOf('.');
if (lastDot == -1) {
@ -220,7 +220,7 @@ public abstract class BaseElement {
public void clearTypes() {
getType().clear();
}
public void setTypeFromString(String theType) {
if (theType == null) {
myType = null;
@ -230,6 +230,9 @@ public abstract class BaseElement {
if (typeString.toLowerCase().startsWith("resource(")) {
typeString = typeString.substring("Resource(".length(), typeString.length() - 1);
myResourceRef = true;
} else if (typeString.toLowerCase().startsWith("reference(")) {
typeString = typeString.substring("Reference(".length(), typeString.length() - 1);
myResourceRef = true;
} else if (typeString.startsWith("@")) {
typeString = typeString.substring(1);
typeString = ResourceBlock.convertFhirPathNameToClassName(typeString);
@ -238,22 +241,34 @@ public abstract class BaseElement {
}
if (StringUtils.isNotBlank(typeString)) {
int idx = typeString.indexOf("Reference(");
if (idx != -1) {
int endIdx = typeString.indexOf(")");
typeString = typeString.substring(0,idx) + typeString.substring(idx, endIdx).replace("|", ",") + typeString.substring(endIdx);
}
String[] types = typeString.replace("=", "").split("\\|");
for (String nextType : types) {
nextType = nextType.trim();
if (nextType.endsWith(")")){
nextType = nextType.substring(0, nextType.length()-1);
if (nextType.endsWith(")")) {
nextType = nextType.substring(0, nextType.length() - 1);
}
if (nextType.toLowerCase().startsWith("resource(")) {
nextType = nextType.substring("Resource(".length(), nextType.length());
nextType = nextType.substring(0, 1).toUpperCase() + nextType.substring(1);
} else if (nextType.toLowerCase().startsWith("reference(")) {
nextType = nextType.substring("Reference(".length(), nextType.length());
nextType = nextType.substring(0, 1).toUpperCase() + nextType.substring(1);
} else {
nextType = nextType.substring(0, 1).toUpperCase() + nextType.substring(1);
nextType = nextType + getTypeSuffix();
}
if (isNotBlank(nextType)) {
getType().add(nextType);
for (String next : nextType.split(",")) {
if (isNotBlank(next.trim())) {
getType().add(next.trim());
}
}
}
}
@ -276,7 +291,6 @@ public abstract class BaseElement {
return false; // TODO: implemment
}
public boolean isHasExtensionUrl() {
return StringUtils.isNotBlank(myExtensionUrl);
}

View File

@ -20,6 +20,12 @@ import com.google.common.reflect.ClassPath.ClassInfo;
public class DatatypeGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetParser {
private String myVersion;
public DatatypeGeneratorUsingSpreadsheet(String theVersion) {
myVersion = theVersion;
}
@Override
protected String getTemplate() {
return "/vm/dt_composite.vm";
@ -71,22 +77,30 @@ public class DatatypeGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
protected List<String> getInputStreamNames() {
ArrayList<String> retVal = new ArrayList<String>();
retVal.add(("/dt/address.xml"));
retVal.add(("/dt/coding.xml"));
retVal.add(("/dt/humanname.xml"));
retVal.add(("/dt/period.xml"));
retVal.add(("/dt/ratio.xml"));
retVal.add(("/dt/schedule.xml"));
retVal.add(("/dt/attachment.xml"));
retVal.add(("/dt/contact.xml"));
retVal.add(("/dt/identifier.xml"));
retVal.add(("/dt/quantity.xml"));
retVal.add(("/dt/resourcereference.xml"));
retVal.add(("/dt/codeableconcept.xml"));
// retVal.add(("/dt/extension.xml"));
// retVal.add(("/dt/narrative.xml"));
retVal.add(("/dt/range.xml"));
retVal.add(("/dt/sampleddata.xml"));
retVal.add(("/dt/" + myVersion + "/address.xml"));
retVal.add(("/dt/" + myVersion + "/attachment.xml"));
retVal.add(("/dt/" + myVersion + "/codeableconcept.xml"));
retVal.add(("/dt/" + myVersion + "/coding.xml"));
retVal.add(("/dt/" + myVersion + "/humanname.xml"));
retVal.add(("/dt/" + myVersion + "/identifier.xml"));
retVal.add(("/dt/" + myVersion + "/period.xml"));
retVal.add(("/dt/" + myVersion + "/ratio.xml"));
retVal.add(("/dt/" + myVersion + "/quantity.xml"));
retVal.add(("/dt/" + myVersion + "/range.xml"));
retVal.add(("/dt/" + myVersion + "/sampleddata.xml"));
if ("dstu".equals(myVersion)) {
retVal.add(("/dt/" + myVersion + "/contact.xml"));
retVal.add(("/dt/" + myVersion + "/resourcereference.xml"));
retVal.add(("/dt/" + myVersion + "/schedule.xml"));
}
if (!myVersion.equals("dstu")) {
retVal.add(("/dt/" + myVersion + "/reference.xml"));
retVal.add(("/dt/" + myVersion + "/attachment.xml"));
retVal.add(("/dt/" + myVersion + "/contactpoint.xml"));
retVal.add(("/dt/" + myVersion + "/timing.xml"));
}
return retVal;
}

View File

@ -11,13 +11,16 @@ import org.apache.maven.plugin.MojoFailureException;
import ca.uhn.fhir.tinder.model.BaseRootType;
import ca.uhn.fhir.tinder.model.Resource;
public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetParser {
private String myFilenameSuffix = "";
private List<String> myInputStreamNames;
private ArrayList<InputStream> myInputStreams;
private String myTemplate="/vm/resource.vm";
private String myTemplate = "/vm/resource.vm";
private String myVersion;
public ResourceGeneratorUsingSpreadsheet(String theVersion) {
myVersion = theVersion;
}
public List<String> getInputStreamNames() {
return myInputStreamNames;
@ -26,9 +29,9 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
public void setBaseResourceNames(List<String> theBaseResourceNames) throws MojoFailureException {
myInputStreamNames = theBaseResourceNames;
myInputStreams = new ArrayList<InputStream>();
for (String next : theBaseResourceNames) {
InputStream nextRes = getClass().getResourceAsStream("/res/" + next + "-spreadsheet.xml");
InputStream nextRes = getClass().getResourceAsStream("/res/" + myVersion + "/" + next + "-spreadsheet.xml");
myInputStreams.add(nextRes);
if (nextRes == null) {
throw new MojoFailureException("Unknown base resource name: " + next);
@ -49,7 +52,6 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
return new Resource();
}
@Override
protected String getFilenameSuffix() {
return myFilenameSuffix;
@ -70,8 +72,8 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
return theFileName.endsWith("spreadsheet.xml");
}
public static void main(String[] args) throws Exception {
ResourceGeneratorUsingSpreadsheet p = new ResourceGeneratorUsingSpreadsheet();
public static void main(String[] args) throws Exception {
ResourceGeneratorUsingSpreadsheet p = new ResourceGeneratorUsingSpreadsheet("dstu");
ArrayList<String> names = new ArrayList<String>();
names.add("conceptmap");
names.add("list");
@ -79,100 +81,100 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
p.setBaseResourceNames(names);
p.parse();
p.markResourcesForImports();
p.writeAll(new File("target/gen/ca/uhn/fhir/model/dstu/resource"), null,"ca.uhn.fhir.model.dstu");
//
// // TODO: this needs to be properly populated
// p.getAllDatatypes().add("String");
// p.getAllDatatypes().add("Date");
// p.getAllDatatypes().add("DateTime");
//
//// p.setDirectory("src/test/resources/res");
//// p.setResourceName("patient");
//// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/ResourceWithExtensionsA.java");
//// ArrayList<Extension> exts = new ArrayList<Extension>();
//// Extension ext1 = new Extension("foo1", "http://foo/1", "string");
//// exts.add(ext1);
//// Extension ext2 = new Extension("bar1", "http://bar/1", new Extension("bar11", "http://bar/1/1", "date"), new Extension("bar12", "http://bar/1/2", "date"));
//// exts.add(ext2);
//// p.setExtensions(exts);
//// p.parse();
//
//// String basePath="../hapi-fhir-base/src/main/java";
// String basePath="target/generated/valuesets";
//
// p.setResourceName("medication");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Medication.java");
// p.parse();
//
// p.setDirectory("src/test/resources/res");
// p.setResourceName("substance");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Substance.java");
// p.parse();
//
//
// p.setDirectory("src/test/resources/res");
// p.setResourceName("valueset");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/ValueSetTm.java");
// p.parse();
//
// p.setDirectory("src/test/resources/res");
// p.setResourceName("observation");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Observation.java");
// p.parse();
//
// p.setResourceName("profile");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Profile.java");
// p.parse();
//
// p.setResourceName("device");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Device.java");
// p.parse();
//
// p.setResourceName("group");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Group.java");
// p.parse();
//
// p.setResourceName("location");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Location.java");
// p.parse();
//
// p.setResourceName("organization");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Organization.java");
// p.parse();
//
// p.setResourceName("patient");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Patient.java");
// p.parse();
//
// p.setResourceName("specimen");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Specimen.java");
// p.parse();
//
// p.setResourceName("practitioner");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Practitioner.java");
// p.parse();
//
// DatatypeSpreadsheetParser d = new DatatypeSpreadsheetParser();
// d.setDirectory("src/test/resources/dt");
// d.setDatatypeName("humanname");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/HumanNameDt.java");
// d.parse();
//
// d.setDatatypeName("contact");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/ContactDt.java");
// d.parse();
//
// d.setDatatypeName("address");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/AddressDt.java");
// d.parse();
//
// d.setDatatypeName("narrative");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/NarrativeDt.java");
// d.parse();
//
// d.setDatatypeName("quantity");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/QuantityDt.java");
// d.parse();
p.writeAll(new File("target/gen/ca/uhn/fhir/model/dstu/resource"), null, "ca.uhn.fhir.model.dstu");
//
// // TODO: this needs to be properly populated
// p.getAllDatatypes().add("String");
// p.getAllDatatypes().add("Date");
// p.getAllDatatypes().add("DateTime");
//
// // p.setDirectory("src/test/resources/res");
// // p.setResourceName("patient");
// // p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/ResourceWithExtensionsA.java");
// // ArrayList<Extension> exts = new ArrayList<Extension>();
// // Extension ext1 = new Extension("foo1", "http://foo/1", "string");
// // exts.add(ext1);
// // Extension ext2 = new Extension("bar1", "http://bar/1", new Extension("bar11", "http://bar/1/1", "date"), new Extension("bar12", "http://bar/1/2", "date"));
// // exts.add(ext2);
// // p.setExtensions(exts);
// // p.parse();
//
// // String basePath="../hapi-fhir-base/src/main/java";
// String basePath="target/generated/valuesets";
//
// p.setResourceName("medication");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Medication.java");
// p.parse();
//
// p.setDirectory("src/test/resources/res");
// p.setResourceName("substance");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Substance.java");
// p.parse();
//
//
// p.setDirectory("src/test/resources/res");
// p.setResourceName("valueset");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/ValueSetTm.java");
// p.parse();
//
// p.setDirectory("src/test/resources/res");
// p.setResourceName("observation");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Observation.java");
// p.parse();
//
// p.setResourceName("profile");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Profile.java");
// p.parse();
//
// p.setResourceName("device");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Device.java");
// p.parse();
//
// p.setResourceName("group");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Group.java");
// p.parse();
//
// p.setResourceName("location");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Location.java");
// p.parse();
//
// p.setResourceName("organization");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Organization.java");
// p.parse();
//
// p.setResourceName("patient");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Patient.java");
// p.parse();
//
// p.setResourceName("specimen");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Specimen.java");
// p.parse();
//
// p.setResourceName("practitioner");
// p.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/resource/Practitioner.java");
// p.parse();
//
// DatatypeSpreadsheetParser d = new DatatypeSpreadsheetParser();
// d.setDirectory("src/test/resources/dt");
// d.setDatatypeName("humanname");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/HumanNameDt.java");
// d.parse();
//
// d.setDatatypeName("contact");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/ContactDt.java");
// d.parse();
//
// d.setDatatypeName("address");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/AddressDt.java");
// d.parse();
//
// d.setDatatypeName("narrative");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/NarrativeDt.java");
// d.parse();
//
// d.setDatatypeName("quantity");
// d.setOutputFile(basePath + "/ca/uhn/fhir/model/dstu/composite/QuantityDt.java");
// d.parse();
}

View File

@ -0,0 +1,677 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:22:15Z</Created>
<LastSaved>2013-04-22T02:38:01Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>8445</WindowHeight>
<WindowWidth>23250</WindowWidth>
<WindowTopX>3360</WindowTopX>
<WindowTopY>3510</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="20" ss:ExpandedRowCount="25" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="171.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="41.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="37.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="45"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="86.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="164.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="182.25" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ActivityDefinition</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">SharedDefinition</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Information about a type of activity that can be performed</Data></Cell>
<Cell><Data ss:Type="String">Used as part of care plans, protocols and other resources that describe </Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Act</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ActivityDefinition.category</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ActivityDefinitionCategory</Data></Cell>
<Cell><Data ss:Type="String">diet | drug | encounter | observation +</Data></Cell>
<Cell><Data ss:Type="String">High-level categorization of the type of activity.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">May determine what types of extensions are permitted</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">.classCode</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Should this be an HL7-defined code? Do we need more (e.g. accomodation)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ActivityDefinition.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ActivityDefinitionType</Data></Cell>
<Cell><Data ss:Type="String">Detail type of activity</Data></Cell>
<Cell><Data ss:Type="String">Detailed description of the type of activity. E.g. What lab test, what procedure, what kind of encounter.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Allows matching performed to planned as well as validation against protocols</Data></Cell>
<Cell><Data ss:Type="String">Tends to be less relevant for activities involving particular products.</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">.code</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">ActivityDefinition.timing[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept | Schedule</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ActivityTiming</Data></Cell>
<Cell><Data ss:Type="String">When activity is to occur</Data></Cell>
<Cell><Data ss:Type="String">The period, timing or frequency upon which the described activity is to occur.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Allows prompting for activities and detection of missed planned activities.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">.effectiveTime</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Add constraint prohibiting event (once it won't raise an error on the name timingSchedule)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">ActivityDefinition.location</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Location)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Where it should happen</Data></Cell>
<Cell><Data ss:Type="String">Identifies the facility where the activity will occur. E.g. home, hospital, specific clinic, etc.</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">facility</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Helps in planning of activity</Data></Cell>
<Cell><Data ss:Type="String">May reference a specific clinical location or may just identify a type of location.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">ActivityDefinition.performer</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Practitioner|Organization|RelatedPerson|Patient)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who's responsible?</Data></Cell>
<Cell><Data ss:Type="String">Identifies who's expected to be involved in the activity.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Helps in planning of activity</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">ActivityDefinition.product</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Medication|Substance)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">What's administered/supplied</Data></Cell>
<Cell><Data ss:Type="String">Identifies the food, drug or other product being consumed or supplied in the activity.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">ActivityDefinition.quantity</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">How much is administered/consumed/supplied</Data></Cell>
<Cell><Data ss:Type="String">Identifies the quantity expected to be consumed at once (per dose, per meal, etc.)</Data></Cell>
<Cell><Data ss:Type="String">dose</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell><Data ss:Type="String">ActivityDefinition.details</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Extra info on activity occurrence</Data></Cell>
<Cell><Data ss:Type="String">This provides a textual description of constraints on the activity occurrence, including relation to other activities. It may also include objectives, pre-conditions and end-conditions. Finally, it may convey specifics about the activity such as body site, method, route, etc.</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="6" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="s70"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="10" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="10" ss:StyleID="Default"/>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell ss:Index="10" ss:StyleID="Default"/>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<LeftColumnVisible>6</LeftColumnVisible>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultRowHeight="15">
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="24.75"/>
<Column ss:StyleID="s71" ss:Width="96.75"/>
<Column ss:StyleID="s71" ss:Width="66"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="405.75"/>
<Column ss:StyleID="s71" ss:Width="325.5"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="233.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="131.25"/>
<Column ss:AutoFitWidth="0" ss:Width="211.5"/>
<Column ss:AutoFitWidth="0" ss:Width="62.25"/>
<Column ss:AutoFitWidth="0" ss:Width="123"/>
<Column ss:AutoFitWidth="0" ss:Width="141.75"/>
<Column ss:AutoFitWidth="0" ss:Width="242.25"/>
<Column ss:AutoFitWidth="0" ss:Width="92.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Strength</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Extensibility</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s67"><Data ss:Type="String">ActivityDefinitionCategory</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">High-level categorization of the type of activity in a protocol.</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">required</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">complete</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">#activity-definition-category</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"><Data ss:Type="String">ActivityDefinitionType</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Detailed type of planned activity. E.g. CBC</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">unbound</Data></Cell>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ActivityTiming</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Code describing the timing of an activity. E.g. BID, QD</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">unbound</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="activity-definition-category">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:Width="60.75"/>
<Column ss:Width="453"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">diet</Data></Cell>
<Cell><Data ss:Type="String">To consume food of a specified nature</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">drug</Data></Cell>
<Cell><Data ss:Type="String">To consume/receive a drug, vaccine or other product</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">encounter</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">To meet or communicate with the patient (in-patient, out-patient, phone call, etc.)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">observation</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">To capture information about a patient (vitals, labs, diagnostic images, etc.)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell><Data ss:Type="String">procedure</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">To modify the patient in some way (surgery, physiotherapy, education, counseling, etc.)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell><Data ss:Type="String">supply</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">To provide something to the patient (medication, medical supply, etc.)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">7</Data></Cell>
<Cell><Data ss:Type="String">other</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Some other form of action</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>6</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:StyleID="s70" ss:Width="162.75"/>
<Column ss:StyleID="s70" ss:Width="171.75"/>
<Column ss:StyleID="s70" ss:Width="228.75"/>
<Column ss:StyleID="s70" ss:Width="63"/>
<Column ss:StyleID="s70" ss:Width="177.75"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">ActivityDefinition HL7 Extensions</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Defines common extensions used with or related to the ActivityDefinition shared definition</Data></Cell>
<Cell><Data ss:Type="String">activityDefinition-extensions-spreadsheet.xml</Data></Cell>
<Cell><Data ss:Type="String">spreadsheet</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2C1:R2C4</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,485 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T08:56:59Z</Created>
<LastSaved>2013-01-19T19:20:27Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>11640</WindowHeight>
<WindowWidth>27495</WindowWidth>
<WindowTopX>630</WindowTopX>
<WindowTopY>630</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s70" ss:Parent="s63">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s72" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Top"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s78">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"
ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s64" ss:DefaultRowHeight="15">
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="102"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="42"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="33.75" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="63.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="96.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="216.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="100.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="129.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="128.25" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="67.5" ss:Span="2"/>
<Column ss:Index="17" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="84.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="73.5"/>
<Row ss:AutoFitHeight="0" ss:Height="60" ss:StyleID="s66">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">vCard Mapping</Data></Cell>
<Cell><Data ss:Type="String">ServD Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Address</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Structure</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">A postal address</Data></Cell>
<Cell><Data ss:Type="String">There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world </Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Need to be able to record postal addresses, along with notes about their use</Data></Cell>
<Cell><Data ss:Type="String">Note: address is for postal addresses, not physical locations</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">AD</Data></Cell>
<Cell><Data ss:Type="String">XAD</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Address</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Address.use</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">AddressUse</Data></Cell>
<Cell><Data ss:Type="String">home | work | temp | old - purpose of this address</Data></Cell>
<Cell><Data ss:Type="String">The purpose of this address</Data></Cell>
<Cell><Data ss:Type="String">home</Data></Cell>
<Cell><Data ss:Type="String">Allows an appropriate address to be chosen from a list of many</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">This is labeled as &quot;Is Modifier&quot; because applications should not mistake a temporary or old address etc for a current/permanent one. Applications can assume that an address is current unless it explicitly says that it is temporary or old</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">unique(./use)</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.7</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">./AddressPurpose</Data></Cell>
<Cell ss:Index="18"><Data ss:Type="String">Is it outside the 80% for this to repeat?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Address.text</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Text representation of the address</Data></Cell>
<Cell><Data ss:Type="String">A full text representation of the address</Data></Cell>
<Cell><Data ss:Type="String">137 Nowhere Street, Erewhon 9132</Data></Cell>
<Cell><Data ss:Type="String">A renderable, unencoded form</Data></Cell>
<Cell><Data ss:Type="String">Can provide both a text representation and parts</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">./formatted</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.1 + XAD.2 + XAD.3 + XAD.4 + XAD.5 + XAD.6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Address.line</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Street name, number, direction &amp; P.O. Box etc </Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">This component contains the house number, apartment number, street name, street direction, &#10;P.O. Box number, delivery hints, and similar address information</Data></Cell>
<Cell><Data ss:Type="String">137 Nowhere Street</Data></Cell>
<Cell><Data ss:Type="String">home | work | temp | old - purpose of this address</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">AD.part[parttype = AL]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.1 + XAD.2 (note: XAD.1 and XAD.2 have different meanings for a company address than for a person address)&#10;</Data></Cell>
<Cell><Data ss:Type="String">street address</Data></Cell>
<Cell><Data ss:Type="String">./StreetAddress (newline delimitted)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Address.city</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Name of city, town etc.</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The name of the city, town, village or other community or delivery center.</Data></Cell>
<Cell><Data ss:Type="String">Erewhon</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Muncipality</Data></Cell>
<Cell><Data ss:Type="String">AD.part[parttype = CTY]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.3</Data></Cell>
<Cell><Data ss:Type="String">locality</Data></Cell>
<Cell><Data ss:Type="String">./Jurisdiction</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Address.state</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Sub-unit of country (abreviations ok)</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes).</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Province, Territory</Data></Cell>
<Cell><Data ss:Type="String">AD.part[parttype = STA]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.4</Data></Cell>
<Cell><Data ss:Type="String">region</Data></Cell>
<Cell><Data ss:Type="String">./Region</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Address.postalCode</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Postal code for area</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">A postal code designating a region defined by the postal service.</Data></Cell>
<Cell><Data ss:Type="Number">9132</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Zip</Data></Cell>
<Cell><Data ss:Type="String">AD.part[parttype = ZIP]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.5</Data></Cell>
<Cell><Data ss:Type="String">postal code</Data></Cell>
<Cell><Data ss:Type="String">./PostalIdentificationCode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Address.country</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Country (can be ISO 3166 3 letter code)</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Country - a nation as commonly understood or generally accepted</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">ISO 3166 3 letter codes can be used in place of a full country name.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">AD.part[parttype = CNT]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.6</Data></Cell>
<Cell><Data ss:Type="String">country name</Data></Cell>
<Cell><Data ss:Type="String">./Country</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Address.period</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Time period when address was/is in use</Data></Cell>
<Cell><Data ss:Type="String">Time period when address was/is in use</Data></Cell>
<Cell><Data ss:Type="String">{ &quot;start&quot; : &quot;2010-03-23&quot;, &quot;end&quot; : &quot;2010-07-01&quot; }</Data></Cell>
<Cell><Data ss:Type="String">Allows addresses to be placed in historical context</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">./usablePeriod[type=&quot;IVL&lt;TS&gt;&quot;]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">XAD.12 / XAD.13 + XAD.14&#10;</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">./StartDate and ./EndDate</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>5</SplitVertical>
<LeftColumnRightPane>5</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>4</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>0</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>8</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s73" ss:DefaultRowHeight="15">
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="24"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="125.25"/>
<Column ss:StyleID="s73" ss:Width="42.75"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="392.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="329.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="230.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s74">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Context</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">English</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">OCL</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:Index="2" ss:StyleID="s64"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>0</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:AutoFitWidth="0" ss:Width="117"/>
<Column ss:AutoFitWidth="0" ss:Width="87.75"/>
<Column ss:AutoFitWidth="0" ss:Width="147.75"/>
<Column ss:AutoFitWidth="0" ss:Width="224.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">v3</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">v2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s77"><Data ss:Type="String">AddressUse</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">The use of an address</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">#address-use</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s78"><Data ss:Type="String">http://hl7.org/fhir/v3/vs/AddressUse</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">http://hl7.org/fhir/v2/vs/0190</Data></Cell>
<Cell ss:StyleID="s75"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="address-use">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="429"/>
<Column ss:AutoFitWidth="0" ss:Width="167.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">v3</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">v2</Data></Cell>
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s75"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">home</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A communication address at a home</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=AddressUse.H</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">~0190.H</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">work</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">An office address. First choice for business related contacts during business hours</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=AddressUse.WP</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">~0190.O</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">temp</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A temporary address. The period can provide more detailed information</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=AddressUse.TMP</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">~0190.C</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">old</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">This address is no longer in use (or was never correct, but retained for records)</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">&gt;AddressUse.OLD,&gt;AddressUse.BAD</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String" x:Ticked="1">&gt;0190.BA (unclear about old addresses)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>300</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,341 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:25:39Z</Created>
<LastSaved>2013-08-12T11:30:54Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9810</WindowHeight>
<WindowWidth>26235</WindowWidth>
<WindowTopX>1740</WindowTopX>
<WindowTopY>2310</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="117.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="33" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="60"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="69"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="62.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="163.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="192.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="85.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="192.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="15" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="81"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="78.75">
<Cell><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Content in a format defined elsewhere</Data></Cell>
<Cell><Data ss:Type="String">For referring to data content defined in other formats.</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Many models need to include data defined in other specifications that is complex and opaque to the healthcare model. This includes documents, media recordings, structured data, etc.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">ED</Data></Cell>
<Cell><Data ss:Type="String">ED/RP</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Attachment.contentType</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">MimeType</Data></Cell>
<Cell><Data ss:Type="String">Mime type of the content, with charset etc.</Data></Cell>
<Cell><Data ss:Type="String">Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate</Data></Cell>
<Cell><Data ss:Type="String">text/plain; charset=UTF-8, image/png</Data></Cell>
<Cell><Data ss:Type="String">Processors of the data need to be able to know how to interpret the data</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./mediaType, ./charset</Data></Cell>
<Cell><Data ss:Type="String">ED.2+ED.3/RP.2+RP.3. Note conversion may be needed if old style values are being used</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Attachment.language</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">Language</Data></Cell>
<Cell><Data ss:Type="String">Human language of the content (BCP-47)</Data></Cell>
<Cell><Data ss:Type="String">The human language of the content. The value can be any valid value according to BCP 47</Data></Cell>
<Cell><Data ss:Type="String">en-AU</Data></Cell>
<Cell><Data ss:Type="String">Users need to be able to choose between the languages in a set of attachments</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./language</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="44.25">
<Cell><Data ss:Type="String">Attachment.data</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">base64Binary</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Data inline, base64ed</Data></Cell>
<Cell><Data ss:Type="String">The actual data of the attachment - a sequence of bytes. In XML, represented using base64</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">The data needs to able to be transmitted inline</Data></Cell>
<Cell><Data ss:Type="String">The base64-encoded data SHALL be expressed in the same character set as the base resource XML or JSON</Data></Cell>
<Cell><Data ss:Type="String">./data</Data></Cell>
<Cell><Data ss:Type="String">ED.5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Attachment.url</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Uri where the data can be found</Data></Cell>
<Cell><Data ss:Type="String">An alternative location where the data can be accessed</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">http://www.acme.com/logo-small.png</Data></Cell>
<Cell><Data ss:Type="String">The data needs to be transmitted by reference</Data></Cell>
<Cell><Data ss:Type="String">If both data and url are provided, the url SHALL point to the same content as the data contains. Urls may be relative references or may reference transient locations such as a wrapping envelope using cid: though this has ramifications for using signatures. Relative URLs are interpreted relative to the service url, like a resource reference, rather than relative to the resource itself. If a URL is provided, it SHALL resolve to actual data. </Data></Cell>
<Cell><Data ss:Type="String">./reference/literal</Data></Cell>
<Cell><Data ss:Type="String">RP.1+RP.2 - if they refer to a URL (see v2.6)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Attachment.size</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Number of bytes of content (if url provided)</Data></Cell>
<Cell><Data ss:Type="String">The number of bytes of data that make up this attachment.</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Representing the size allows applications to determine whether they should fetch the content automatically in advance, or refuse to fetch it at all</Data></Cell>
<Cell><Data ss:Type="String">The number of bytes is redundant if the data is provided as a base64binary, but is useful if the data is provided as a url reference</Data></Cell>
<Cell><Data ss:Type="String">N/A (needs data type R3 proposal)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="109.5">
<Cell><Data ss:Type="String">Attachment.hash</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">base64Binary</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Hash of the data (sha-1, base64ed )</Data></Cell>
<Cell><Data ss:Type="String">The calculated hash of the data using SHA-1. Represented using base64</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Included so that applications can verify that the contents of a location have not changed and so that a signature of the content can implicitly sign the content of an image without having to include the data in the instance or reference the url in the signature</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.integrityCheck[parent::ED/integrityCheckAlgorithm=&quot;SHA-1&quot;]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">!Attachment.lang</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">Language</Data></Cell>
<Cell><Data ss:Type="String">ISO 639-3 language code</Data></Cell>
<Cell><Data ss:Type="String">The language that the attachment is in</Data></Cell>
<Cell><Data ss:Type="String">eng (English), esp (Spanish)</Data></Cell>
<Cell><Data ss:Type="String">May need to be able to pick the right language to render for a particular person from a list of attachments in different languages</Data></Cell>
<Cell><Data ss:Type="String">note that the v3 lang is ISO 639-2 and this is ISO 639-3</Data></Cell>
<Cell><Data ss:Type="String">./language</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Attachment.title</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Label to display in place of the data</Data></Cell>
<Cell><Data ss:Type="String">A label or set of text to display in place of the data</Data></Cell>
<Cell><Data ss:Type="String">&quot;Official Corporate Logo&quot;</Data></Cell>
<Cell><Data ss:Type="String">Applications need a label to display to a human user in place of the actual data if the data cannot be rendered or perceived by the viewer.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./title/data</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="102"
ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="386.25"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="347.25"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="292.5"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">Must Have Content-Type</Data></Cell>
<Cell><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">It the Attachment has data, it SHALL have a contentType</Data></Cell>
<Cell><Data ss:Type="String">data.size = 0 or contentType.oclIsDefined</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">not(exists(f:data)) or exists(f:contentType)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="94.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="180"/>
<Column ss:StyleID="s70" ss:Width="200.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="386.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s71"><Data ss:Type="String">MimeType</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">The mime type of an attachment</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">http://www.rfc-editor.org/bcp/bcp13.txt</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">BCP 13 (RFCs 2045, 2046, 2047, 4288, 4289 and 2049)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s72"><Data ss:Type="String">Language</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">A human language</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">http://tools.ietf.org/html/bcp47</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">IETF language tag</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,196 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:24:50Z</Created>
<LastSaved>2012-05-31T06:51:22Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>10560</WindowHeight>
<WindowWidth>29040</WindowWidth>
<WindowTopX>5865</WindowTopX>
<WindowTopY>6870</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="197.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="34.5" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="61.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="44.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="143.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="201"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="198"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Concept Domain</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="110.25">
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Concept - reference to a terminology or just text</Data></Cell>
<Cell><Data ss:Type="String">A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">This is a common pattern in healthcare - a concept that may be defined by one or more codes from formal definitions including LOINC and SNOMED CT, and/or defined by the provision of text that captures a human sense of the concept</Data></Cell>
<Cell><Data ss:Type="String">Not all terminology uses fit this general pattern. In some cases, models should not use CodeableConcept and use Coding directly and provide their own structure for managing text, codings, translations and the relationship between elements and pre- and post-coordination</Data></Cell>
<Cell><Data ss:Type="String">CD</Data></Cell>
<Cell><Data ss:Type="String">CE/CNE/CWE</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">CodeableConcept.coding</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Code defined by a terminology system </Data></Cell>
<Cell><Data ss:Type="String">A reference to a code defined by a terminology system </Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Allows for translations and alternate encodings within a code system. Also supports communication of the same instance to systems requiring different encodings.</Data></Cell>
<Cell><Data ss:Type="String">Codes may be defined very casually in enumerations, or code lists, up to very formal definitions such as SNOMED CT - see the V3 Core Principles for more information. Ordering of codings is undefined and SHALL not be used to infer meaning.</Data></Cell>
<Cell><Data ss:Type="String">union(., ./translation)</Data></Cell>
<Cell><Data ss:Type="String">C*E.1-8, C*E.10-22</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">CodeableConcept.text</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Plain text representation of the concept</Data></Cell>
<Cell><Data ss:Type="String">A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">The codes from the terminologies do not always capture the correct meaning with all the nuances of the human using them, or sometimes there is no appropriate code at all. In these cases, the text is used to capture the full meaning of the source</Data></Cell>
<Cell><Data ss:Type="String">Very often the text is the same as a displayName of one of the codings</Data></Cell>
<Cell><Data ss:Type="String">./originalText[mediaType/code=&quot;text/plain&quot;]/data</Data></Cell>
<Cell><Data ss:Type="String">C*E.9. But note many systems use C*E.2 for this</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90"/>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>9</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s66" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="155.25"
ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="301.5"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="359.25"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="265.5"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">Coding.primary rule</Data></Cell>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">Only one coding in a set can be chosen directly by the user</Data></Cell>
<Cell><Data ss:Type="String">codings.collect(primary = true)-&gt;size() &lt;= 1</Data></Cell>
<Cell><Data ss:Type="String">count(f:coding[f:primary/@value='true'])&lt;=1</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,311 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:24:32Z</Created>
<LastSaved>2013-10-01T23:08:35Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9645</WindowHeight>
<WindowWidth>25815</WindowWidth>
<WindowTopX>2310</WindowTopX>
<WindowTopY>2625</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R7C15"
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="36.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Card.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Inv.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Must Understand</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Type</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Concept Domain</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Short Name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Definition</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Example</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Requirements</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Comments</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">To Do</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Coding</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s65"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s65"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s65"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Type</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7"><Data ss:Type="String">A reference to a code defined by a terminology system </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A reference to a code defined by a terminology system </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="10"><Data ss:Type="String">References to codes are very common in healthcare models</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Codes may be defined very casually in enumerations or code lists, up to very formal definitions such as SNOMED CT - see the V3 Core Principles for more information</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">CV</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">CE/CNE/CWE subset one of the sets of component 1-3 or 4-6</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="133.5">
<Cell><Data ss:Type="String">Coding.system</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Identity of the terminology system </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The identification of the code system that defines the meaning of the symbol in the code. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Need to be unambiguous about the source of the definition of the symbol</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The URI may be an OID (urn:oid:...) or a UUID (urn:uuid:...). OIDs and UUIDs SHALL be references to the HL7 OID registry. Otherwise, the URI should come from HL7's list of FHIR defined special URIs or it should de-reference to some definition that establish the system clearly and unambiguously</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">./codeSystem</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">C*E.3</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="133.5">
<Cell><Data ss:Type="String">Coding.version</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Version of the system - if relevant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The version of the code system which was used when choosing this code. Note that a well-maintained code system does not need the version reported, because the meaning of codes is consistent across versions. However this cannot consistently be assured. and when the meaning is not guaranteed to be consistent, the version SHOULD be exchanged</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Where the terminology does not clearly define what string should be used to identify code system versions, the recommendation is to use the date (expressed in FHIR date format) on which that version was officially published as the version date</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">./codeSystemVersion</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">C*E.7</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Coding.code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Symbol in syntax defined by the system</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Need to refer to a particular code in the system</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">C*E.1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Coding.display</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Representation defined by the system</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A representation of the meaning of the code in the system, following the rules of the system. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Need to be able to carry a human-readable meaning of the code for readers that do not know the system</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">CV.displayName</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">C*E.2 - but note this is not well followed</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="15" ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Coding.primary</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">boolean</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="7"><Data ss:Type="String">If this code was chosen directly by the user</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Indicates that this code was chosen by a user directly - i.e. off a pick list of available items (codes or displays)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="10"><Data ss:Type="String">This has been identified as a clinical safety criterium - that this exact code was chosen explicitly, rather than inferred by the system based on some rules or language processing</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Amongst a set of alternatives, a directly chosen code is the most appropriate starting point for new translations</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">CD.codingRationale</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Sometimes implied by being first</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Coding.valueSet</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Reference(ValueSet)</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Set this coding was chosen from</Data></Cell>
<Cell><Data ss:Type="String">The set of possible coded values this coding was chosen from or constrained by</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">The value set may influence the codes that the user can select. Also, referencing the value set directly makes it easier to share ad-hoc code systems used across healthcare</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">CD.valueSet / CD.valueSetVersion</Data></Cell>
<Cell><Data ss:Type="String">C*E.16 - .19</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="185.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="342.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="267.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="305.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">Coding</Data></Cell>
<Cell><Data ss:Type="String">Value set doesn't substitute for system</Data></Cell>
<Cell><Data ss:Type="String">If a valueSet is provided, a system URI Is required</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">not (exists(f:valueSet) and exists(f:code)) or exists(f:system)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,435 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:23:53Z</Created>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9075</WindowHeight>
<WindowWidth>25335</WindowWidth>
<WindowTopX>2790</WindowTopX>
<WindowTopY>3195</WindowTopY>
<ActiveSheet>2</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"/>
</Style>
<Style ss:ID="s71">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s74" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="79.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="33" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="36"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="2"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">ServD Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ContactPoint</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Structure</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Details of a Technology mediated contact point (phone, fax, email, etc)</Data></Cell>
<Cell><Data ss:Type="String">Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc.</Data></Cell>
<Cell><Data ss:Type="String">Need to track phone, fax, mobile, sms numbers, email addresses, twitter tags, etc.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">TEL</Data></Cell>
<Cell><Data ss:Type="String">XTN</Data></Cell>
<Cell><Data ss:Type="String">ContactPoint</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="42.75">
<Cell><Data ss:Type="String">ContactPoint.system</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ContactPointSystem</Data></Cell>
<Cell><Data ss:Type="String">phone | fax | email | url</Data></Cell>
<Cell><Data ss:Type="String">Telecommunications form for contact point - what communications system is required to make use of the contact</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">./scheme</Data></Cell>
<Cell><Data ss:Type="String">XTN.3</Data></Cell>
<Cell><Data ss:Type="String">./ContactPointType</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">ContactPoint.value</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">The actual contact point details</Data></Cell>
<Cell><Data ss:Type="String">The actual contact point details, in a form that is meaningful to the designated communication system (i.e. phone number or email address).</Data></Cell>
<Cell><Data ss:Type="String">Need to support legacy numbers that are not in a tightly controlled format </Data></Cell>
<Cell><Data ss:Type="String">Additional out of band data such as extensions, or notes about use of the contact are sometimes included in the value</Data></Cell>
<Cell><Data ss:Type="String">./url</Data></Cell>
<Cell><Data ss:Type="String">XTN.1 (or XTN.12)</Data></Cell>
<Cell><Data ss:Type="String">./Value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">ContactPoint.use</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ContactPointUse</Data></Cell>
<Cell><Data ss:Type="String">home | work | temp | old | mobile - purpose of this contact point</Data></Cell>
<Cell><Data ss:Type="String">Identifies the purpose for the contact point</Data></Cell>
<Cell><Data ss:Type="String">Need to track the way a person uses this contact, so a user can choose which is appropriate for their purpose</Data></Cell>
<Cell><Data ss:Type="String">This is labeled as &quot;Is Modifier&quot; because applications should not mistake a temporary or old contact etc for a current/permanent one. Applications can assume that a contact is current unless it explicitly says that it is temporary or old</Data></Cell>
<Cell><Data ss:Type="String">unique(./use)</Data></Cell>
<Cell><Data ss:Type="String">XTN.2 - but often indicated by field</Data></Cell>
<Cell><Data ss:Type="String">./ContactPointPurpose</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ContactPoint.period</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Time period when the contact point was/is in use</Data></Cell>
<Cell><Data ss:Type="String">Time period when the contact point was/is in use</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">./useablePeriod[type=&quot;IVL&lt;TS&gt;&quot;]</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
<Cell><Data ss:Type="String">./StartDate and ./EndDate</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultColumnWidth="330"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="33.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="136.5" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">System is required</Data></Cell>
<Cell><Data ss:Type="String">ContactPoint</Data></Cell>
<Cell ss:StyleID="s68"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">A </Font><I><Font
html:Color="#000000">system</Font></I><Font html:Color="#000000"> is required if a </Font><I><Font
html:Color="#000000">value</Font></I><Font html:Color="#000000"> is provided.</Font></ss:Data></Cell>
<Cell><Data ss:Type="String">value.oclIsDefined implies system.oclIsDefined</Data></Cell>
<Cell><Data ss:Type="String">not(exists(f:value)) or exists(f:system)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="97.5"/>
<Column ss:AutoFitWidth="0" ss:Width="164.25"/>
<Column ss:AutoFitWidth="0" ss:Width="54.75"/>
<Column ss:AutoFitWidth="0" ss:Width="135.75"/>
<Column ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v2</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s69"><Data ss:Type="String">ContactPointSystem</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Telecommunications form for contact point</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">#contact-point-system</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s70"><Data ss:Type="String">http://hl7.org/fhir/v2/vs/0202</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s69"><Data ss:Type="String">ContactPointUse</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Use of contact point</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">#contact-point-use</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">http://hl7.org/fhir/v2/vs/0201</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">http://hl7.org/fhir/v3/vs/AddressUse</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>300</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="contact-point-use">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s72" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="86.25"/>
<Column ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="511.5"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v2</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v3</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">home</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">A communication contact point at a home; attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available.</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">&gt;0201.PRN,&gt;0201.ORN,&gt;0201.VHN</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=AddressUse.H</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">work</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">An office contact point. First choice for business related contacts during business hours.</Data></Cell>
<Cell><Data ss:Type="String">~0201.WPN</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=AddressUse.WP</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">temp</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">A temporary contact point. The period can provide more detailed information.</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String" x:Ticked="1">=AddressUse.TMP</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">old</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">This contact point is no longer in use (or was never correct, but retained for records)</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String" x:Ticked="1">&gt;AddressUse.OLD,&gt;AddressUse.BAD</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">mobile</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business</Data></Cell>
<Cell><Data ss:Type="String">~0201.PRS</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=AddressUse.MC</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="contact-point-system">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s72" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="491.25"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v2</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">phone</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.</Data></Cell>
<Cell><Data ss:Type="String">~0202.PH</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">fax</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.</Data></Cell>
<Cell><Data ss:Type="String">~0202.FX</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">email</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">The value is an email address</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">&lt;0202.Internet (use mailto: protocol)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">url</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">The value is a url. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses</Data></Cell>
<Cell><Data ss:Type="String">&lt;0202.Internet</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,423 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:22:02Z</Created>
<LastSaved>2014-01-15T11:58:34Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>7815</WindowHeight>
<WindowWidth>24375</WindowWidth>
<WindowTopX>2805</WindowTopX>
<WindowTopY>3975</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s73" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s74" ss:Parent="s62">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="92.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="36.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="30"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="45"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="108.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="2"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">ServD Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="180">
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">An identifier intended for computation</Data></Cell>
<Cell><Data ss:Type="String">A technical identifier - identifies some entity uniquely and unambiguously</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Need to be able to identify things with confidence and be sure that the identification is not subject to misinterpretation</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">II - see see identifier pattern at http://wiki.hl7.org/index.php?title=Common_Design_Patterns#Identifier_Pattern for relevant discussion. The Identifier class is a little looser than the v3 type II because it allows URIs as well as registered OIDs or GUIDs. Also maps to Role[classCode=IDENT]</Data></Cell>
<Cell><Data ss:Type="String">CX / EI (occasionally, more often EI maps to a resource id or a URL)</Data></Cell>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Identifier.use</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">IdentifierUse</Data></Cell>
<Cell><Data ss:Type="String">usual | official | temp | secondary (If known)&#10;</Data></Cell>
<Cell><Data ss:Type="String">The purpose of this identifier</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Allows the appropriate identifier for a particular context of use to be selected from among a set of identifiers</Data></Cell>
<Cell><Data ss:Type="String">This is labeled as &quot;Is Modifier&quot; because applications should not mistake a temporary id for a permanent one. Applications can assume that an identifier is permanent unless it explicitly says that it is temporary</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Role.code or implied by context</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">N/A</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="16" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Identifier.label</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Description of identifier</Data></Cell>
<Cell><Data ss:Type="String">A text string for the identifier that can be displayed to a human so they can recognize the identifier</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Allows humans to make use of identifiers when the identifier system is not known</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">Role.title or implied by context</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">CX.5</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Identifier.system</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">The namespace for the identifier</Data></Cell>
<Cell><Data ss:Type="String">Establishes the namespace in which set of possible id values is unique.</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">http://www.acme.com/identifiers/patient or urn:ietf:rfc:3986 if the id itself is a full uri</Data></Cell>
<Cell><Data ss:Type="String">There are many sequences of identifiers. To perform matching, we need to know what sequence we're dealing with. The system identifies a particular sequence or set of unique identifiers</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">II.root or Role.id.root</Data></Cell>
<Cell><Data ss:Type="String">CX.4 / EI-2-4</Data></Cell>
<Cell><Data ss:Type="String">./IdentifierType</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Identifier.value</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">The value that is unique</Data></Cell>
<Cell><Data ss:Type="String">The portion of the identifier typically displayed to the user and which is unique within the context of the system.</Data></Cell>
<Cell><Data ss:Type="Number">123456</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">If the value is a full URI, then the system SHALL be urn:ietf:rfc:3986</Data></Cell>
<Cell><Data ss:Type="String">II.extension or II.root if system indicates OID or GUID (Or Role.id.extension or root)</Data></Cell>
<Cell><Data ss:Type="String">CX.1 / EI.1</Data></Cell>
<Cell><Data ss:Type="String">./Value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Identifier.period</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Period</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Time period when id is/was valid for use</Data></Cell>
<Cell><Data ss:Type="String">Time period during which identifier is/was valid for use</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">Role.effectiveTime or implied by context</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">CX.7 + CX.8</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">./StartDate and ./EndDate</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Identifier.assigner</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Reference(Organization)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Organization that issued id (may be just text)</Data></Cell>
<Cell><Data ss:Type="String">Organization that issued/manages the identifier</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">The reference may be just a text description of the assigner</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">II.assigningAuthorityName but note that this is an improper use by the definition of the field. Also Role.scoper</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">CX.4 / (CX.4,CX.9,CX.10)</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">./IdentifierIssuingAuthority</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>5</SplitVertical>
<LeftColumnRightPane>7</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>4</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>0</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>11</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="102"
ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="386.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="347.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="292.5"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">only-if-no-dar</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2:R3</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="86.25"/>
<Column ss:AutoFitWidth="0" ss:Width="220.5"/>
<Column ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:AutoFitWidth="0" ss:Width="139.5"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s71"><Data ss:Type="String">IdentifierUse</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Identifies the purpose for this identifier, if known&#10;</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">#identifier-use</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="identifier-use">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="64.5"/>
<Column ss:AutoFitWidth="0" ss:Width="485.25"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">usual</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">the identifier recommended for display and use in real-world interactions</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">official</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">the identifier considered to be most trusted for the identification of this item</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">temp</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">A temporary identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">secondary</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context</Data></Cell>
<Cell><Data ss:Type="String">Unfortunately, this is a common problem that arises in data exchange, where information is not identified in some formats, but some identification must be assigned in other formats</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>1</ActiveCol>
<RangeSelection>R2C2:R5C2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,333 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:21:04Z</Created>
<LastSaved>2012-07-14T16:02:18Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>7425</WindowHeight>
<WindowWidth>23895</WindowWidth>
<WindowTopX>4230</WindowTopX>
<WindowTopY>4845</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71" ss:Parent="s62">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s72" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="32.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="33"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="8" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Condition</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Narrative</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">A human-readable formatted text, including images</Data></Cell>
<Cell><Data ss:Type="String">A human-readable formatted text, including images</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Narrative.status</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">NarrativeStatus</Data></Cell>
<Cell><Data ss:Type="String">generated | extensions | additional</Data></Cell>
<Cell><Data ss:Type="String">The status of the narrative - whether it's entirely generated (from just the defined data or the extensions too), or whether a human authored it and it may contain additional data</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="195">
<Cell><Data ss:Type="String">Narrative.div</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">xhtml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Limited xhtml content</Data></Cell>
<Cell><Data ss:Type="String">The actual narrative content, a stripped down version of XHTML</Data></Cell>
<Cell ss:Index="9"><Data ss:Type="String">The contents of the html element are an XHTML fragment containing only the basic html formatting elements described in chapters 7-11 and 15 of the HTML 4.0 standard, &lt;a&gt; elements (either name or href), images and internally contained stylesheets. The XHTML content may not contain a head, a body, external stylesheet references, scripts, forms, base/link/xlink, frames, iframes and objects. </Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">N/A</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="51"
ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="210.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="219.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="993"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">Narrative.div</Data></Cell>
<Cell><Data ss:Type="String">The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, &lt;a&gt; elements (either name or href), images and internally contained style attributes</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">not(descendant-or-self::*[not(local-name(.)=('a', 'abbr', 'acronym', 'b', 'big', 'blockquote', 'br', 'caption', 'cite', 'code', 'colgroup', 'dd', 'dfn', 'div', 'dl', 'dt', 'em', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'q', 'samp', 'small', 'span', 'strong', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr', 'tt', 'ul', 'var'))])</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">Narrative.div</Data></Cell>
<Cell><Data ss:Type="String">The narrative SHALL have some non-whitespace content</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">descendant::text()[normalize-space(.)!=''] or descendant::h:img[@src]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">Narrative.div</Data></Cell>
<Cell><Data ss:Type="String">The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, &lt;a&gt; elements (either name or href), images and internally contained style attributes</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">not(descendant-or-self::*/@*[not(name(.)=('abbr', 'accesskey', 'align', 'alt', 'axis', 'bgcolor', 'border', 'cellhalign', 'cellpadding', 'cellspacing', 'cellvalign', 'char', 'charoff', 'charset', 'cite', 'class', 'colspan', 'compact', 'coords', 'dir', 'frame', 'headers', 'height', 'href', 'hreflang', 'hspace', 'id', 'lang', 'longdesc', 'name', 'nowrap', 'rel', 'rev', 'rowspan', 'rules', 'scope', 'shape', 'span', 'src', 'start', 'style', 'summary', 'tabindex', 'title', 'type', 'valign', 'value', 'vspace', 'width'))]) </Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="189.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="54.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="122.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="325.5"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s69"><Data ss:Type="String">NarrativeStatus</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">The status of a resource narrative</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">#narrative-status</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="narrative-status">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s68" ss:Width="56.25"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="454.5"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">generated</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The contents of the narrative are entirely generated from the structured data in the resource.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">extensions</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The contents of the narrative are entirely generated from the structured data in the resource and some of the content is generated from extensions</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">additional</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The contents of the narrative contain additional information not found in the structured data</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">empty</Data></Cell>
<Cell><Data ss:Type="String">the contents of the narrative are some equivalent of &quot;No human-readable text provided for this resource&quot;</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,255 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-21T19:16:26Z</Created>
<LastSaved>2014-10-14T21:58:56Z</LastSaved>
<Version>12.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9120</WindowHeight>
<WindowWidth>15270</WindowWidth>
<WindowTopX>630</WindowTopX>
<WindowTopY>780</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Imports">
<Names>
<NamedRange ss:Name="boolean" ss:RefersTo="=Imports!R2C1"/>
</Names>
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="11" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="66.75"/>
<Column ss:AutoFitWidth="0" ss:Width="177"/>
<Column ss:AutoFitWidth="0" ss:Width="362.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="117"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="181.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="183.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Span="1"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Data Type</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Schema</Data></Cell>
<Cell><Data ss:Type="String">RegEx</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">v3</Data></Cell>
<Cell><Data ss:Type="String">v2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">boolean</Data><NamedCell ss:Name="boolean"/></Cell>
<Cell><Data ss:Type="String">Value of &quot;true&quot; or &quot;false&quot;</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">BL</Data></Cell>
<Cell><Data ss:Type="String">n/a</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">integer</Data></Cell>
<Cell><Data ss:Type="String">A whole number</Data></Cell>
<Cell><Data ss:Type="String">32 bit number; for values larger than this, use decimal</Data></Cell>
<Cell><Data ss:Type="String">int</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">INT</Data></Cell>
<Cell><Data ss:Type="String">~NM/~SI</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">decimal</Data></Cell>
<Cell><Data ss:Type="String">A rational number with implicit precision</Data></Cell>
<Cell><Data ss:Type="String">Do not use a IEEE type floating point type, instead use something that works like a true decimal, with inbuilt precision (e.g. Java BigInteger)</Data></Cell>
<Cell><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">REAL</Data></Cell>
<Cell><Data ss:Type="String">~NM</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">base64Binary</Data></Cell>
<Cell><Data ss:Type="String">A stream of bytes</Data></Cell>
<Cell><Data ss:Type="String">A stream of bytes, base64 encoded</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">base64Binary</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">BIN</Data></Cell>
<Cell><Data ss:Type="String">~ED</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">instant</Data></Cell>
<Cell><Data ss:Type="String">An instant in time - known at least to the second</Data></Cell>
<Cell><Data ss:Type="String">Note: For system observed times, not human-reported times (see date and dateTime below). Time zone is always required</Data></Cell>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">TS</Data></Cell>
<Cell><Data ss:Type="String">DTM</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">A sequence of Unicode characters</Data></Cell>
<Cell><Data ss:Type="String">Note that FHIR strings may not exceed 1MB in size</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">ST</Data></Cell>
<Cell><Data ss:Type="String">ST</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">uri</Data></Cell>
<Cell><Data ss:Type="String">String of characters used to identify a name or a resource</Data></Cell>
<Cell><Data ss:Type="String">see http://en.wikipedia.org/wiki/Uniform_resource_identifier</Data></Cell>
<Cell><Data ss:Type="String">anyURI</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">URL</Data></Cell>
<Cell><Data ss:Type="String">n/a</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="59.25" ss:StyleID="s62">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Color="#000000">A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. </Font><B><Font
html:Color="#000000">Dates SHALL be valid dates.</Font></B></ss:Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">xs:gYear, xs:gYearMonth, xs:date</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">-?[0-9]{4}(-(0[1-9]|1[0-2])(-(0[0-9]|[1-2][0-9]|3[0-1]))?)?</Data></Cell>
<Cell><Data ss:Type="String">Could get fancy and check legal days/month or even leap years, but not worth it.</Data></Cell>
<Cell><Data ss:Type="String">TS</Data></Cell>
<Cell><Data ss:Type="String">DT</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="109.5" ss:StyleID="s62">
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell><ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Color="#000000">A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds may be provided but may also be ignored. </Font><B><Font
html:Color="#000000">Dates SHALL be valid dates.</Font></B></ss:Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">xs:gYear, xs:gYearMonth, xs:date, xs:dateTime</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">-?[0-9]{4}(-(0[1-9]|1[0-2])(-(0[0-9]|[1-2][0-9]|3[0-1])(T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\.[0-9]+)?(Z|(\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?)?)?)?</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">TS</Data></Cell>
<Cell><Data ss:Type="String">DTM</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="100.5" ss:StyleID="s65">
<Cell><Data ss:Type="String">time</Data></Cell>
<Cell><Data ss:Type="String">A time during the day, with no date specified </Data></Cell>
<Cell ss:Index="4" ss:StyleID="s66"><Data ss:Type="String">xs:time</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String" x:Ticked="1">([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\.[0-9]+)?</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">n/a</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">TM</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="String Patterns">
<Names>
<NamedRange ss:Name="code" ss:RefersTo="='String Patterns'!R2C1"/>
<NamedRange ss:Name="date" ss:RefersTo="=Imports!R9C1"/>
<NamedRange ss:Name="dateTime" ss:RefersTo="=Imports!R10C1"/>
<NamedRange ss:Name="id" ss:RefersTo="='String Patterns'!R5C1"/>
<NamedRange ss:Name="oid" ss:RefersTo="='String Patterns'!R3C1"/>
<NamedRange ss:Name="sid" ss:RefersTo="='String Patterns'!#REF!"/>
<NamedRange ss:Name="uuid" ss:RefersTo="='String Patterns'!R4C1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="233.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="142.5" ss:Span="2"/>
<Column ss:Index="6" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="199.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="108"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Data Type</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Base</Data></Cell>
<Cell><Data ss:Type="String">Schema</Data></Cell>
<Cell><Data ss:Type="String">RegEx</Data></Cell>
<Cell><Data ss:Type="String">Regex Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">code</Data><NamedCell ss:Name="code"/></Cell>
<Cell><Data ss:Type="String">A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">xs:token</Data></Cell>
<Cell><Data ss:Type="String">[^\s]+([\s]+[^\s]+)*</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="14.25">
<Cell><Data ss:Type="String">oid</Data><NamedCell ss:Name="oid"/></Cell>
<Cell><Data ss:Type="String">An oid represented as a URI</Data></Cell>
<Cell><Data ss:Type="String">RFC 3001. See also ISO/IEC 8824:1990 €</Data></Cell>
<Cell><Data ss:Type="String">uri</Data></Cell>
<Cell><Data ss:Type="String">xs:anyURI+</Data></Cell>
<Cell><Data ss:Type="String">urn:oid:(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))*</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="47.25">
<Cell><Data ss:Type="String">uuid</Data><NamedCell ss:Name="uuid"/></Cell>
<Cell><Data ss:Type="String">A UUID, represented as a URI</Data></Cell>
<Cell><Data ss:Type="String">See The Open Group, CDE 1.1 Remote Procedure Call specification, Appendix A.</Data></Cell>
<Cell><Data ss:Type="String">uri</Data></Cell>
<Cell><Data ss:Type="String">xs:anyURI+</Data></Cell>
<Cell><Data ss:Type="String">urn:uuid:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="String">id</Data><NamedCell ss:Name="id"/></Cell>
<Cell><Data ss:Type="String">Any combination of lowercase letters, numerals, &quot;-&quot; and &quot;.&quot;, with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively.</Data></Cell>
<Cell><Data ss:Type="String">RFC 4122</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">xs:string+</Data></Cell>
<Cell><Data ss:Type="String">[a-z0-9\-\.]{1,36}</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,417 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:20:53Z</Created>
<LastSaved>2013-01-21T03:40:20Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6510</WindowHeight>
<WindowWidth>23355</WindowWidth>
<WindowTopX>3405</WindowTopX>
<WindowTopY>2175</WindowTopY>
<ActiveSheet>2</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="7" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="30.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="24"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="31.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">A measured or measurable amount</Data></Cell>
<Cell><Data ss:Type="String">A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies</Data></Cell>
<Cell><Data ss:Type="String">Need to able to capture all sorts of measured values, even if the measured value are not precisely quantified. Values include exact measures such as 3.51g, customary units such as 3 tablets, and currencies such as $100.32USD</Data></Cell>
<Cell><Data ss:Type="String">The context of use may frequently define what kind of quantity this is and therefore what kind of units can be used. The context of use may also restrict the values for the comparator</Data></Cell>
<Cell><Data ss:Type="String">PQ, IVL&lt;PQ&gt;, MO, CO, depending on the values</Data></Cell>
<Cell><Data ss:Type="String">SN (see also Range) or CQ</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="81">
<Cell><Data ss:Type="String">Quantity.value</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Numerical value (with implicit precision)</Data></Cell>
<Cell><Data ss:Type="String">The value of the measured amount. The value includes an implicit precision in the presentation of the value</Data></Cell>
<Cell><Data ss:Type="String">Precision is handled implicitly in almost all cases of measurement</Data></Cell>
<Cell><Data ss:Type="String">The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books)</Data></Cell>
<Cell><Data ss:Type="String">PQ.value, CO.value, MO.value, IVL.high or IVL.low depending on the value</Data></Cell>
<Cell><Data ss:Type="String">SN.2 / CQ - N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Quantity.comparator</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">QuantityComparator</Data></Cell>
<Cell><Data ss:Type="String">&lt; | &lt;= | &gt;= | &gt; - how to understand the value</Data></Cell>
<Cell><Data ss:Type="String">How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues. E.g. if the comparator is &quot;&lt;&quot; , then the real value is &lt; stated value</Data></Cell>
<Cell><Data ss:Type="String">Need a framework for handling measures where the value is &lt;5ug/L or &gt;400mg/L due to the limitations of measuring methodology. </Data></Cell>
<Cell><Data ss:Type="String">This is labeled as &quot;Is Modifier&quot; because the comparator modifies the interpretation of the value significantly. If there is no comparator, then there is no modification of the value</Data></Cell>
<Cell><Data ss:Type="String">IVL properties</Data></Cell>
<Cell><Data ss:Type="String">SN.1 / CQ.1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Quantity.units</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Unit representation</Data></Cell>
<Cell><Data ss:Type="String">A human-readable form of the units</Data></Cell>
<Cell><Data ss:Type="String">There are many representations for units and in many contexts, particular representations are fixed and required. I.e. mcg for micrograms</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">PQ.unit</Data></Cell>
<Cell><Data ss:Type="String">(see OBX.6 etc) / CQ.2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Quantity.system</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">System that defines coded unit form</Data></Cell>
<Cell><Data ss:Type="String">The identification of the system that provides the coded form of the unit</Data></Cell>
<Cell><Data ss:Type="String">Need to know the system that defines the coded form of the unit</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">CO.codeSystem, PQ.translation.codeSystem</Data></Cell>
<Cell><Data ss:Type="String">(see OBX.6 etc) / CQ.2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Quantity.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Coded form of the unit</Data></Cell>
<Cell><Data ss:Type="String">A computer processable form of the units in some unit representation system</Data></Cell>
<Cell><Data ss:Type="String">Need a computable form of the units that is fixed across all forms. UCUM provides this for quantities, but SNOMED CT provides many units of interest</Data></Cell>
<Cell><Data ss:Type="String">The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.&#10;&#10;The context of use may additionally require a code from a particular system (Unless the Quantity element has a dataAbsentReason flag)</Data></Cell>
<Cell><Data ss:Type="String">PQ.code, MO.currency, PQ.translation.code</Data></Cell>
<Cell><Data ss:Type="String">(see OBX.6 etc) / CQ.2</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>9</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="30.75"/>
<Column ss:StyleID="s67" ss:Width="97.5"/>
<Column ss:StyleID="s67" ss:Width="45.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="350.25"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="346.5"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="383.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">SHALL have a system </Data></Cell>
<Cell><Data ss:Type="String">Quantity</Data></Cell>
<Cell><Data ss:Type="String">If a code for the units is present, the system SHALL also be present</Data></Cell>
<Cell><Data ss:Type="String">code.oclIsDefined implies system.oclIsDefined</Data></Cell>
<Cell><Data ss:Type="String">not(exists(f:code)) or exists(f:system)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2:R3</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Restrictions">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="7" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="91.5" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="493.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="528.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Rules</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Duration</Data></Cell>
<Cell><Data ss:Type="String">A length of time</Data></Cell>
<Cell><Data ss:Type="String">There SHALL be a code if there is a value and it SHALL be an expression of time. If system is present, it SHALL be UCUM.</Data></Cell>
<Cell><Data ss:Type="String">(f:code or not(f:value)) and (not(exists(f:system)) or f:system/@value='http://unitsofmeasure.org')</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Distance</Data></Cell>
<Cell><Data ss:Type="String">A measure of distance</Data></Cell>
<Cell><Data ss:Type="String">There SHALL be a code if there is a value and it SHALL be an expression of length. If system is present, it SHALL be UCUM.</Data></Cell>
<Cell><Data ss:Type="String">(f:code or not(f:value)) and (not(exists(f:system)) or f:system/@value='http://unitsofmeasure.org')</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Count</Data></Cell>
<Cell><Data ss:Type="String">A count of a discrete element (no unit)</Data></Cell>
<Cell><Data ss:Type="String">There SHALL be a code with a value of &quot;1&quot; if there is a value and it SHALL be an expression of length. If system is present, it SHALL be UCUM. If present, the value SHALL a whole number.</Data></Cell>
<Cell><Data ss:Type="String">(f:code or not(f:value)) and (not(exists(f:system)) or (f:system/@value='http://unitsofmeasure.org' and f:code/@value='1' )) and not(contains(f:value/@value, '.')) </Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Money</Data></Cell>
<Cell><Data ss:Type="String">An amount of money. With regard to precision, see [[X]]</Data></Cell>
<Cell><Data ss:Type="String">There SHALL be a code if there is a value and it SHALL be an expression of currency. If system is present, it SHALL be ISO 4217 (system = &quot;urn:std:iso:4217&quot; - currency).</Data></Cell>
<Cell><Data ss:Type="String">(f:code or not(f:value)) and (not(exists(f:system)) or f:system/@value='urn:std:iso:4217')</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">CodedQuantity</Data></Cell>
<Cell><Data ss:Type="String">A quantity with UCUM units</Data></Cell>
<Cell><Data ss:Type="String">There SHALL be a code if there is a value. If system is present, it SHALL be UCUM.</Data></Cell>
<Cell><Data ss:Type="String">(f:code or not(f:value)) and (not(exists(f:system)) or f:system/@value='http://unitsofmeasure.org')</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Age</Data></Cell>
<Cell><Data ss:Type="String">A duration (length of time) with a UCUM code</Data></Cell>
<Cell><Data ss:Type="String">There SHALL be a code if there is a value and it SHALL be an expression of time. If system is present, it SHALL be UCUM. If value is present, it SHALL be positive.</Data></Cell>
<Cell><Data ss:Type="String">(f:code or not(f:value)) and (not(exists(f:system)) or f:system/@value='http://unitsofmeasure.org') and not(contains(f:value/@value, '-'))</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultColumnWidth="120"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="75"/>
<Column ss:StyleID="s69" ss:Width="108.75"/>
<Column ss:StyleID="s69" ss:Width="44.25"/>
<Column ss:StyleID="s69" ss:Width="81.75"/>
<Column ss:StyleID="s69" ss:Width="58.5"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s63"><Data ss:Type="String">QuantityComparator</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">How the Quantity should be understood and represented</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">#quantity-comparator</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="quantity-comparator">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="569.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">&lt;</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The actual value is less than the given value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">&lt;=</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The actual value is less than or equal to the given value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">&gt;=</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The actual value is greater than or equal to the given value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">&gt;</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The actual value is greater than the given value</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,207 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:23:41Z</Created>
<LastSaved>2013-01-20T19:49:14Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>8535</WindowHeight>
<WindowWidth>15270</WindowWidth>
<WindowTopX>3030</WindowTopX>
<WindowTopY>3540</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="39.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="33"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="60" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">A reference from one resource to another</Data></Cell>
<Cell><Data ss:Type="String">A reference from one resource to another</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">The target of a resource reference is a RIM entry point (Act, Role, or Entity)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">!Reference.type</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ResourceType</Data></Cell>
<Cell><Data ss:Type="String">Resource Type</Data></Cell>
<Cell><Data ss:Type="String">The name of one of the resource types defined in this specification to identify the type of the resource being referenced</Data></Cell>
<Cell ss:Index="10" ss:StyleID="s66"><Data ss:Type="String">Whether or not the type of the resource reference is fixed for a particular element, the reference includes the resource type</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="270">
<Cell><Data ss:Type="String">Reference.reference</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Relative, internal or absolute URL reference</Data></Cell>
<Cell><Data ss:Type="String">A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources</Data></Cell>
<Cell ss:Index="10" ss:StyleID="s66"><Data ss:Type="String">Using absolute URLs provides a stable scalable approach suitable for a cloud/web context, while using relative/logical references provides a flexible approach suitable for use when trading across closed eco-system boundaries. &#10;&#10;Absolute URLs do not need to point to a FHIR RESTful server, though this is the preferred approach. If the url conforms to the structure &quot;/[type]/@[id]&quot; then it should be assumed that the reference is to a FHIR RESTful server</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Reference.display</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Text alternative for the resource</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Plain text narrative that identifies the resource in addition to the resource reference </Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">This is generally not the same as the Resource.text of the referenced resource. The purpose is to identify what's being referenced, not to fully describe it.</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>0</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="24.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="52.5"/>
<Column ss:StyleID="s67" ss:Width="97.5"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="249"/>
<Column ss:Index="6" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="488.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">Inline</Data></Cell>
<Cell><Data ss:Type="String">Reference</Data></Cell>
<Cell><Data ss:Type="String">SHALL have a local reference if the resource is provided inline</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">not(starts-with(f:reference/@value, '#')) or exists(ancestor::a:content/f:*/f:contained/f:*[@id=substring-after(current()/f:reference/@value, '#')]|/f:*/f:contained/f:*[@id=substring-after(current()/f:reference/@value, '#')])</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,497 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:19:41Z</Created>
<LastSaved>2012-10-07T09:34:16Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>5310</WindowHeight>
<WindowWidth>22575</WindowWidth>
<WindowTopX>5250</WindowTopX>
<WindowTopY>6660</WindowTopY>
<ActiveSheet>2</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="135.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="32.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="41.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="33.75" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="62.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="63"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Timing</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Structure</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A timing schedule that specifies an event that may occur multiple times</Data></Cell>
<Cell><Data ss:Type="String">Specifies an event that may occur multiple times. Timing schedules are used for to record when things are expected or requested to occur.</Data></Cell>
<Cell><Data ss:Type="String">Need to able to track proposed timing schedules. There are several different ways to do this: one or more specified times, a simple rules like three times a day, or before/after meals</Data></Cell>
<Cell><Data ss:Type="String">A timing schedule can be either a list of events - intervals on which the event occurs, or a single event with repeating criteria or just repeating criteria with no actual event. </Data></Cell>
<Cell><Data ss:Type="String">QSET&lt;TS&gt; (GTS)</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Timing.event</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When the event occurs</Data></Cell>
<Cell><Data ss:Type="String">Identifies specific time periods when the event should occur</Data></Cell>
<Cell><Data ss:Type="String">Some schedules are just explicit lists of times</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">QLIST&lt;TS&gt; or PIVL.offset</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Timing.repeat</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Only if there is none or one event</Data></Cell>
<Cell><Data ss:Type="String">Identifies a repeating pattern to the intended time periods. </Data></Cell>
<Cell><Data ss:Type="String">Many timing schedules are determined by regular repetitions</Data></Cell>
<Cell><Data ss:Type="String">If present, the Timing.event indicates the time of the first occurrence.</Data></Cell>
<Cell><Data ss:Type="String">Implies PIVL or EIVL</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Timing.repeat.frequency</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Event occurs frequency times per duration</Data></Cell>
<Cell><Data ss:Type="String">Indicates how often the event should occur.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">PIVL.phase</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Timing.repeat.when</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">EventTiming</Data></Cell>
<Cell><Data ss:Type="String">HS | WAKE | AC | ACM | ACD | ACV | PC | PCM | PCD | PCV - common life events</Data></Cell>
<Cell><Data ss:Type="String">Identifies the occurrence of daily life that determines timing</Data></Cell>
<Cell><Data ss:Type="String">Timings are frequently determined by occurrences such as waking, eating and sleep</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">EIVL.event</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Timing.repeat.duration</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Repeating or event-related duration</Data></Cell>
<Cell><Data ss:Type="String">How long each repetition should last</Data></Cell>
<Cell><Data ss:Type="String">Some activities are not instantaneous and need to be maintained for a period of time</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">PIVL.phase / EIVL.offset</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Timing.repeat.units</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">UnitsOfTime</Data></Cell>
<Cell><Data ss:Type="String">s | min | h | d | wk | mo | a - unit of time (UCUM)</Data></Cell>
<Cell><Data ss:Type="String">The units of time for the duration</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">PIVL.phase.unit</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Timing.repeat.count</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Number of times to repeat</Data></Cell>
<Cell><Data ss:Type="String">A total count of the desired number of repetitions</Data></Cell>
<Cell><Data ss:Type="String">Repetitions may be limited by end time or total occurrences</Data></Cell>
<Cell><Data ss:Type="String">An end need not be specified</Data></Cell>
<Cell><Data ss:Type="String">PIVL.count</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Timing.repeat.end</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When to stop repeats</Data></Cell>
<Cell><Data ss:Type="String">When to stop repeating the timing schedule</Data></Cell>
<Cell><Data ss:Type="String">Repetitions may be limited by end time or total occurrences</Data></Cell>
<Cell><Data ss:Type="String">An end need not be specified</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>7</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="144.75"
ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="324.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="319.5"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="312.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">Multiple or repeating events</Data></Cell>
<Cell><Data ss:Type="String">Timing</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">There can only be a repeat element if there is none or one event</Data></Cell>
<Cell><Data ss:Type="String">repeat.oclIsDefined implies event.count &lt; 2</Data></Cell>
<Cell><Data ss:Type="String">not(exists(f:repeat)) or count(f:event) &lt; 2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">Repeat cycle</Data></Cell>
<Cell><Data ss:Type="String">Timing.repeat</Data></Cell>
<Cell ss:StyleID="s63"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">Either </Font><I><Font
html:Color="#000000">frequency</Font></I><Font html:Color="#000000"> or </Font><I><Font
html:Color="#000000">when</Font></I><Font html:Color="#000000"> SHALL be present, but not both</Font></ss:Data></Cell>
<Cell><Data ss:Type="String">frequency.oclIsDefined xor when.oclIsDefined</Data></Cell>
<Cell><Data ss:Type="String">exists(f:frequency) != exists(f:when)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">End condition</Data></Cell>
<Cell><Data ss:Type="String">Timing.repeat</Data></Cell>
<Cell ss:StyleID="s63"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">At most, only one of </Font><I><Font
html:Color="#000000">count</Font></I><Font html:Color="#000000"> or </Font><I><Font
html:Color="#000000">end</Font></I><Font html:Color="#000000"> can be present</Font></ss:Data></Cell>
<Cell><Data ss:Type="String">not count.oclIsDefined and end.oclIsDefined</Data></Cell>
<Cell><Data ss:Type="String">not(exists(f:count) and exists(f:end))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">Duration Positive</Data></Cell>
<Cell><Data ss:Type="String">Timing.repeat.duration</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">duration SHALL be a positive value</Data></Cell>
<Cell><Data ss:Type="String">duration &gt; 0</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">@value &gt; 0 or not(@value)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="190.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="78.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="173.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="283.5"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Copyright</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s71"><Data ss:Type="String">EventTiming</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Real world event that the schedule relates to</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">#event-timing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">UnitsOfTime</Data></Cell>
<Cell><Data ss:Type="String">A unit of time (units from UCUM)</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#units-of-time</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">UCUM is Copyright © 1999-2013 Regenstrief Institute, Inc. and The UCUM Organization, Indianapolis, IN. All rights reserved. See http://unitsofmeasure.org/trac//wiki/TermsOfUse for details</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="event-timing">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="11" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="191.25"/>
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="453"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">System</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">HS</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] before the hour of sleep (or trying to)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">WAKE</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] after waking</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">AC</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] before a meal (from the Latin ante cibus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">ACM</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] before breakfast (from the Latin ante cibus matutinus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">ACD</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] before lunch (from the Latin ante cibus diurnus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">ACV</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] before dinner (from the Latin ante cibus vespertinus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">PC</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] after a meal (from the Latin post cibus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">PCM</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] after breakfast (from the Latin post cibus matutinus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">PCD</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] after lunch (from the Latin post cibus diurnus)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/TimingEvent</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">PCV</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">event occurs [duration] after dinner (from the Latin post cibus vespertinus) </Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>1</ActiveCol>
<RangeSelection>R2C2:R11C2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="units-of-time">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="142.5"/>
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="260.25"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">System</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">s</Data></Cell>
<Cell><Data ss:Type="String">second</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">min</Data></Cell>
<Cell><Data ss:Type="String">minute</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">h</Data></Cell>
<Cell><Data ss:Type="String">hour</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">d</Data></Cell>
<Cell><Data ss:Type="String">day</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">wk</Data></Cell>
<Cell><Data ss:Type="String">week</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">mo</Data></Cell>
<Cell><Data ss:Type="String">month</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">http://unitsofmeasure.org</Data></Cell>
<Cell><Data ss:Type="String">a</Data></Cell>
<Cell><Data ss:Type="String">year</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>1</ActiveCol>
<RangeSelection>R2C2:R8C2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,181 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:23:41Z</Created>
<LastSaved>2013-02-01T12:14:49Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9225</WindowHeight>
<WindowWidth>15570</WindowWidth>
<WindowTopX>2880</WindowTopX>
<WindowTopY>3000</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="39.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="33"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Concept Domain</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Extension</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Optional Extensions Element - found in all resources</Data></Cell>
<Cell><Data ss:Type="String">The ability to add extensions in a structured way is what keeps FHIR resources simple</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s66"><Data ss:Type="String">Extension.@url</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">identifies the meaning of the extension</Data></Cell>
<Cell><Data ss:Type="String">Source of the definition for the extension code - a logical name or a URL</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition should be version specific. This will ideally be the URI for the Resource Profile defining the extension, with the code for the extension after a #</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Extension.value[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">*</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Value of extension</Data></Cell>
<Cell><Data ss:Type="String">Value of extension - may be a resource or one of a constrained set of the data types (see Extensibility in the spec for list)</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30"/>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s67" ss:Width="66"/>
<Column ss:StyleID="s67" ss:Width="51"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="243.75"/>
<Column ss:Index="6" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,461 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:22:15Z</Created>
<LastSaved>2013-12-01T20:02:05Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>8220</WindowHeight>
<WindowWidth>24615</WindowWidth>
<WindowTopX>3510</WindowTopX>
<WindowTopY>4050</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s75" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s76" ss:Parent="s62">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s78">
<Alignment ss:Horizontal="Right" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s79" ss:Parent="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="12" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="41.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="37.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="85.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="78.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="54"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="182.25" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="2"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">vCard Mapping</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">ServD Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="237.75">
<Cell><Data ss:Type="String">HumanName</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Structure</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Name of a human - parts and usage</Data></Cell>
<Cell><Data ss:Type="String">A human's name with the ability to identify parts and usage</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Need to be able to record names, along with notes about their use</Data></Cell>
<Cell><Data ss:Type="String">Names may be changed, or repudiated, or people may have different names in different contexts. Names may be divided into parts of different type that have variable significance depending on context, though the division into parts does not always matter. With personal names, the different parts may or may not be imbued with some implicit meaning; various cultures associate different importance with the name parts and the degree to which systems must care about name parts around the world varies widely.</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">EN (actually, PN)</Data></Cell>
<Cell><Data ss:Type="String">XPN</Data></Cell>
<Cell><Data ss:Type="String">ProviderName</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">HumanName.use</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">NameUse</Data></Cell>
<Cell><Data ss:Type="String">usual | official | temp | nickname | anonymous | old | maiden</Data></Cell>
<Cell><Data ss:Type="String">Identifies the purpose for this name</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Allows the appropriate name for a particular context of use to be selected from among a set of names</Data></Cell>
<Cell><Data ss:Type="String">This is labeled as &quot;Is Modifier&quot; because applications should not mistake a temporary or old name etc for a current/permanent one. Applications can assume that a name is current unless it explicitly says that it is temporary or old</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">unique(./use)</Data></Cell>
<Cell><Data ss:Type="String">XPN.7, but often indicated by which field contains the name</Data></Cell>
<Cell><Data ss:Type="String">./NamePurpose</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">HumanName.text</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Text representation of the full name</Data></Cell>
<Cell><Data ss:Type="String">A full text representation of the name</Data></Cell>
<Cell ss:Index="10" ss:StyleID="s69"><Data ss:Type="String">A renderable, unencoded form</Data></Cell>
<Cell><Data ss:Type="String">Can provide both a text representation and structured parts. &#10;</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">./formatted</Data></Cell>
<Cell><Data ss:Type="String">implied by XPN.11</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="50.25">
<Cell><Data ss:Type="String">HumanName.family</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Family name (often called 'Surname')</Data></Cell>
<Cell><Data ss:Type="String">The part of a name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father.</Data></Cell>
<Cell><Data ss:Type="String">surname</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">For family name, hyphenated names such as &quot;Smith-Jones&quot; are a single name, but names with spaces such as &quot;Smith Jones&quot; are broken into multiple parts</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">./part[partType = FAM]</Data></Cell>
<Cell><Data ss:Type="String">XPN.1</Data></Cell>
<Cell><Data ss:Type="String">./FamilyName</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="46.5">
<Cell><Data ss:Type="String">HumanName.given</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Given names (not always 'first'). Includes middle names</Data></Cell>
<Cell><Data ss:Type="String">Given name</Data></Cell>
<Cell><Data ss:Type="String">first name; middle name</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">If only initials are recorded, they may be used in place of the full name. Not called &quot;first name&quot; since given names do not always come first.</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">./part[partType = GIV]</Data></Cell>
<Cell><Data ss:Type="String">XPN.2 + XPN.3</Data></Cell>
<Cell><Data ss:Type="String">./GivenNames</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="46.5">
<Cell><Data ss:Type="String">HumanName.prefix</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Parts that come before the name</Data></Cell>
<Cell><Data ss:Type="String">Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the start of the name</Data></Cell>
<Cell ss:Index="10" ss:StyleID="s69"/>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">./part[partType = PFX]</Data></Cell>
<Cell><Data ss:Type="String">XPN.5</Data></Cell>
<Cell><Data ss:Type="String">./TitleCode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="46.5">
<Cell><Data ss:Type="String">HumanName.suffix</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Parts that come after the name</Data></Cell>
<Cell><Data ss:Type="String">Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the end of the name</Data></Cell>
<Cell ss:Index="10" ss:StyleID="s69"/>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">./part[partType = SFX]</Data></Cell>
<Cell><Data ss:Type="String">XPN/4</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">HumanName.period</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Time period when name was/is in use</Data></Cell>
<Cell><Data ss:Type="String">Indicates the period of time when this name was valid for the named person.</Data></Cell>
<Cell ss:Index="10" ss:StyleID="s69"><Data ss:Type="String">Allows names to be placed in historical context</Data></Cell>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">./usablePeriod[type=&quot;IVL&lt;TS&gt;&quot;]</Data></Cell>
<Cell><Data ss:Type="String">XPN.13 + XPN.14</Data></Cell>
<Cell><Data ss:Type="String">./StartDate and ./EndDate</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="12" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="12" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="12" ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="24.75"/>
<Column ss:StyleID="s69" ss:Width="96.75"/>
<Column ss:StyleID="s69" ss:Width="66"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="405.75"/>
<Column ss:StyleID="s69" ss:Width="325.5"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="233.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:Index="4" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:AutoFitWidth="0" ss:Width="211.5"/>
<Column ss:AutoFitWidth="0" ss:Width="62.25"/>
<Column ss:AutoFitWidth="0" ss:Width="141.75"/>
<Column ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">v2</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">v3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"><Data ss:Type="String">NameUse</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">The use of a human name</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">#name-use</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s72"><Data ss:Type="String">http://hl7.org/fhir/v2/vs/0200</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">http://hl7.org/fhir/v3/vs/EntityNameUseR2</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="name-use">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultColumnWidth="72.75"
ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s73" ss:AutoFitWidth="0"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="804.75"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="112.5"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="177.75"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v2</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v3</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">usual</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Known as/conventional/the one you normally use</Data></Cell>
<Cell><Data ss:Type="String">~0200.D</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=EntityNameUseR2.C</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">official</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called &quot;legal name&quot;.</Data></Cell>
<Cell><Data ss:Type="String">~0200.L</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=EntityNameUseR2.OR</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">temp</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations.</Data></Cell>
<Cell><Data ss:Type="String">~0200.TEMP</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=EntityNameUseR2.T</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">nickname</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">A name that is used to address the person in an informal manner, but is not part of their formal or usual name</Data></Cell>
<Cell><Data ss:Type="String">~0200.N</Data></Cell>
<Cell><Data ss:Type="String">~EntityNameUseR2.P</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">anonymous</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons)</Data></Cell>
<Cell><Data ss:Type="String">~0200.S</Data></Cell>
<Cell><Data ss:Type="String">~EntityNameUseR2.ANON</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">old</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">This name is no longer in use (or was never correct, but retained for records)</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">&gt;0200.NOUSE,&gt;0200.BAD</Data></Cell>
<Cell><Data ss:Type="String">~EntityNameUseR2.OLD</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s78"><Data ss:Type="Number">7</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">maiden</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store &quot;maiden&quot; names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically.</Data></Cell>
<Cell><Data ss:Type="String">~0200.M</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">=EntityNameUseR2.M</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>1</ActiveCol>
<RangeSelection>R2C2:R8C2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,211 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:21:43Z</Created>
<LastSaved>2013-08-03T06:12:41Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>7080</WindowHeight>
<WindowWidth>23835</WindowWidth>
<WindowTopX>4140</WindowTopX>
<WindowTopY>5040</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="75.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="36.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="23.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s62" ss:Width="96.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Concept Domain</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210.75">
<Cell><Data ss:Type="String">Period</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Time range defined by start and end date/time</Data></Cell>
<Cell><Data ss:Type="String">A time period defined by a start and end date and optionally time.</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">This is not a duration - that's a measure of time (a separate type), but a duration that occurs at a fixed value of time. A Period specifies a range of time; the context of use will specify whether the entire range applies (e.g. &quot;the patient was an inpatient of the hospital for this time range&quot;) or one value from the range applies (e.g. &quot;give to the patient between these two times&quot;). If a duration might be required, specify the type as Interval|Duration</Data></Cell>
<Cell><Data ss:Type="String">IVL&lt;TS&gt;[lowClosed=&quot;true&quot; and highClosed=&quot;true&quot;] or URG&lt;TS&gt;[lowClosed=&quot;true&quot; and highClosed=&quot;true&quot;]</Data></Cell>
<Cell><Data ss:Type="String">DR</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Period.start</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Starting time with inclusive boundary</Data></Cell>
<Cell><Data ss:Type="String">The start of the period. The boundary is inclusive.</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">If the low element is missing, the meaning is that the low boundary is not known.</Data></Cell>
<Cell><Data ss:Type="String">./low</Data></Cell>
<Cell><Data ss:Type="String">DR.1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="195">
<Cell><Data ss:Type="String">Period.end</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">End time with inclusive boundary, if not ongoing</Data></Cell>
<Cell><Data ss:Type="String">The end of the period. If the end of the period is missing, it means that the period is ongoing</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">The high value includes any matching date/time. i.e. 2012-02-03T10:00:00 is in a period that has a end value of 2012-02-03</Data></Cell>
<Cell><Data ss:Type="String">./high</Data></Cell>
<Cell><Data ss:Type="String">DR.2</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s66" ss:DefaultRowHeight="15">
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="32.25"/>
<Column ss:StyleID="s66" ss:Width="126"/>
<Column ss:StyleID="s66" ss:Width="42"/>
<Column ss:StyleID="s66" ss:Width="384"/>
<Column ss:StyleID="s66" ss:Width="257.25"/>
<Column ss:StyleID="s66" ss:Width="218.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Context</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">English</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">OCL</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">Start &lt;= End</Data></Cell>
<Cell><Data ss:Type="String">Period</Data></Cell>
<Cell><Data ss:Type="String">If present, start SHALL have a lower value than end</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">not(exists(f:start)) or not(exists(f:end)) or (f:start/@value &lt;= f:end/@value)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6" ss:StyleID="s68"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6" ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,215 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:21:43Z</Created>
<LastSaved>2012-03-21T11:16:42Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>7080</WindowHeight>
<WindowWidth>23835</WindowWidth>
<WindowTopX>4470</WindowTopX>
<WindowTopY>3375</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="75.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="36.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="23.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Concept Domain</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210.75">
<Cell><Data ss:Type="String">Range</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Set of values bounded by low and high</Data></Cell>
<Cell><Data ss:Type="String">A set of ordered Quantities defined by a low and high limit. </Data></Cell>
<Cell><Data ss:Type="String">Need to be able to specify ranges of values</Data></Cell>
<Cell><Data ss:Type="String">The stated low and high value are assumed to have arbitrarily high precision when it comes to determining which values are in the range. I.e. 1.99 is not in the range 2 -&gt; 3</Data></Cell>
<Cell><Data ss:Type="String">IVL&lt;QTY[not(type=&quot;TS&quot;)]&gt; [lowClosed=&quot;true&quot; and highClosed=&quot;true&quot;]or URG&lt;QTY[not(type=&quot;TS&quot;)]&gt;</Data></Cell>
<Cell><Data ss:Type="String">NR and also possibly SN (but see also quantity)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Range.low</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="String">2,3</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Low limit </Data></Cell>
<Cell><Data ss:Type="String">The low limit. The boundary is inclusive.</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">If the low element is missing, the low boundary is not known.</Data></Cell>
<Cell><Data ss:Type="String">./low</Data></Cell>
<Cell><Data ss:Type="String">NR.1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="195">
<Cell><Data ss:Type="String">Range.high</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="String">2,3</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">High limit </Data></Cell>
<Cell><Data ss:Type="String">The high limit. The boundary is inclusive. </Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">If the high element is missing, the high boundary is not known. </Data></Cell>
<Cell><Data ss:Type="String">./high</Data></Cell>
<Cell><Data ss:Type="String">NR.2</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>9</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s66" ss:DefaultRowHeight="15">
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="26.25"/>
<Column ss:StyleID="s66" ss:Width="128.25"/>
<Column ss:StyleID="s66" ss:Width="42"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="425.25"/>
<Column ss:StyleID="s66" ss:Width="284.25"/>
<Column ss:StyleID="s66" ss:Width="309"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Context</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">English</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">OCL</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">Low &lt; high</Data></Cell>
<Cell><Data ss:Type="String">Range</Data></Cell>
<Cell><Data ss:Type="String">If present, low SHALL have a lower value than high</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">not(exists(f:low/f:value/@value)) or not(exists(f:high/f:value/@value)) or (number(f:low/f:value/@value) &lt;= number(f:high/f:value/@value))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">No Range flag on Quantity</Data></Cell>
<Cell><Data ss:Type="String">Range</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Quantity values cannot have a comparator when used in a Range</Data></Cell>
<Cell><Data ss:Type="String">lowcomparator.oclIsUndefined and high.comparator.oclIsUndefined)</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">not(exists(f:low/f:comparator) or exists(f:high/f:comparator))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6" ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,185 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:20:41Z</Created>
<LastSaved>2012-03-21T11:35:37Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6225</WindowHeight>
<WindowWidth>27555</WindowWidth>
<WindowTopX>4860</WindowTopX>
<WindowTopY>5895</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="14" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="100.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="29.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="27.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="33.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="53.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="42"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="136.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Concept Domain</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Ratio</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">A ratio of two Quantity values - a numerator and a denominator</Data></Cell>
<Cell><Data ss:Type="String">A relationship of two Quantity values - expressed as a numerator and a denominator. </Data></Cell>
<Cell><Data ss:Type="String">Need to able to capture ratios for some measurements (titers) and some rates (costs)</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">RTO</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Ratio.numerator</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Numerator value</Data></Cell>
<Cell><Data ss:Type="String">The value of the numerator</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">.numerator</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Ratio.denominator</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Denominator value</Data></Cell>
<Cell><Data ss:Type="String">The value of the denominator</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">.denominator</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s66" ss:DefaultRowHeight="15">
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="26.25"/>
<Column ss:StyleID="s66" ss:Width="166.5"/>
<Column ss:StyleID="s66" ss:Width="42"/>
<Column ss:StyleID="s66" ss:Width="417"/>
<Column ss:StyleID="s66" ss:Width="302.25"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="243"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">both numerator and denominator</Data></Cell>
<Cell><Data ss:Type="String">Ratio</Data></Cell>
<Cell><Data ss:Type="String">numerator and denominator SHALL both be present, or both be absent</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">count(f:numerator) = count(f:denominator)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,221 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:20:53Z</Created>
<LastSaved>2013-05-12T13:07:12Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>7140</WindowHeight>
<WindowWidth>23655</WindowWidth>
<WindowTopX>1740</WindowTopX>
<WindowTopY>5775</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="9" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="30.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="24"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="31.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="222"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Regex</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">SampledData</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A series of measurements taken by a device</Data></Cell>
<Cell><Data ss:Type="String">A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data</Data></Cell>
<Cell><Data ss:Type="String">There is a need for a concise way to handle the data produced by devices that sample a physical state at a high frequency</Data></Cell>
<Cell><Data ss:Type="String">The data is not interpretable without at least origin, period, and dimensions, but these are optional to allow a separation between the template of measurement and the actual measurement, such as between DeviceCapabilities and DeviceLog</Data></Cell>
<Cell><Data ss:Type="String">SLIST + GLIST</Data></Cell>
<Cell><Data ss:Type="String">N/A (but see section 7.14 in v2.7)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">SampledData.origin</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Quantity</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Zero value and units</Data></Cell>
<Cell><Data ss:Type="String">The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">SLIST.origin</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">SampledData.period</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Number of milliseconds between samples</Data></Cell>
<Cell><Data ss:Type="String">The length of time between sampling times, measured in milliseconds</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">This is usually a whole number</Data></Cell>
<Cell><Data ss:Type="String">GLIST.increment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">SampledData.factor</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Multiply data by this before adding to origin</Data></Cell>
<Cell><Data ss:Type="String">A correction factor that is applied to the sampled data points before they are added to the origin</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">SLIST.factor</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">SampledData.lowerLimit</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Lower limit of detection</Data></Cell>
<Cell><Data ss:Type="String">The lower limit of detection of the measured points. This is needed if any of the data points have the value &quot;L&quot; (lower than detection limit)</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">N/A (use SLIST.digits.nullFlavor)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">SampledData.upperLimit</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Upper limit of detection</Data></Cell>
<Cell><Data ss:Type="String">The upper limit of detection of the measured points. This is needed if any of the data points have the value &quot;U&quot; (higher than detection limit)</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">N/A (use SLIST.digits.nullFlavor)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">SampledData.dimensions</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Number of sample points at each time point</Data></Cell>
<Cell><Data ss:Type="String">The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">If there is more than one dimension, the code for the type of data will define the meaning of the dimensions (typically ECG data)</Data></Cell>
<Cell><Data ss:Type="String">N/A (fixed to 1)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">SampledData.data</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">((-{0,1}\d*\.{0,1}\d+)|[EUL])( ((-{0,1}\d*\.{0,1}\d+)|[EUL]))*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Decimal values with spaces, or &quot;E&quot; | &quot;U&quot; | &quot;L&quot;</Data></Cell>
<Cell><Data ss:Type="String">A series of data points which are decimal values separated by a single space (character u20). The special values &quot;E&quot; (error), &quot;L&quot; (below detection limit) and &quot;U&quot; (above detection limit) can also be used in place of a decimal value</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">SLIST.digits</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>9</ActiveRow>
<ActiveCol>8</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s66" ss:DefaultRowHeight="15">
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="30.75"/>
<Column ss:StyleID="s66" ss:Width="97.5"/>
<Column ss:StyleID="s66" ss:Width="45.75"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="350.25"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="346.5"/>
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="383.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -1,430 +0,0 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:17:14Z</Created>
<LastSaved>2013-04-19T20:47:52Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6090</WindowHeight>
<WindowWidth>15570</WindowWidth>
<WindowTopX>6225</WindowTopX>
<WindowTopY>1365</WindowTopY>
<ActiveSheet>2</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Hyperlink">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#0000FF"
ss:Underline="Single"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s66" ss:Parent="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
<NumberFormat ss:Format="Short Date"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Metadata">
<Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="14" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="85.5"/>
<Column ss:AutoFitWidth="0" ss:Width="808.5"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">id</Data></Cell>
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">ActivityDefinition HL7 Extensions</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">author.name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">HL7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">author.reference</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Defines common extensions used with or related to the ActivityDefinition shared definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">status</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">draft</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">profile</Data></Cell>
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">resource</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">binding</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">version</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">0.01</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">extension.uri</Data></Cell>
<Cell ss:StyleID="s66" ss:HRef="http://hl7.org/fhir/extensions/ActivityDefinition"><Data
ss:Type="String">http://hl7.org/fhir/extensions/ActivityDefinition</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>13</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="112.5"/>
<Column ss:AutoFitWidth="0" ss:Width="144.75"/>
<Column ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:AutoFitWidth="0" ss:Width="219.75"/>
<Column ss:AutoFitWidth="0" ss:Width="126.75"/>
<Column ss:AutoFitWidth="0" ss:Width="168.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s69"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Binding Strength</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="16.5">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s73"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Extensions">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="12" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="112.5"/>
<Column ss:AutoFitWidth="0" ss:Width="102.75"/>
<Column ss:AutoFitWidth="0" ss:Width="95.25"/>
<Column ss:AutoFitWidth="0" ss:Width="39"/>
<Column ss:Width="112.5"/>
<Column ss:Width="105"/>
<Column ss:AutoFitWidth="0" ss:Width="64.5"/>
<Column ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:AutoFitWidth="0" ss:Width="171"/>
<Column ss:AutoFitWidth="0" ss:Width="123"/>
<Column ss:AutoFitWidth="0" ss:Width="187.5"/>
<Column ss:Index="14" ss:Width="31.5"/>
<Column ss:Width="88.5"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s69"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Context Type</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Context</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Card.</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Must Understand</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Short Name</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Requirements</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">To Do</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s75"><Data ss:Type="String">route</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Datatype</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">ActivityDefinition</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">RouteOfAdministration</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">How substance is introduced</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Indicates the pathway by which a drug or other substance is introduced into the subject</Data></Cell>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:Index="7" ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:Index="7" ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:Index="7" ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s77"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:Index="7" ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:Index="7" ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,749 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-01-23T03:57:29Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<ActiveSheet>6</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s128">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="13" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s62" ss:Width="29.25"/>
<Column ss:StyleID="s62" ss:Width="22.5"/>
<Column ss:StyleID="s62" ss:Width="60"/>
<Column ss:StyleID="s62" ss:Width="27"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="15" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135.75"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Account</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="9"><Data ss:Type="String">A financial tool for tracking value accrued for a particular purpose. In the healthcare field, used to track charges for a patient, cost centres, etc.</Data></Cell>
<Cell><Data ss:Type="String">Cost center, Record</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Account.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Account number</Data></Cell>
<Cell><Data ss:Type="String">Unique identifier used to reference the account. May or may not be intended for human use. (E.g. credit card number)</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Account.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Human-readable label</Data></Cell>
<Cell><Data ss:Type="String">Name used for the account when displaying it to humans in reports, etc.</Data></Cell>
<Cell><Data ss:Type="String">Title</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Account.type</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">AccountType</Data></Cell>
<Cell><Data ss:Type="String">E.g. patient, expense, depreciation</Data></Cell>
<Cell><Data ss:Type="String">Categorizes the account for reporting and searching purposes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Account.status</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">AccountStatus</Data></Cell>
<Cell><Data ss:Type="String">active | inactive</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Indicates whether the account is presently used/useable or not</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="15"><Data ss:Type="String">Are there other statuses? If not, should this be boolean?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Account.activePeriod</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Valid from..to</Data></Cell>
<Cell><Data ss:Type="String">Indicates the period of time over which the account is allowed</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Transactions cannot typically be posted to account outside of its &quot;active&quot; period</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Is this in the 80%? Better name?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Account.currency</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">Currency</Data></Cell>
<Cell><Data ss:Type="String">Base currency in which balance is tracked</Data></Cell>
<Cell><Data ss:Type="String">Identifies the currency to which transactions must be converted when crediting or debiting the account.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Tracked separately from balance because currency might be known when balance is not. In some cases, balance might be expressed in a currency other than the base currency for the account</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Is this in the 80%?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Account.balance</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Money</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">How much is in account?</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Represents the sum of all credits less all debits associated with the account. Might be positive, zero or negative.</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Account.coveragePeriod</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Transaction window</Data></Cell>
<Cell><Data ss:Type="String">Identifies the period of time the account applies to. E.g. accounts created per fiscal year, quarter, etc.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">It is possible for transactions relevant to a coverage period to be posted to the account before or after the coverage period.</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Better name?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Account.subject</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">What is account tied to?</Data></Cell>
<Cell><Data ss:Type="String">Identifies the patient, device, practitioner, location or other object the account is associated with</Data></Cell>
<Cell><Data ss:Type="String">target</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Is there a use-case for 0..*? Would this be in the 80%?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Account.owner</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who is responsible?</Data></Cell>
<Cell><Data ss:Type="String">Indicates the organization, department, etc. with responsibility for the account.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Account.description</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Explanation of purpose/use</Data></Cell>
<Cell><Data ss:Type="String">Provides additional information about what the account tracks and how it is used</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>5</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="38" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="120.75"/>
<Column ss:AutoFitWidth="0" ss:Width="149.25"/>
<Column ss:Width="51"/>
<Column ss:Width="120.75"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.identifier</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Account.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.name</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">Account.name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.type</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Account.type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.status</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Account.status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.balance</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">number</Data></Cell>
<Cell><Data ss:Type="String">Account.balance</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.coveragePeriod</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Account.coveragePeriod</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.subject</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Account.subject</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Account.owner</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Account.owner</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultRowHeight="15">
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s62"><Data ss:Type="String">AccountType</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Identifies the &quot;category&quot; an account falls in (expenses, cost center, etc.)</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">#account-type</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell ss:StyleID="s66"><Data ss:Type="String">AccountStatus</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Indicates whether the account is available to be used</Data></Cell>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#account-status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="account-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row>
<Cell ss:StyleID="s128"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">1</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">2</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="account-status">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row>
<Cell ss:StyleID="s128"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">active</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">inactive</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,698 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-08-04T13:16:39Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>8880</WindowHeight>
<WindowWidth>25605</WindowWidth>
<WindowTopX>1605</WindowTopX>
<WindowTopY>1260</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#C0C0C0" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72" ss:Parent="s62">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s73">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#FF0000"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="9" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s63" ss:Width="29.25"/>
<Column ss:StyleID="s63" ss:Width="23.25"/>
<Column ss:StyleID="s63" ss:Width="60"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="51.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="107.25"/>
<Column ss:StyleID="s63" ss:Width="129.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="287.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Alert</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Key information to flag to healthcare providers</Data></Cell>
<Cell><Data ss:Type="String">Prospective warnings of potential issues when providing care to the patient</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s67"/>
<Cell ss:Index="13" ss:StyleID="s67"><Data ss:Type="String">Observation[classCode=ISSUE, moodCode=EVN]</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Alert.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Business identifier</Data></Cell>
<Cell><Data ss:Type="String">Identifier assigned to the alert for external use (outside the FHIR environment)</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s67"/>
<Cell ss:Index="13" ss:StyleID="s67"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Alert.category</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Clinical, administrative, etc.</Data></Cell>
<Cell><Data ss:Type="String">Allows an alert to be divided into different categories like clinical, administrative etc.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s67"/>
<Cell ss:Index="13" ss:StyleID="s67"><Data ss:Type="String">.code</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Alert.status</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">AlertStatus</Data></Cell>
<Cell><Data ss:Type="String">active | inactive | entered in error</Data></Cell>
<Cell><Data ss:Type="String">Supports basic workflow</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s67"/>
<Cell ss:Index="13" ss:StyleID="s67"><Data ss:Type="String">.status</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Alert.subject</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who is alert about?</Data></Cell>
<Cell><Data ss:Type="String">The person who this alert concerns</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.participation[typeCode=SBJ].role[classCode=PAT]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Alert.author</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner | Patient| Device)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Alert creator</Data></Cell>
<Cell><Data ss:Type="String">The person or device that created the alert</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.participation[typeCode=AUT].role</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Alert.note</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Text of alert</Data></Cell>
<Cell><Data ss:Type="String">The textual component of the alert to display to the user</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="7" ss:StyleID="s67"/>
<Cell ss:Index="9" ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>12</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s65"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:AutoFitWidth="0" ss:Width="383.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.9375" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">The identity of a subject to list alerts for</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Alert.subject</Data></Cell>
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75" ss:Span="1"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="107.25"/>
<Column ss:AutoFitWidth="0" ss:Width="275.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Management</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">AlertStatus</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Indicates whether this alert is active and needs to be displayed to a user, or whether it is no longer needed or entered in error</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">static</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">#alert-status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>0</ActiveRow>
<ActiveCol>3</ActiveCol>
<RangeSelection>C4</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="alert-status">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="14.0625">
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">active</Data></Cell>
<Cell><Data ss:Type="String">A current alert that should be displayed to a user. A system may use the category to determine which roles should view the alert</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">inactive</Data></Cell>
<Cell><Data ss:Type="String">The alert does not need to be displayed any more</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">entered in error</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The alert was added in error, and should no longer be displayed</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>5</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,876 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Brian Postlethwaite</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-01-06T01:24:45Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>7440</WindowHeight>
<WindowWidth>19350</WindowWidth>
<WindowTopX>1140</WindowTopX>
<WindowTopY>0</WindowTopY>
<TabRatio>683</TabRatio>
<ActiveSheet>3</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#C0C0C0" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s73" ss:Parent="s62">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s78">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s79">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s80">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="14" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:Width="198"/>
<Column ss:StyleID="s63" ss:Width="29.25"/>
<Column ss:StyleID="s63" ss:Width="23.25"/>
<Column ss:StyleID="s63" ss:Width="60"/>
<Column ss:StyleID="s63" ss:Width="27"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="231"/>
<Column ss:StyleID="s63" ss:Width="164.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="219"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="328.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="14" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="255.75"
ss:Span="1"/>
<Column ss:Index="17" ss:StyleID="s63" ss:Width="89.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">iCal Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell><Data ss:Type="String">Prov Mapping</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">AppointmentResponse</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">VEVENT</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75">
<Cell><Data ss:Type="String">AppointmentResponse.identifier</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">External Ids for this item</Data></Cell>
<Cell><Data ss:Type="String">This records identifiers associated with this appointment concern that are defined by business processed and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation)</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s68"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">UID</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75">
<Cell><Data ss:Type="String">AppointmentResponse.appointment</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Appointment)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">Parent appointment that this response is replying to</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">AppointmentResponse.participantType</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ParticipantType</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Role of participant in the appointment</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">n/a</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">AppointmentResponse.individual</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">A Person of device that is participating in the appointment, usually Practitioner, Patient, RelatedPerson or Device</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Should this be multiple? And move to a child enitity</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s73"><Data ss:Type="String">PID-3-Patient ID List</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">ATTENDEE: (Need to provide the common name CN and also the MAILTO properties from the practitioner resource)</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">AppointmentResponse.participantStatus</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ParticipantStatus</Data></Cell>
<Cell><Data ss:Type="String">accepted | declined | tentative | in-process | completed | needs-action</Data></Cell>
<Cell><Data ss:Type="String">Participation status of the Patient</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">ATTENDEE;CN=&quot;Brian Postlethwaite&quot;;RSVP=TRUE:mailto:BPostlethwaite@data.com (rsvpparam | partstatparam)</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">AppointmentResponse.comment</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Additional comments about the appointment</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">COMMENT</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="27.75">
<Cell><Data ss:Type="String">AppointmentResponse.start</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">instant</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Date/Time that the appointment is to take place</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">AppointmentResponse.end</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">instant</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Date/Time that the appointment is to conclude</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">!AppointmentResponse.schedule</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Schedule</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The recurrence schedule for the appointment. The end date in the schedule marks the end of the recurrence(s), not the end of an individual appointment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">!AppointmentResponse.timezone</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The timezone that the times are to be converted to. Required for recurring appointments to remain accurate where the schedule makes the appointment cross a daylight saving boundry</Data></Cell>
<Cell><Data ss:Type="String">The timezone should be a value referenced from a timezone database</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">AppointmentResponse.lastModifiedBy</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Practitioner|Patient|RelatedPerson)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who recorded the appointment response</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">IAM-14-Reported By (if patient) / IAM-18-Statused By Person (if practitioner)&#10;</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">AppointmentResponse.lastModified</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Date when the response was recorded or last updated</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">IAM-20-Statused at Date/Time</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">DTSTAMP</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s74" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s74" ss:Width="14.25"/>
<Column ss:StyleID="s74" ss:Width="126"/>
<Column ss:StyleID="s74" ss:Width="96"/>
<Column ss:StyleID="s74" ss:Width="234.75"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="140.25"/>
<Column ss:StyleID="s74" ss:Width="320.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>20</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75" ss:Span="1"/>
<Column ss:Index="6" ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s65"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Aggregations</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="14.0625">
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
<Cell ss:Index="4" ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<RangeSelection>R2C1:R2C7</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="29" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:AutoFitWidth="0" ss:Width="383.25"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="189.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.9375" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">partstatus</Data></Cell>
<Cell><Data ss:Type="String">The overall status of the appointment</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">AppointmentResponse.participantStatus</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">The subject that the appointment response replies for</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">AppointmentResponse.individual</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">appointment</Data></Cell>
<Cell><Data ss:Type="String">The appointment that the response is attached to</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">AppointmentResponse.appointment</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="179.25"/>
<Column ss:AutoFitWidth="0" ss:Width="265.5"/>
<Column ss:Width="47.25"/>
<Column ss:AutoFitWidth="0" ss:Width="264.75"/>
<Column ss:AutoFitWidth="0" ss:Width="275.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ParticipantStatus</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The Participation status of an appointment</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#participantstatus</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="participantstatus">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="27.75"/>
<Column ss:AutoFitWidth="0" ss:Width="84.75"/>
<Column ss:AutoFitWidth="0" ss:Width="354"/>
<Column ss:AutoFitWidth="0" ss:Width="255"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">accepted</Data></Cell>
<Cell><Data ss:Type="String">The appointment participant has accepted that they can attend the appointment at the time specified in the AppointmentResponse</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">declined</Data></Cell>
<Cell><Data ss:Type="String">The appointment participant has declined the appointment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">tentative</Data></Cell>
<Cell><Data ss:Type="String">The appointment participant has tentatively accepted the appointment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">in-process</Data></Cell>
<Cell><Data ss:Type="String">The participant has in-process the appointment</Data></Cell>
<Cell><Data ss:Type="String">The implication of this is often that the subject is likely to have travel or other time unavailable before/after this appointment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell><Data ss:Type="String">completed</Data></Cell>
<Cell><Data ss:Type="String">The participant has completed the appointment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell><Data ss:Type="String">needs-action</Data></Cell>
<Cell><Data ss:Type="String">This is the intitial status of an appointment participant until a participant has replied. It implies that there is no commitment for the appointment</Data></Cell>
</Row>
<Row ss:Index="10" ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="108"/>
<Column ss:AutoFitWidth="0" ss:Width="237"/>
<Column ss:AutoFitWidth="0" ss:Width="179.25"/>
<Column ss:AutoFitWidth="0" ss:Width="99"/>
<Column ss:AutoFitWidth="0" ss:Width="258.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2C1:R2C5</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:Width="60.75"/>
<Column ss:Width="356.25"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="273.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">General Person Example</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">appointmentresponse-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s80"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,713 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Brian Postlethwaite</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-05-06T17:28:08Z</LastSaved>
<Version>15.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>3855</WindowHeight>
<WindowWidth>14490</WindowWidth>
<WindowTopX>1140</WindowTopX>
<WindowTopY>0</WindowTopY>
<TabRatio>683</TabRatio>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#C0C0C0" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</Style>
<Style ss:ID="s73" ss:Parent="s62">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s78">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"/>
</Style>
<Style ss:ID="s79">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:Width="198"/>
<Column ss:StyleID="s63" ss:Width="29.25"/>
<Column ss:StyleID="s63" ss:Width="23.25"/>
<Column ss:StyleID="s63" ss:Width="60"/>
<Column ss:StyleID="s63" ss:Width="27"/>
<Column ss:StyleID="s63" ss:Width="303"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="66.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="503.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s63" ss:Width="72"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="14" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="344.25"/>
<Column ss:Index="16" ss:StyleID="s63" ss:Width="89.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="87.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">iCal Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell><Data ss:Type="String">Prov Mapping</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Availability</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">(informative) A container for slot(s) of time that may be available for booking appointments</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Schedule</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">BEGIN:VFREEBUSY … END:VFREEBUSY&#10;(If your fhir server provides this information via calDAV, then you may want to include addressing information in a URL section, and with the search, a DTSTART and DTEND component can be included to indicate the range of time that has been covered in the collection of slots, where these overlap the resources period values. For all slots that reference this resource, include a FREEBUSY row for each slot)</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Availability.identifier</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">External Ids for this item</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s68"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">UID</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="27.75">
<Cell><Data ss:Type="String">Availability.type</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ActType</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The schedule type can be used for the categorization of healthcare services or other appointment types</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">n/a</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Availability.actor</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The resource this availability resource is providing availability information for. These are expected to usually be one of HealthcareService, Location, Practitioner, Device, Patient or RelatedPerson</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">ATTENDEE:MAILTO:john_public@host2.com&#10;This can be populated with a value from the referenced resource</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Availability.planningHorizon</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The period of time that the slots that are attached to this availability resource cover (even if none exist). These cover the amount of time that an organization's planning horizon; the interval for which they are currently accepting appointments. This does not define a &quot;template&quot; for planning outside these dates</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s73"><Data ss:Type="String">DTSTART:20131201T003000Z&#10;DTEND:2014030101T003000Z</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Availability.comment</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Comments on the availability to describe any extended information. Such as custom constraints on the slot(s) that may be associated</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">COMMENT:(comment)&#10;If there is no comment, then the line can be excluded from the iCalendar entry</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Availability.lastModified</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">When this availability was created, or last revised</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s73"><Data ss:Type="String">DTSTAMP:19970901T083000Z&#10;(Server may consider updating this date to the latest date on the slots)</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>6</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s74" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s74" ss:Width="14.25"/>
<Column ss:StyleID="s74" ss:Width="126"/>
<Column ss:StyleID="s74" ss:Width="96"/>
<Column ss:StyleID="s74" ss:Width="234.75"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="140.25"/>
<Column ss:StyleID="s74" ss:Width="320.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>20</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75" ss:Span="1"/>
<Column ss:Index="6" ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s65"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Aggregations</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="14.0625">
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
<Cell ss:Index="4" ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<RangeSelection>R2C1:R2C7</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="27" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:AutoFitWidth="0" ss:Width="383.25"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="189.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.9375" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">actor</Data></Cell>
<Cell><Data ss:Type="String">The individual(HealthcareService, Practitioner, Location, ...) to find an availability for</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Availability.actor</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell><Data ss:Type="String">The type of appointments that can be booked into associated slot(s)</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Availability.type</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Search for availability resources that have a period that contains this date specified</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Availability.planningHorizon</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="179.25"/>
<Column ss:Width="249.75"/>
<Column ss:Width="47.25"/>
<Column ss:AutoFitWidth="0" ss:Width="264.75"/>
<Column ss:AutoFitWidth="0" ss:Width="275.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">ActType</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">The schedule type can be used for the categorization of healthcare services or other appointment types&#10;(This is an example set, not an incomplete - TO BE UDPATED)</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">http://hl7.org/fhir/v3/vs/ActCode</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="108"/>
<Column ss:AutoFitWidth="0" ss:Width="237"/>
<Column ss:AutoFitWidth="0" ss:Width="179.25"/>
<Column ss:AutoFitWidth="0" ss:Width="99"/>
<Column ss:AutoFitWidth="0" ss:Width="258.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2C1:R2C5</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:Width="103.5"/>
<Column ss:Width="356.25"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="273.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Physio Example</Data></Cell>
<Cell><Data ss:Type="String">Example of an availability resource</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">availability-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,755 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-10-15T03:51:08Z</LastSaved>
<Version>12.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s73" ss:Parent="s62">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s78">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="7" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s63" ss:Width="29.25"/>
<Column ss:StyleID="s63" ss:Width="22.5"/>
<Column ss:StyleID="s63" ss:Width="60"/>
<Column ss:StyleID="s63" ss:Width="27"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Basic</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Resource for non-supported content</Data></Cell>
<Cell><Data ss:Type="String">Basic is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest</Data></Cell>
<Cell><Data ss:Type="String">Z-resource, Extension-resource, Custom-resource</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Need some way to safely (without breaking interoperability) allow implementers to exchange content not supported by the initial set of declared resources.</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s67"><Data ss:Type="String">Act, Entity or Role</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Basic.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Business identifier</Data></Cell>
<Cell><Data ss:Type="String">Identifier assigned to the resource for business purposes, outside the context of FHIR</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s67"><Data ss:Type="String">./identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell><Data ss:Type="String">Basic.code</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">BasicResourceType</Data></Cell>
<Cell><Data ss:Type="String">Kind of Resource</Data></Cell>
<Cell><Data ss:Type="String">Identifies the 'type' of resource - equivalent to the resource name for other resources.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s78"><Data ss:Type="String">Must be able to distinguish different types of &quot;basic&quot; resources.</Data></Cell>
<Cell><Data ss:Type="String">Because resource references will only be able to indicate 'Basic', the type of reference will need to be specified in a Profile identified as part of the resource. Refer to the resource notes section for information on appropriate terminologies for this code.</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">./code</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Basic.subject</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Identifies the </Data></Cell>
<Cell><Data ss:Type="String">Identifies the patient, practitioner, device or any other resource that is the &quot;focus&quot; of this resoruce.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"><Data ss:Type="String">Needed for partitioning the resource by Patient.</Data></Cell>
<Cell><Data ss:Type="String">Optional as not all resources potential resources will have subjects. Resources associated with multiple subjects can handle this via extension.</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">./participation[typeCode='SBJ'] (possibly through a ControlAct and Role)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Basic.author</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Practitioner|Patient|RelatedPerson)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who created</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Indicates who was responsible for creating the resource instance</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">Needed for partitioning the resource</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">./participation[typeCode='SUB'] (possibly through a ControlAct and Role)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Basic.created</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">When created</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Identifies when the resource was first created</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">Allows ordering resource instances by time</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">./participation[typeCode='AUT']/time (possibly through a ControlAct and Role)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>8</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s65"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:Width="51"/>
<Column ss:Width="69.75"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Basic.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">created</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Basic.created</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Basic.code</Data></Cell>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>300</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="99"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:Width="48.75"/>
<Column ss:Width="45"/>
<Column ss:Width="146.25"/>
<Column ss:Width="244.5"/>
<Column ss:Width="144.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">BasicResourceType</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Codes for identifying types of resources not yet defined by FHIR</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Value set</Data></Cell>
<Cell><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-basic-resource-type</Data></Cell>
<Cell><Data ss:Type="String">HL7-maintained set of codes for &quot;Basic&quot; resources</Data></Cell>
<Cell><Data ss:Type="String">Preferred for interoperability</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s76"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="75"/>
<Column ss:AutoFitWidth="0" ss:Width="215.25"/>
<Column ss:Width="123"/>
<Column ss:Width="102"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s77"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s71"><Data ss:Type="String">Referral</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">How 'basic' can be used for future resources - in this case referral</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">referral</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">basic-example.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s71"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s71"><Data ss:Type="String">ClassModel</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">How 'Basic' can be used for essoteric resources - in this case, a UML class model</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">classModel</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">basic-example2.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s71"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"><Data ss:Type="String">Narrative Example</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">A resource that uses all narrative features for testing rendering applications</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">basic-example-narrative</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">basic-example-narrative.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s71"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:Index="6" ss:StyleID="s71"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,685 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Paul</LastAuthor>
<Created>2012-03-19T11:15:11Z</Created>
<LastSaved>2014-10-10T20:51:00Z</LastSaved>
<Version>15.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
<Colors>
<Color>
<Index>39</Index>
<RGB>#E3E3E3</RGB>
</Color>
</Colors>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>4125</WindowHeight>
<WindowWidth>17205</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#AEAAAA" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Font ss:FontName="Arial Unicode MS" x:Family="Swiss"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Arial Unicode MS" x:Family="Swiss"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="23" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="121.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="25.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="36.75" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="239.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="105"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="3"/>
<Column ss:Index="14" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Summary</Data></Cell>
<Cell><Data ss:Type="String">USAGE</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Condition</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s65">
<Cell ss:StyleID="s63"><Data ss:Type="String">Contract</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">A formal agreement between parties regarding the conduct of business, exchange of information or other matters.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell ss:StyleID="s68"><Data ss:Type="String">Contract.subject</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Reference(Patient|Organization)</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">Who and/or what this is about</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Who and/or what this is about</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.type</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ContractType</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Type of contract (Privacy-Security, Agreement, Insurance) </Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Type of contract (Privacy-Security, Agreement, Insurance) </Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.subtype</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ContractSubtype</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">More specific type of contract (Privacy, Disclosure-Authorization, etc)</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">More specific type of contract (Privacy, Disclosure-Authorization, Advanced-Directive, DNR, Authorization-to-Treat)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.issued</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s66"><Data ss:Type="String">When this was issued</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">When this was issued.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.applies</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s66"><Data ss:Type="String">Relevant time/time-period when applicable</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Relevant time/time-period when applicable</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.author</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner|RelatedPerson|Organization)</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s69"><Data ss:Type="String">Contract author or responsible party</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Contract author or responsible party.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.grantor</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner|RelatedPerson|Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">First Party or delegator</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">First Party to the contract, may be the party who confers or delegates the rights defined in the contract.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.grantee</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner|RelatedPerson|Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Second Party or delegatee</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">The Second party to the contract, may be the party who accepts obligations or be that to which rights are delegated.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.witness</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner|RelatedPerson|Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Witness to the contract</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Who witnesses the contract.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Contract identifier</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Unique Id for this contract.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.term</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data></Cell>
<Cell><Data ss:Type="String">Terms</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Contract provisions</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">A contract provision.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.term.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Term identifier</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Unique Id for this particular term. </Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.term.type</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ContractTermType</Data></Cell>
<Cell><Data ss:Type="String">Term type</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The type of the term.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.term.subtype</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ContractTermSubType</Data></Cell>
<Cell><Data ss:Type="String">Term subtype</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The subttype of the term which is appropriate to the term type.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.term.subject</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Subject for the Term</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Who or what the contract term is about.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.term.text</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Human readable term text</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Human readable form of the term of the contract.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.friendly</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Human readable contract text</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Friendly Human readable form (might be a reference to the UI used to capture the contract)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.legal</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Legal contract text</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Legal text in Human readable form </Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Contract.rule</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Computable contract text</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Computable Policy rules (e.g. XACML, DKAL, SecPal)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<VerticalResolution>0</VerticalResolution>
</Print>
<Zoom>110</Zoom>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>9</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>22</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s73">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<RangeSelection>R1</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="63.75"/>
<Column ss:AutoFitWidth="0" ss:Width="138" ss:Span="1"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="102"/>
<Column ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:AutoFitWidth="0" ss:Width="69.75"/>
<Row ss:AutoFitHeight="0" ss:Height="21.75" ss:StyleID="s73">
<Cell><Data ss:Type="String">Event Code</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Notes</Data></Cell>
<Cell><Data ss:Type="String">Request Resources</Data></Cell>
<Cell><Data ss:Type="String">Response Resources</Data></Cell>
<Cell><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="110.25">
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>14</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:AutoFitWidth="0" ss:Width="164.25"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s73">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s68"><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">The identity of the target of the contract</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Contract.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">!request</Data></Cell>
<Cell><Data ss:Type="String">The identity of the insurer</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Acknowledgement.request</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s68"><Data ss:Type="String">!origidentifier</Data></Cell>
<Cell><Data ss:Type="String">The primary identifier of the insured</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Acknowledgement.requestIdentifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">!organization</Data></Cell>
<Cell><Data ss:Type="String">The organization who generated this resource</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Acknowledgement.organization</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s75" ss:DefaultRowHeight="15">
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="114.75"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="258"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="156"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="214.5"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s73"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ContractType</Data></Cell>
<Cell><Data ss:Type="String">List of overall contract codes</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-contract-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ContractSubtype</Data></Cell>
<Cell><Data ss:Type="String">Detailed codes within the above</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-contract-subtype</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ContractTermType</Data></Cell>
<Cell><Data ss:Type="String">Detailed codes for the types of contract provisions</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-contract-term-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ContractTermSubType</Data></Cell>
<Cell><Data ss:Type="String">Detailed codes for the subtypes of contract provisions</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-contract-term-subtype</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>11</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="150"/>
<Column ss:AutoFitWidth="0" ss:Width="247.5"/>
<Column ss:AutoFitWidth="0" ss:Width="48.75"/>
<Column ss:AutoFitWidth="0" ss:Width="182.25"/>
<Column ss:AutoFitWidth="0" ss:Width="75.75"/>
<Column ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s73"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">General-Contract</Data></Cell>
<Cell><Data ss:Type="String">General Contract Example</Data></Cell>
<Cell><Data ss:Type="String">C-123</Data></Cell>
<Cell><Data ss:Type="String">contract-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>4</ActiveCol>
<RangeSelection>R5C5:R6C5</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Removed Elements">
<Table ss:ExpandedColumnCount="20" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="168.75"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="63.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s73"><Data ss:Type="String">Element</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Card.</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Inv.</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Must Understand</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">UML</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Short Name</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Requirements</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Condition</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">To Do</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s73"><Data ss:Type="String">Vocab</Data></Cell>
<Cell ss:Index="20" ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>18</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,935 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-07-23T15:33:30Z</LastSaved>
<Version>12.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<ActiveSheet>7</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Hyperlink">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#0000FF"
ss:Underline="Single"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s72" ss:Parent="s62">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="15" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:Width="189"/>
<Column ss:StyleID="s63" ss:Width="29.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="45"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="45.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s63" ss:Width="48.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="16" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="103.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Summary</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">??? Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Contraindication</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Clinical issue with action</Data></Cell>
<Cell><Data ss:Type="String">Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.</Data></Cell>
<Cell><Data ss:Type="String">DDI, drug-drug interaction, DetectedIssue, Alert</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">Observation[classCode=ALRT, moodCode=EVN)</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">N/A</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Contraindication.patient</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Associated patient</Data></Cell>
<Cell><Data ss:Type="String">Indicates the patient whose record the contraindication is associated with.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">While the subject could be inferred by tracing the subject of the implicated resources, it's useful to have a direct link for query purposes.</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">.participation[typeCode=SBJ].role[classCode=PAT]</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Contraindication.category</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ContraindicationCategory</Data></Cell>
<Cell><Data ss:Type="String">E.g. Drug-drug, duplicate therapy, etc.</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Identifies the general type of issue identified.</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">type</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Contraindication.severity</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ContraindicationSeverity</Data></Cell>
<Cell><Data ss:Type="String">high | medium | low</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Indicates the degree of importance associated with the identified issue based on the potential impact on the patient</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">severity</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">.inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=SEV].value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Contraindication.implicated</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Problem resource</Data></Cell>
<Cell><Data ss:Type="String">Indicates the resource representing the current activity or proposed activity that </Data></Cell>
<Cell><Data ss:Type="String">cause</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">There's an implicit constraint on the number of implicated resources based on Contraindication.type. E.g. For drug-drug, there would be more than one. For timing, there would typically only be one.</Data></Cell>
<Cell><Data ss:Type="String">.outboundRelationship[typeCode=SUBJ].target[moodCode=EVN, INT]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Contraindication.detail</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Description and context</Data></Cell>
<Cell><Data ss:Type="String">A textual explanation of the contraindication</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Should focus on information not covered elsewhere as discrete data - no need to duplicate the narrative.</Data></Cell>
<Cell><Data ss:Type="String">.text</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Contraindication.date</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">When identified</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">The date or date-time when the contraindication was initially identified.</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">No-one can be responsible for mitigation prior to the issue being identified</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">.effectiveTime</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Contraindication.author</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Practitioner|Device)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who found issue?</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Identifies the provider or software that identified the </Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">.participation[typeCode=AUT].role[classCode=ASSIGNED]</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">Is this 80%?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Contraindication.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Unique id for the contraindication</Data></Cell>
<Cell><Data ss:Type="String">Business identifier associated with the contraindication record</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Allows linking instances of the same contraindication found on different servers</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Contraindication.reference</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Authority for issue</Data></Cell>
<Cell><Data ss:Type="String">The literature, knowledge-base or similar reference that describes the propensity for the contraindication identified</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.outboundRelationship[typeCode=INST].target[classCode=ALRT, moodCode=DEFN].text.uri</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">Is this in the 80%?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Contraindication.mitigation</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">350;0</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Step taken to address</Data></Cell>
<Cell><Data ss:Type="String">Indicates an action that has been taken or is committed to to reduce or eliminate the likelihood of the risk identified by the contraindicaiton from manifesting. Can also reflect an observation of known mitigating factors that may reduce/eliminate the need for any action.</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.outboundRelationship[typeCode=MITG].target[classCode=ACT, moodCode=EVN]</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">How much, if any of this is in the 80%?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Contraindication.mitigation.action</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ContraindicationMitigationAction</Data></Cell>
<Cell><Data ss:Type="String">What mitigation?</Data></Cell>
<Cell><Data ss:Type="String">Describes the action that was taken or the observation that was made that reduces/eliminates the risk associated with the identified contraindication</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">The &quot;text&quot; component can be used for detail or when no appropriate code exists.</Data></Cell>
<Cell><Data ss:Type="String">.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Contraindication.mitigation.date</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Date committed</Data></Cell>
<Cell><Data ss:Type="String">Indicates when the mitigating action was documented</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">This may not be the same as when the mitigating step was actually taken</Data></Cell>
<Cell><Data ss:Type="String">.effectiveTime</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Contraindication.mitigation.author</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who is committing?</Data></Cell>
<Cell><Data ss:Type="String">Identifies the practitioner who determined the mitigation and takes responsibility for the mitigation step occurring</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">.participation[typeCode=AUT].role[classCode=ASSIGNED]</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>8</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>11</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s68" ss:Width="165"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>0</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:Width="180.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s65"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Category</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>0</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:AutoFitWidth="0" ss:Width="132"/>
<Column ss:AutoFitWidth="0" ss:Width="210"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">category</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Contraindication.category</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Contraindication.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Contraindication.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">patient</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Contraindication.patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">implicated</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Contraindication.implicated</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:StyleID="s70" ss:Width="164.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="47.25"/>
<Column ss:StyleID="s70" ss:Width="213.75"/>
<Column ss:StyleID="s70" ss:Width="172.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s69">
<Cell ss:StyleID="s63"><Data ss:Type="String">ContraindicationCategory</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Codes identifying the general type of contraindication. E.g. Drug-drug interaction, Timing issue, Duplicate therapy, etc.</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell><Data ss:Type="String">valueset-contraindication-category</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s63"><Data ss:Type="String">ContraindicationMitigationAction</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Codes describing steps taken to resolve the contraindication or other circumstances that mitigate the risk associated with the contraindication. E.g. 'added concurrent therapy', 'prior therapy documented', etc.</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell><Data ss:Type="String">valueset-contraindication-mitigation-action</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s63"><Data ss:Type="String">ContraindicationSeverity</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Indicates the potential degree of impact of the identified issue on the patient</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:StyleID="s72" ss:HRef="http://hl7.org/fhir/v3/vs/SeverityObservation"><Data
ss:Type="String">http://hl7.org/fhir/v3/vs/SeverityObservation</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s73" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s73" ss:Width="88.5"/>
<Column ss:StyleID="s73" ss:Width="327.75"/>
<Column ss:StyleID="s73" ss:Width="57"/>
<Column ss:StyleID="s73" ss:Width="205.5"/>
<Column ss:StyleID="s73" ss:Width="27.75"/>
<Column ss:StyleID="s73" ss:Width="39.75"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Drug-drug</Data></Cell>
<Cell><Data ss:Type="String">Drug-drug interaction between prescription and medication statement</Data></Cell>
<Cell><Data ss:Type="String">ddi</Data></Cell>
<Cell><Data ss:Type="String">contraindication-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Duplicate Therapy</Data></Cell>
<Cell><Data ss:Type="String">Diagnostic order is placed when a recent image of the same body site already exists</Data></Cell>
<Cell><Data ss:Type="String">duplicate</Data></Cell>
<Cell><Data ss:Type="String">contraindication-example-dup.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Drug-allergy</Data></Cell>
<Cell><Data ss:Type="String">Patient is allergic to an inactive ingredient in an ordered medication</Data></Cell>
<Cell><Data ss:Type="String">allergy</Data></Cell>
<Cell><Data ss:Type="String">contraindication-example-allergy.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Lab order</Data></Cell>
<Cell><Data ss:Type="String">Lab order is contraindicated based on a patient's existing medication</Data></Cell>
<Cell><Data ss:Type="String">lab</Data></Cell>
<Cell><Data ss:Type="String">contraindication-example-lab.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="183.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="contraindication-severity">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="14.25"/>
<Column ss:Index="3" ss:Width="225"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">System</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">H</Data></Cell>
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/vs/SeverityObservation</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">M</Data></Cell>
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/vs/SeverityObservation</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">L</Data></Cell>
<Cell><Data ss:Type="String">http://hl7.org/fhir/v3/vs/SeverityObservation</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,741 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Paul</LastAuthor>
<Created>2012-03-19T11:15:11Z</Created>
<LastSaved>2014-09-09T00:38:43Z</LastSaved>
<Version>15.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
<Colors>
<Color>
<Index>39</Index>
<RGB>#E3E3E3</RGB>
</Color>
</Colors>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9945</WindowHeight>
<WindowWidth>23610</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#AEAAAA" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s69" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s70" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#D0CECE" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Interior ss:Color="#D0CECE" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFF00" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s78">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s79">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s80">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s81">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
</Style>
<Style ss:ID="s82">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="22" ss:ExpandedRowCount="16" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="163.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="25.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="36.75" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="126.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="88.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="58.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="51"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="3"/>
<Column ss:Index="22" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="243"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Alias</Data></Cell>
<Cell><Data ss:Type="String">Summary</Data></Cell>
<Cell><Data ss:Type="String">Condition</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">CDAnet v4 Mapping</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">CPhA3 (Pharmacy)</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Coverage</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Insurance or medical plan</Data></Cell>
<Cell><Data ss:Type="String">Financial instrument which may be used to pay for or reimburse for health care products and services.</Data></Cell>
<Cell><Data ss:Type="String">Health care programs and insurers are significant payors of health service costs</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Coverage</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Coverage.issuer</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">An identifier for the plan issuer</Data></Cell>
<Cell><Data ss:Type="String">The program or plan underwriter or payor.</Data></Cell>
<Cell><Data ss:Type="String">Need to identify the issuer to target for processing and for coordination of benefit processing.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">IN1-3-insurance company ID</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">A05</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">C.30</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75" ss:StyleID="s72">
<Cell ss:StyleID="s71"><Data ss:Type="String">Coverage.period</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Coverage start and end dates</Data></Cell>
<Cell><Data ss:Type="String">Time period during which the coverage is in force. A missing start date indicates the start date isn't known, a missing end date means the coverage is continuing to be in force.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">IN1-12-plan effective date / IN1-13-plan expiration date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Coverage.type</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell><Data ss:Type="String">CoverageType</Data></Cell>
<Cell><Data ss:Type="String">Type of coverage</Data></Cell>
<Cell><Data ss:Type="String">The type of coverage: social program, medical plan, accident coverage (workers compensation, auto), group health. </Data></Cell>
<Cell><Data ss:Type="String">The order of application of coverages is dependent on the types of coverage.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">IN1-15-plan type</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Coverage.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">The primary coverage ID</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The main (and possibly only) identifier for the coverage - often referred to as a Subscriber Id, Certificate number or Personal Health Number or Case ID.</Data></Cell>
<Cell><Data ss:Type="String">This value may uniquely identify the coverage or it may be used in conjunction with the additional identifiers below.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">IN1-2-health plan ID</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">C02</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">C.32, C.33, C.39</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Coverage.group</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">An identifier for the group</Data></Cell>
<Cell><Data ss:Type="String">Identifies a style or collective of coverage issues by the underwriter, for example may be used to identify a class of coverage or employer group. May also be referred to as a Policy or Group ID.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">IN1-8-group number</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">C11 (Division,Section)</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">C.31</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Coverage.plan</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">An identifier for the plan</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Identifies a style or collective of coverage issues by the underwriter, for example may be used to identify a class of coverage or employer group. May also be referred to as a Policy or Group ID.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">IN1-35-company plan code</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">C01</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Coverage.subplan</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">An identifier for the subsection of the plan</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Identifies a sub-style or sub-collective of coverage issues by the underwriter, for example may be used to identify a specific employer group within a class of employers. May be referred to as a Section or Division ID.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">IN1-10-insured's group emp ID</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Coverage.dependent</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">The dependent number</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">A unique identifier for a dependent under the coverage.</Data></Cell>
<Cell><Data ss:Type="String">For some coverage a single identifier is issued to the PolicyHolder and dependent number issues to each to each of their dependents to track and manage the plan.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String"> - No exact V2.x equivalent concept seems to exist; instance relationship can be inferred if ( ( PID-3-patient ID list ≠ IN1-49-insured's ID number ) &amp; ( Ǝ IN2-72-patient's relationship to insured ) )</Data></Cell>
<Cell><Data ss:Type="String">C17</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Coverage.sequence</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The plan instance or sequence counter</Data></Cell>
<Cell><Data ss:Type="String">An optional counter for a particular instance of the identified coverage which increments upon each renewal.</Data></Cell>
<Cell><Data ss:Type="String">Some coverage, for example social plans, may be offered in short time increments, for example for a week or a month at a time, so while the rest of the plan details and identifiers may remain constant over time, the instance is incremented with each renewal and provided to the covered party on their 'card'.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="16" ss:StyleID="s69"><Data ss:Type="String">No V2.x equivalent concept seems to exist</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">D11</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Coverage.subscriber</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">Planholder information</Data></Cell>
<Cell><Data ss:Type="String">The party who 'owns' the insurance contractual relationship to the policy or to whom the benefit of the policy is due.</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">IN1-16, 18, 19-name of insured, address, date of birth</Data></Cell>
<Cell><Data ss:Type="String">D01 through D09</Data></Cell>
<Cell><Data ss:Type="String">C.35</Data></Cell>
<Cell><Data ss:Type="String">D01 through D09</Data></Cell>
<Cell><Data ss:Type="String">C.35</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Coverage.network</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Insurer network</Data></Cell>
<Cell><Data ss:Type="String">The identifier for a community of providers.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">D10</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Coverage.contract</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Contract)</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s72"><Data ss:Type="String">Contract details</Data></Cell>
<Cell><Data ss:Type="String">The policy(s) which constitute this insurance coverage.</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">IN1-16, 18, 19-name of insured, address, date of birth</Data></Cell>
<Cell><Data ss:Type="String">D01 through D09</Data></Cell>
<Cell><Data ss:Type="String">C.35</Data></Cell>
<Cell><Data ss:Type="String">D01 through D09</Data></Cell>
<Cell><Data ss:Type="String">C.35</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s74">
<Cell ss:StyleID="s73"><Data ss:Type="String">!Coverage Details</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s75"><Data ss:Type="String">!Coverage.dependant</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Covered parties</Data></Cell>
<Cell><Data ss:Type="String">Dependants for whom this coverage provides health insurance.</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<VerticalResolution>0</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>9</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>6</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>12</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s77" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<RangeSelection>R1</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="63.75"/>
<Column ss:AutoFitWidth="0" ss:Width="138" ss:Span="1"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="102"/>
<Column ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:AutoFitWidth="0" ss:Width="69.75"/>
<Row ss:AutoFitHeight="0" ss:Height="21.75" ss:StyleID="s65">
<Cell><Data ss:Type="String">Event Code</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Notes</Data></Cell>
<Cell><Data ss:Type="String">Request Resources</Data></Cell>
<Cell><Data ss:Type="String">Response Resources</Data></Cell>
<Cell><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="110.25">
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s78"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2C1:R4C6</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="9" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="152.25"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">issuer</Data></Cell>
<Cell><Data ss:Type="String">The identity of the insurer</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.issuer</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell><Data ss:Type="String">The primary identifier of the insured</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell><Data ss:Type="String">The kind of coverage</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">plan</Data></Cell>
<Cell><Data ss:Type="String">A plan or policy identifier</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.plan</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subplan</Data></Cell>
<Cell><Data ss:Type="String">Sub-plan identifier</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.subplan</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">group</Data></Cell>
<Cell><Data ss:Type="String">Group identifier</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.group</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">dependent</Data></Cell>
<Cell><Data ss:Type="String">Dependent number</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.dependent</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">sequence</Data></Cell>
<Cell><Data ss:Type="String">Sequence number</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">Coverage.sequence</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>24</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s80" ss:DefaultRowHeight="15">
<Column ss:StyleID="s80" ss:AutoFitWidth="0" ss:Width="114.75"/>
<Column ss:StyleID="s80" ss:AutoFitWidth="0" ss:Width="201.75"/>
<Column ss:StyleID="s80" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s80" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s80" ss:AutoFitWidth="0" ss:Width="214.5"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s63"><Data ss:Type="String">CoverageType</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">The type of insurance: public health, worker compensation; private accident, auto, private health, etc.)</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">http://hl7.org/fhir/v3/vs/ActCoverageTypeCode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s78"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="150"/>
<Column ss:AutoFitWidth="0" ss:Width="247.5"/>
<Column ss:AutoFitWidth="0" ss:Width="48.75"/>
<Column ss:AutoFitWidth="0" ss:Width="182.25"/>
<Column ss:AutoFitWidth="0" ss:Width="75.75"/>
<Column ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">General-Primary</Data></Cell>
<Cell><Data ss:Type="String">General Person Primary Coverage Example</Data></Cell>
<Cell><Data ss:Type="String">9876B1</Data></Cell>
<Cell><Data ss:Type="String">coverage-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">General-Secondary</Data></Cell>
<Cell><Data ss:Type="String">General Person Secondary Coverage Example</Data></Cell>
<Cell><Data ss:Type="String">7546D</Data></Cell>
<Cell><Data ss:Type="String">coverage-example-2.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Removed Elements">
<Table ss:ExpandedColumnCount="21" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="168.75"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="63.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Element</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Card.</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Inv.</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Must Understand</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">UML</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Short Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Requirements</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Condition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">To Do</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"><Data ss:Type="String">Vocab</Data></Cell>
<Cell ss:Index="20" ss:StyleID="s82"><Data ss:Type="String">Example</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s64"><Data ss:Type="String">Coverage.planHolder.language</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">Written language for communications</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The language to be used for written communications.</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:Index="19"><Data ss:Type="String">Was inside the planHolder </Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">&lt;language&gt;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="21"><Data ss:Type="String"> &lt;system&gt;http://hl7.org/vocab/v3/Language&lt;/system&gt;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="270">
<Cell ss:StyleID="s64"><Data ss:Type="String">Coverage.exception</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">List of policy exception codes</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">Special policy coverage may be extended to: students and persons with special needs. (May be coded using only the field above)</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:Index="21"><Data ss:Type="String"> &lt;code&gt;EN&lt;/code&gt;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="330">
<Cell ss:StyleID="s64"><Data ss:Type="String">Coverage.authorization</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String">List of authorization codes </Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">List of special authorization codes which may apply to the services being reported.</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">When authorizations or predeterminations have been received for services then the references should be supplied when reporting on or claiming for those services.</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"><Data ss:Type="String"> &lt;authorization&gt;RC74387546&lt;/authorization&gt;</Data></Cell>
<Cell ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<RangeSelection>R5C1:R5C13</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,567 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:15:30Z</Created>
<LastSaved>2014-01-25T03:08:12Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s72">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="16" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="197.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Device</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">An instance of a manufactured thing that is used in the provision of healthcare</Data></Cell>
<Cell><Data ss:Type="String">This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health.</Data></Cell>
<Cell><Data ss:Type="String">Allows institutions to track their devices. </Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Device</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Device.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Instance id from manufacturer, owner and others</Data></Cell>
<Cell><Data ss:Type="String">Identifiers assigned to this device by various organizations. The most likely organizations to assign identifiers are the manufacturer and the owner, though regulatory agencies may also assign an identifier. The identifiers identify the particular device, not the kind of device</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Often fixed to the device as a barcode. May include names given to the device in local usage. Note that some of the barcodes affixed to the device identify its type, not its instance</Data></Cell>
<Cell><Data ss:Type="String">.id</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Device.type</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">DeviceKind</Data></Cell>
<Cell><Data ss:Type="String">What kind of device this is</Data></Cell>
<Cell><Data ss:Type="String">A kind of this device</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Device.manufacturer</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of device manufacturer</Data></Cell>
<Cell><Data ss:Type="String">A name of the manufacturer</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.playedRole[typeCode=MANU].scoper.name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Device.model</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Model id assigned by the manufacturer</Data></Cell>
<Cell><Data ss:Type="String">The &quot;model&quot; - an identifier assigned by the manufacturer to identify the product by its type. This number is shared by the all devices sold as the same type</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.playedRole[typeCode=MANU].code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Device.version</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Version number (i.e. software)</Data></Cell>
<Cell><Data ss:Type="String">The version of the device, if the device has multiple releases under the same model, or if the device is software or carries firmware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.softwareName (included as part)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Device.expiry</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">date</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Date of expiry of this device (if applicable)</Data></Cell>
<Cell><Data ss:Type="String">Date of expiry of this device (if applicable)</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.expirationTime</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Device.udi</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">FDA Mandated Unique Device Identifier</Data></Cell>
<Cell><Data ss:Type="String">FDA Mandated Unique Device Identifier. Use the human readable information (the content that the user sees, which is sometimes different to the exact syntax represented in the barcode) - see http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htm</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">The unique identifier may identify an instance of a device uniquely, or it may just identify the type of the device. A portion of the UDI - the DI part - can be extracted from the UDI when required, and used to look up information about the device through the GUDID</Data></Cell>
<Cell><Data ss:Type="String">.id[where root is root for UDI]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Device.lotNumber</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Lot number of manufacture</Data></Cell>
<Cell><Data ss:Type="String">Lot number assigned by the manufacturer</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Alphanumeric Maximum 20</Data></Cell>
<Cell><Data ss:Type="String">.lotNumberText</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">!Device.serialNumber</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Serial number assigned by the manufacturer</Data></Cell>
<Cell><Data ss:Type="String">The serial number assigned by the organization when the device was manufactured</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Alphanumeric Maximum 20</Data></Cell>
<Cell><Data ss:Type="String">.playedRole[typeCode=MANU].id</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Device.owner</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Organization responsible for device</Data></Cell>
<Cell><Data ss:Type="String">An organization that is responsible for the provision and ongoing maintenance of the device</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.playedRole[typeCode=OWN].scoper</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Device.location</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Location)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Where the resource is found</Data></Cell>
<Cell><Data ss:Type="String">The resource may be found in a literal location (i.e. GPS coordinates), a logical place (i.e. &quot;in/with the patient&quot;), or a coded location</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.playedRole[typeCode=LOCE].scoper</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Device.patient</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">If the resource is affixed to a person</Data></Cell>
<Cell><Data ss:Type="String">Patient information, if the resource is affixed to a person</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.playedRole[typeCode=USED].scoper.playedRole[typeCode=PAT]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Device.contact</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">ContactPoint</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Details for human/organization for support</Data></Cell>
<Cell><Data ss:Type="String">Contact details for an organization or a particular human that is responsible for the device</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">used for troubleshooting etc.</Data></Cell>
<Cell><Data ss:Type="String">.scopedRole[typeCode=CON].player</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Device.url</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Network address to contact device</Data></Cell>
<Cell><Data ss:Type="String">A network address on which the device may be contacted directly</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">If the device is running a FHIR server, the network address should be the root URL from which a conformance statement may be retrieved</Data></Cell>
<Cell><Data ss:Type="String">.telecom</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>300</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>15</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s66" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="69.75" ss:Span="1"/>
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="93.75" ss:Span="1"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:AutoFitWidth="0" ss:Width="111"/>
<Column ss:AutoFitWidth="0" ss:Width="69"/>
<Row ss:AutoFitHeight="0" ss:Height="22.5">
<Cell ss:StyleID="s67"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Category</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"><Data ss:Type="String">admin-notify</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Notification</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">(see Patient)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">Device</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="9" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="273"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="16.5">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell><Data ss:Type="String">The type of the device</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="16.5">
<Cell><Data ss:Type="String">manufacturer</Data></Cell>
<Cell><Data ss:Type="String">The manufacturer of the device</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.manufacturer</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">model</Data></Cell>
<Cell><Data ss:Type="String">The model of the device</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.model</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">organization</Data></Cell>
<Cell><Data ss:Type="String">The organization responsible for the device</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.owner</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">location</Data></Cell>
<Cell><Data ss:Type="String">A location, where the resource is found</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.location</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">patient</Data></Cell>
<Cell><Data ss:Type="String">Patient information, if the resource is affixed to a person</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">udi</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Device.udi</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="65.25" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="287.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s70">
<Cell><Data ss:Type="String">DeviceKind</Data></Cell>
<Cell><Data ss:Type="String">Defines the nature of the device and the kind of functionality/services/behavior that may be expected from it</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">http://hit-testing.nist.gov:13110/rtmms/index.htm</Data></Cell>
<Cell><Data ss:Type="String">RTM Management Service</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="6" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="146.25"/>
<Column ss:AutoFitWidth="0" ss:Width="104.25"/>
<Column ss:Width="177.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s64"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">General</Data></Cell>
<Cell><Data ss:Type="String">General Device Example</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">device-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ihd-pcd</Data></Cell>
<Cell><Data ss:Type="String">Example for IHE-PCD example</Data></Cell>
<Cell><Data ss:Type="String">ihe-pcd</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">device-example-ihe-pcd.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Feeding tube</Data></Cell>
<Cell><Data ss:Type="String">Example of device</Data></Cell>
<Cell><Data ss:Type="String">f001</Data></Cell>
<Cell><Data ss:Type="String">device-example-f001-feedingtube.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,483 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:15:30Z</Created>
<LastSaved>2013-06-22T05:33:48Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6225</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6195</WindowTopY>
<ActiveSheet>4</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Interior/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="13" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="294"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="35.25"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">DeviceObservationReport</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Describes the data produced by a device at a point in time</Data></Cell>
<Cell><Data ss:Type="String">Describes the data produced by a device at a point in time</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Observation[classCode=OBS, moodCode=EVN, code &lt; DeviceObservation]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">DeviceObservationReport.instant</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">instant</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When the data values are reported</Data></Cell>
<Cell><Data ss:Type="String">The point in time that the values are reported</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.effectiveTime</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">DeviceObservationReport.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">As assigned by the source device</Data></Cell>
<Cell><Data ss:Type="String">An identifier assigned to this observation bu the source device that made the observation</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.id</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">DeviceObservationReport.source</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Device)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifies/describes where the data came from</Data></Cell>
<Cell><Data ss:Type="String">Identification information for the device that is the source of the data</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=PFM].role[player.classCode=DEV]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.subject</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient|Device|Location)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Subject of the measurement</Data></Cell>
<Cell><Data ss:Type="String">The subject of the measurement</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=SBJ].role</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.virtualDevice</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">left</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s68"><Data ss:Type="String">A medical-related subsystem of a medical device</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">A medical-related subsystem of a medical device</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.outboundRelationship[typeCode='COMP'].target[classCode=OBS, moodCode=EVN, code &lt; &quot;virtual device compartment&quot;]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.virtualDevice.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">VirtalDeviceKind</Data></Cell>
<Cell><Data ss:Type="String">Describes the compartment</Data></Cell>
<Cell><Data ss:Type="String">Describes the compartment</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.virtualDevice.channel</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">down</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Groups related data items</Data></Cell>
<Cell><Data ss:Type="String">Groups together physiological measurement data and derived data</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.outboundRelationship[typeCode='COMP'].target[classCode=OBS, moodCode=EVN, code &lt; &quot;channel&quot;]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.virtualDevice.channel.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">DeviceChannelKind1</Data></Cell>
<Cell><Data ss:Type="String">Describes the channel</Data></Cell>
<Cell><Data ss:Type="String">Describes the channel</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=PFM].role.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.virtualDevice.channel.metric</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Piece of data reported by device</Data></Cell>
<Cell><Data ss:Type="String">A piece of measured or derived data that is reported by the machine</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s67">
<Cell ss:StyleID="s66"><Data ss:Type="String">DeviceObservationReport.virtualDevice.channel.metric.observation</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Observation)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The data for the metric</Data></Cell>
<Cell><Data ss:Type="String">The data for the metric</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s70">
<Cell ss:StyleID="s69"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<VerticalResolution>0</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="59.25"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="366"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="239.25"/>
<Column ss:Index="6" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="384.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>0</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2:R5</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="69.75"/>
<Column ss:AutoFitWidth="0" ss:Width="93.75" ss:Span="1"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:AutoFitWidth="0" ss:Width="111"/>
<Column ss:AutoFitWidth="0" ss:Width="69"/>
<Row ss:AutoFitHeight="0" ss:Height="22.5">
<Cell ss:StyleID="s72"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="273"/>
<Column ss:AutoFitWidth="0" ss:Width="339.75"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">DeviceObservationReport.source</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">The compatment code</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">DeviceObservationReport.virtualDevice.code</Data></Cell>
<Cell ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">channel</Data></Cell>
<Cell><Data ss:Type="String">The channel code</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">DeviceObservationReport.virtualDevice.channel.code</Data></Cell>
<Cell ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">observation</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">DeviceObservationReport.virtualDevice.channel.metric.observation</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">DeviceObservationReport.subject</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s74" ss:DefaultRowHeight="15">
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="65.25" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="287.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Conformance</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">VirtalDeviceKind</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Describes the virtual device</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">preferred</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">http://hit-testing.nist.gov:13110/rtmms/index.htm</Data></Cell>
<Cell><Data ss:Type="String">RTM Management Service</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">DeviceChannelKind1</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Describes the channel</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">preferred</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">http://hit-testing.nist.gov:13110/rtmms/index.htm</Data></Cell>
<Cell><Data ss:Type="String">RTM Management Service</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,816 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:15:30Z</Created>
<LastSaved>2014-01-15T19:53:08Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9690</WindowHeight>
<WindowWidth>16605</WindowWidth>
<WindowTopX>1440</WindowTopX>
<WindowTopY>750</WindowTopY>
<TabRatio>1000</TabRatio>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s69" ss:Parent="s63">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s72" ss:Parent="s63">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s78">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R14C15"
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="15" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s64" ss:DefaultRowHeight="15">
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="207.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="56.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="35.25"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="133.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="258"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="171.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:Height="45" ss:StyleID="s66">
<Cell><Data ss:Type="String">Element</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Card.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Inv.</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">UML</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Type</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Binding</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Short Name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Definition</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Requirements</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Comments</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">To Do</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="String">DocumentManifest</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s67"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s67"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s67"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s67"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A manifest that defines a set of documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A manifest that defines a set of documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Act[classCode=FOLDER, moodCode=EVN]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="String">DocumentManifest.masterIdentifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Unique Identifier for the set of documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A single identifier that uniquely identifies this manifest. Principally used to refer to the manifest in non-FHIR contexts</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">id [need a list semantic to indicate order matters]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="String">DocumentManifest.identifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Identifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Other identifiers for the manifest</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Other identifiers associated with the document, including version independent, source record and workflow related identifiers</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Other identifiers can also include Identifiers may be Accession Numbers, Order Numbers, Referral Request &#10;Identifiers, XDS Workflow Instance Identifiers</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.id / .setId</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">TXA-16-Unique Document File Name?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="120">
<Cell><Data ss:Type="String">DocumentManifest.subject</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">1..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient|Practitioner|Group|Device)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The subject of the set of documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Who or what the set of documents is about. The documents can be about a person, (patient or healthcare practitioner), a device (i.e. machine) or even a group of subjects (such as a document about a herd of farm animals, or a set of patients that share a common exposure). If the documents cross more than one subject, then more than one subject is allowed here (unusual use case)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=SBJ].role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="String">DocumentManifest.recipient</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient|Practitioner|Organization)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Intended to get notified about this set of documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A patient, practitioner, or organization for which this set of documents is intended</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="11"><Data ss:Type="String">How the recipient receives the document set or is notified of it is up to the implementation. This element is just a statement of intent</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.participation[typeCode=IRCP].role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="75" ss:StyleID="s70">
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">CodeableConcept</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">DocumentSetType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">What kind of document set this is</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Specifies the kind of this set of documents (e.g. Patient Summary, Discharge Summary, Prescription, etc.). The type of a set of documents may be the same as one of the documents in it - especially if there is only one - but it may be wider</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s72"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="String">DocumentManifest.author</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Reference(Practitioner|Device|Patient|RelatedPerson)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Who and/or what authored the document</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Identifies who is responsible for adding the information to the document</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="11" ss:StyleID="s73"><Data ss:Type="String">Not necessarily who did the actual data entry (i.e. typist) or who was the source (informant)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.participation[typeCode=AUT].role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="String">DocumentManifest.created</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">dateTime</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">When this document manifest created</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">When the document manifest was created for submission to the server (not necessarily the same thing as the actual resource last modified time, since it may be modified, replicated etc)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Creation time is used for tracking, organizing versions and searching. This is the creation time of the document set, not the documents on which it is based</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.participation[typeCode=AUT].time</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="String">DocumentManifest.source</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">uri</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The source system/application/software</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Identifies the source system, application, or software that produced the document manifest</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=PFM].time</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="String">DocumentManifest.status</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">1..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">code</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">DocumentReferenceStatus</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">current | superceded | entered in error</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The status of this document manifest </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.statusCode</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="String">DocumentManifest.supercedes</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="4"><Data ss:Type="String">Y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(DocumentManifest)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">If this document manifest replaces another</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Whether this document manifest replaces another</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.outboundRelationship[typeCode=RPLC].target</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="String">DocumentManifest.description</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">string</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Human-readable description (title)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Human-readable description of the source document. This is sometimes known as the &quot;title&quot;</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Helps humans to assess whether the document is of interest</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">What the document is about, rather than a terse summary of the document. It is commonly the case that records do not have a title and are collectively referred to by the display name of Record code (e.g. a &quot;consultation&quot; or &quot;progress note&quot;).</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">.title</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s69"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="30" ss:StyleID="s70">
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.confidentiality</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">CodeableConcept</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">DocumentConfidentiality</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Sensitivity of set of documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A code specifying the level of confidentiality of this set of Documents</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The document set is at least as confidential as the most confidential of the documents in it</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">.confidentialityCode</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s72"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="String">DocumentManifest.content</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(DocumentReference|Binary|Media)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Contents of this set of documents</Data></Cell>
<Cell><Data ss:Type="String">The list of resources that describe the parts of this document reference. Usually, these would be document references, but direct references to binary attachments and images are also allowed</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.outboundRelationship[typeCode=COMP].target</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<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>300</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
<AutoFilter x:Range="R1C1:R14C15"
xmlns="urn:schemas-microsoft-com:office:excel">
</AutoFilter>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s76" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="96.75"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="341.25"/>
<Column ss:Index="6" ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="327.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s66">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s65"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>9</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="69.75"/>
<Column ss:AutoFitWidth="0" ss:Width="93.75" ss:Span="1"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:AutoFitWidth="0" ss:Width="111"/>
<Column ss:AutoFitWidth="0" ss:Width="69"/>
<Row ss:AutoFitHeight="0" ss:Height="22.5">
<Cell ss:StyleID="s77"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>41</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="12" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="78.75"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:Index="6" ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="207.75"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s66">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.masterIdentifier | DocumentManifest.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">recipient</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.recipient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">author</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.author</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">created</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.created</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">status</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">supersedes</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.supercedes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">description</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">confidentiality</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.confidentiality</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">content</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">DocumentManifest.content</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="36" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s78" ss:DefaultRowHeight="15">
<Column ss:StyleID="s78" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s78" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s78" ss:AutoFitWidth="0" ss:Width="65.25" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s78" ss:AutoFitWidth="0" ss:Width="159"/>
<Column ss:StyleID="s78" ss:AutoFitWidth="0" ss:Width="287.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">DocumentSetType</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Specifies the kind of a set of documents (e.g. Patient Summary, Discharge Summary, Prescription, etc.). The type of a set of documents may be the same as one of the documents in the set - especially if there is only one - but it may be wider</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s73"><Data ss:Type="String">valueset-docset-codes</Data></Cell>
</Row>
<Row ss:Index="11" ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s74"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s74"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="document-reference-status">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="69"/>
<Column ss:AutoFitWidth="0" ss:Width="431.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">current</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">This is the current reference for this document</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">superceded</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">This reference has been superseded by another reference</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">entered in error</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">This reference was created in error</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="91.5"/>
<Column ss:AutoFitWidth="0" ss:Width="174"/>
<Column ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:AutoFitWidth="0" ss:Width="98.25"/>
<Column ss:AutoFitWidth="0" ss:Width="135.75"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>7</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,964 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-08-06T15:54:56Z</LastSaved>
<Version>12.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>8715</WindowHeight>
<WindowWidth>21840</WindowWidth>
<WindowTopX>1500</WindowTopX>
<WindowTopY>3615</WindowTopY>
<TabRatio>705</TabRatio>
<ActiveSheet>6</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Hyperlink">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#0000FF"
ss:Underline="Single"/>
</Style>
<Style ss:ID="s63" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s64" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#C0C0C0" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s74" ss:Parent="s64">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s79" ss:Parent="s63">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
</Style>
<Style ss:ID="s80">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#FF0000"/>
</Style>
<Style ss:ID="s82" ss:Parent="s62">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s83">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s84">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s85">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s86">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="18" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s65" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s66" ss:AutoFitWidth="0" ss:Width="215.25"/>
<Column ss:StyleID="s65" ss:Width="29.25"/>
<Column ss:StyleID="s65" ss:Width="23.25"/>
<Column ss:StyleID="s65" ss:Width="60"/>
<Column ss:StyleID="s65" ss:Width="27"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="107.25"/>
<Column ss:StyleID="s65" ss:Width="134.25"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="294"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="52.5"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="192.75"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s67">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">Summary</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">FamilyHistory</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Information about patient's relatives, relevant for patient</Data></Cell>
<Cell><Data ss:Type="String">Significant health events and conditions for people related to the subject relevant in the context of care for the subject</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"/>
<Cell ss:Index="14" ss:StyleID="s69"><Data ss:Type="String">Observation[classCode=OBS, moodCode=EVN]</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Not in scope for v2</Data></Cell>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">FamilyHistory.identifier</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s71"><Data ss:Type="String">External Id(s) for this record</Data></Cell>
<Cell><Data ss:Type="String">This records identifiers associated with this family history record that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation)</Data></Cell>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">Need to allow connection to a wider workflow</Data></Cell>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">id</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">FamilyHistory.subject</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Patient history is about</Data></Cell>
<Cell><Data ss:Type="String">The person who this history concerns</Data></Cell>
<Cell><Data ss:Type="String">Proband</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">participation[typeCode=SBJ].role</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">FamilyHistory.date</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When history was captured/updated</Data></Cell>
<Cell><Data ss:Type="String">The date (and possibly time) when the family history was taken</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Allows determination of how current the summary is</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">participation[typeCode=AUT].time</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">FamilyHistory.note</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Additional details not covered elsewhere</Data></Cell>
<Cell><Data ss:Type="String">Conveys information about family history not specific to individual relations.</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=ActCode#ANNGEN].value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">FamilyHistory.relation</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Relative described by history</Data></Cell>
<Cell><Data ss:Type="String">The related person. Each FamilyHistory resource contains the entire family history for a single person.</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">participation[typeCode=SBJ].role[classCode=PAT].player[classCode&lt;LIV, moodCode=INSTANCE].scopedRole</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="42">
<Cell><Data ss:Type="String">FamilyHistory.relation.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">The family member described</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">This will either be a name or a description. E.g. &quot;Aunt Susan&quot;, &quot;my cousin with the red hair&quot;</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s75"><Data ss:Type="String">Allows greater ease in ensuring the same person is being talked about</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s75"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="69.9375">
<Cell><Data ss:Type="String">FamilyHistory.relation.relationship</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">FamilialRelationship</Data></Cell>
<Cell><Data ss:Type="String">Relationship to the subject</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">The type of relationship this person has to the patient (father, mother, brother etc.)</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="69.9375">
<Cell><Data ss:Type="String">FamilyHistory.relation.born[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Period | date | string</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">(approximate) date of birth</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">The actual or approximate date of birth of the relative</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"><Data ss:Type="String">Allows calculation of the relative's age</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">player[classCode=LIV, determinerCode=INSTANCE]. birthDate (could be URG)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">FamilyHistory.relation.age[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Age | Range | string</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">(approximate) age</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">The actual or approximate age of the relative at the time the family history is recorded</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"><Data ss:Type="String">While age can be calculated from date of birth, sometimes recording age directly is more natureal for clinicians.</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">participation[typeCode=SBJ].act[classCode=OBS,moodCode=EVN, code=&quot;age&quot;].value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">FamilyHistory.relation.deceased[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">boolean | Age | Range | date | string</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Dead? How old/when?</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">If this resource is indicating that the related person is deceased, then an indicator of whether the person is deceased (yes) or not (no) or the age or age range or description of age at death - can be indicated here. If the reason for death is known, then it can be indicated in the outcome code of the condition - in this case the deceased property should still be set.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">player[classCode=LIV, determinerCode=INSTANCE].deceasedInd, deceasedDate (could be URG)&#10;&#10;For age, you'd hang an observation off the role</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">FamilyHistory.relation.note</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">General note about related person </Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">This property allows a non condition-specific note to the made about the related person. Ideally, the note would be in the condition property, but this is not always possible.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=ActCode#ANNGEN].value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">FamilyHistory.relation.condition</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Condition that the related person had</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">The significant Conditions (or condition) that the family member had. This is a repeating section to allow a system to represent more than one condition per resource, though there is nothing stopping multiple resources - one per condition.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=ActCode#ASSERTION, value&lt;Diagnosis]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="56.0625">
<Cell><Data ss:Type="String">FamilyHistory.relation.condition.type</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Condition suffered by relation</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">The actual condition specified. Could be a coded condition (like MI or Diabetes) or a less specific string like 'cancer' depending on how much is known about the condition and the capabilities of the creating system</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">.value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">FamilyHistory.relation.condition.outcome</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">ConditionOutcome</Data></Cell>
<Cell><Data ss:Type="String">deceased | permanent disability | etc.</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">Indicates what happened as a result of this condition. If the condition resulted in death, deceased date is captured on the relation.</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">outboundRelationship[typeCode=OUTC)].target[classCode=OBS, moodCode=EVN, code=ActCode#ASSERTION].value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell><Data ss:Type="String">FamilyHistory.relation.condition.onset[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Age | Range | string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When condition first manifested</Data></Cell>
<Cell><Data ss:Type="String">Either the age of onset, range of approximate age or descriptive string can be recorded. For conditions with multiple occurrences, this describes the first known occurrence.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Age of onset of a condition in relatives is predictive of risk for the patient</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;Subject Age at measurement&quot;, value&lt;Diagnosis].value[@xsi:typeCode='TS' or 'IVL_TS']&#10;&#10;Use originalText for string&#10;</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Define/find appropriate observation code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">FamilyHistory.relation.condition.note</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Extra information about condition</Data></Cell>
<Cell><Data ss:Type="String">An area where general notes can be placed about this specific condition.</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=ActCode#ANNGEN].value</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s76" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s76" ss:Width="14.25"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s67">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s70"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Age or Birthdate</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">FamilyHistory.relation</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Can have age[x] or birth[x], but not both</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">not (*[starts-with(local-name(.), 'age')] and *[starts-with(local-name(.), 'birth')])</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s67"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="40" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:AutoFitWidth="0" ss:Width="383.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.9375" ss:StyleID="s67">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">The identity of a subject to list family history items for</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">FamilyHistory.subject</Data></Cell>
<Cell ss:StyleID="s80"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">FamilyHistory.date</Data></Cell>
</Row>
<Row ss:Index="5" ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s66"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:Width="102"/>
<Column ss:Width="390.75"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:AutoFitWidth="0" ss:Width="275.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="44.0625" ss:StyleID="s72">
<Cell><Data ss:Type="String">FamilialRelationship</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">The nature of the relationship between the patient and the related person being described in the family history</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s82" ss:HRef="http://hl7.org/fhir/v3/vs/FamilyMember"><Data
ss:Type="String">http://hl7.org/fhir/v3/vs/FamilyMember</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">ConditionOutcome</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">The result of the condition for the patient. E.g. death, permanent disability, temporary disability, etc.</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">unbound</Data></Cell>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s77" ss:DefaultRowHeight="15">
<Column ss:StyleID="s77" ss:Width="101.25"/>
<Column ss:StyleID="s77" ss:Width="223.5" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s77" ss:Width="192.75"/>
<Column ss:StyleID="s77" ss:Width="63"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s83"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Source</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">GeneticPedigree</Data></Cell>
<Cell><Data ss:Type="String">Adds additional information to a family history supporting both the capture of mother/father relationships as well as additional observations necessary to enable genetics-based risk analysis for patients</Data></Cell>
<Cell><Data ss:Type="String">familyhistory-genetics-profile-spreadsheet.xml</Data></Cell>
<Cell><Data ss:Type="String">familyhistory-genetics-pedigree.xml</Data></Cell>
<Cell><Data ss:Type="String">spreadsheet</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="14.0625">
<Column ss:Width="69"/>
<Column ss:StyleID="s84" ss:AutoFitWidth="0" ss:Width="300.75"/>
<Column ss:Width="50.25"/>
<Column ss:Width="246"/>
<Column ss:Width="27.75"/>
<Column ss:Width="84"/>
<Column ss:Width="39.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s67"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Profile</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="String">Father</Data></Cell>
<Cell><Data ss:Type="String">Basic Example. Describes the fathers death at age 74 from a heart attack</Data></Cell>
<Cell><Data ss:Type="String">father</Data></Cell>
<Cell><Data ss:Type="String">familyhistory-example.xml</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="56.0625">
<Cell><Data ss:Type="String">Mother</Data></Cell>
<Cell><Data ss:Type="String">Mother died from a stroke aged 56. Brother with diabetes.</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">mother</Data></Cell>
<Cell><Data ss:Type="String">familyhistory-example-mother.xml</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Familyhistory</Data></Cell>
<Cell><Data ss:Type="String">Real-world patient example</Data></Cell>
<Cell><Data ss:Type="String">f201</Data></Cell>
<Cell><Data ss:Type="String">familyhistory-example-f201-roel.xml</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">genetic</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Simple genetic family history</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">genetic</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">familyhistory-genetics-profile-example.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s77"><Data ss:Type="String">GeneticPedigree</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">annie</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">Example for risk assessment</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">prognosis</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">familyhistory-genetics-profile-annie-example.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s77"><Data ss:Type="String">GeneticPedigree</Data></Cell>
<Cell ss:StyleID="s86"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,717 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>tom</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-07-19T20:23:25Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>5535</WindowHeight>
<WindowWidth>22455</WindowWidth>
<WindowTopX>5670</WindowTopX>
<WindowTopY>6735</WindowTopY>
<ActiveSheet>3</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="17" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="263.25"/>
<Column ss:StyleID="s62" ss:Width="29.25"/>
<Column ss:StyleID="s62" ss:Width="22.5"/>
<Column ss:StyleID="s62" ss:Width="60"/>
<Column ss:StyleID="s62" ss:Width="27"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Resource that records the patient's expression of a gene</Data></Cell>
<Cell><Data ss:Type="String">Resource that records the patient's expression of a gene</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.subject</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Subject described by the resource</Data></Cell>
<Cell><Data ss:Type="String">Subject described by the resource</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.gene</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Gene of study</Data></Cell>
<Cell><Data ss:Type="String">Gene of study</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.gene.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Identifier of the gene</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the gene</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="13.5">
<Cell><Data ss:Type="String">GeneExpression.gene.coordinate</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Coordinate of the gene</Data></Cell>
<Cell><Data ss:Type="String">Coordinate of the gene</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.gene.coordinate.chromosome</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Chromosome</Data></Cell>
<Cell><Data ss:Type="String">Chromosome</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.gene.coordinate.start</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Start position</Data></Cell>
<Cell><Data ss:Type="String">Start position</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.gene.coordinate.end</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">End position</Data></Cell>
<Cell><Data ss:Type="String">End position</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.microarray</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Microarray)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Microarray that studies the gene</Data></Cell>
<Cell><Data ss:Type="String">Microarray that studies the gene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">RNA-Seq that studies the gene</Data></Cell>
<Cell><Data ss:Type="String">RNA-Seq that studies the gene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq.inputLab</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(SequencingLab)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input lab for the RNA-Seq</Data></Cell>
<Cell><Data ss:Type="String">Input lab for the RNA-Seq</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq.inputAnalysis</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(SequencingAnalysis)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input analysis for the RNA-Seq</Data></Cell>
<Cell><Data ss:Type="String">Input analysis for the RNA-Seq</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq.expression</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Expression level of the gene in RPKM</Data></Cell>
<Cell><Data ss:Type="String">Expression level of the gene in RPKM</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq.isoform</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Isoform of the gene</Data></Cell>
<Cell><Data ss:Type="String">Isoform of the gene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq.isoform.identity</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifier of the isoform</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the isoform</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneExpression.rnaSeq.isoform.expression</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Expression level of the isoform in RPKM</Data></Cell>
<Cell><Data ss:Type="String">Expression level of the isoform in RPKM</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<VerticalResolution>0</VerticalResolution>
<NumberofCopies>0</NumberofCopies>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>16</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Repeats</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">subject being described by the resource</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">GeneExpression.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">gene</Data></Cell>
<Cell><Data ss:Type="String">Id of the gene</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">GeneExpression.gene.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">coordinate</Data></Cell>
<Cell><Data ss:Type="String">Coordinate of the gene</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">singel</Data></Cell>
<Cell><Data ss:Type="String">GeneExpression.gene.coordinate</Data></Cell>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>0</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Identity</Data></Cell>
<Cell><Data ss:Type="String">Filename</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example microarray for ordinary patient</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">geneexpression-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>14</ActiveRow>
<ActiveCol>15</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,962 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>tom</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-07-21T17:22:46Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>5655</WindowHeight>
<WindowWidth>22455</WindowWidth>
<WindowTopX>5670</WindowTopX>
<WindowTopY>6615</WindowTopY>
<ActiveSheet>3</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="43" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="663"/>
<Column ss:StyleID="s62" ss:Width="29.25"/>
<Column ss:StyleID="s62" ss:Width="22.5"/>
<Column ss:StyleID="s62" ss:Width="60"/>
<Column ss:StyleID="s62" ss:Width="27"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="85.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="687"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell><Data ss:Type="String">LOINC</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Analysis of a patient's genetic test</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Analysis of a patient's genetic test</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="17"><Data ss:Type="String">55233-1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.subject</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Subject of the analysis</Data></Cell>
<Cell><Data ss:Type="String">Subject of the analysis</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.author</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Reference(Practitioner)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Author of the analysis</Data></Cell>
<Cell><Data ss:Type="String">Author of the analysis</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.date</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Date when result of the analysis is updated</Data></Cell>
<Cell><Data ss:Type="String">Date when result of the analysis is updated</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Summary of the analysis</Data></Cell>
<Cell><Data ss:Type="String">Summary of the analysis</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="17"><Data ss:Type="String">55232-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.geneticDiseaseAssessed</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Genetic disease being assesed</Data></Cell>
<Cell><Data ss:Type="String">Genetic disease being assesed</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="17"><Data ss:Type="String">51967-8</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.medicationAssesed</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Medication being assesed</Data></Cell>
<Cell><Data ss:Type="String">Medication being assesed</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="17"><Data ss:Type="String">51963-7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="13.5">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.genomicSourceClass</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Class of the source of sample</Data></Cell>
<Cell><Data ss:Type="String">Class of the source of sample</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="17"><Data ss:Type="String">48002-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.geneticDiseaseAnalysisOverallInterpretation</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Overall interpretation of the patient's genotype on the genetic disease being assesed</Data></Cell>
<Cell><Data ss:Type="String">Overall interpretation of the patient's genotype on the genetic disease being assesed</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51968-6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.geneticDiseaseAnalysisOverallCarrierInterpertation</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Carrier status of the patietn</Data></Cell>
<Cell><Data ss:Type="String">Carrier status of the patietn</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51964-5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.drugEfficacyAnalysisOverallInterpretation</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4" ss:StyleID="Default"/>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Analysis on the efficacy of the drug being assessed</Data></Cell>
<Cell><Data ss:Type="String">Analysis on the efficacy of the drug being assessed</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51971-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.geneticAnalysisSummaryReport</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Summary of the analysis</Data></Cell>
<Cell><Data ss:Type="String">Summary of the analysis</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51969-4</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisSummary.reasonForStudyAdditionalNote</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Additional notes</Data></Cell>
<Cell><Data ss:Type="String">Additional notes</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">53577-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Coverage of the genetic test</Data></Cell>
<Cell><Data ss:Type="String">Coverage of the genetic test</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51956-1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">DNA studied</Data></Cell>
<Cell><Data ss:Type="String">DNA studied</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">53041-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.genomicReferenceSequenceIdentifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Genomic reference sequence identifier</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the sequence represented in NCBI genomic nucleotide RefSeq IDs with their version number</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48013-7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.regionOfInterestStart</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Start position of the DNA region of interest</Data></Cell>
<Cell><Data ss:Type="String">Start position of the DNA region of interest</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">69545-2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.regionOfInterestStop</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">End position of the DNA region of interest</Data></Cell>
<Cell><Data ss:Type="String">End position of the DNA region of interest</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">69546-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.referenceNucleotide</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Genotype of the region in reference genome</Data></Cell>
<Cell><Data ss:Type="String">Genotype of the region in reference genome</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">69547-8</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.variableNucleotide</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The patient's genotype in the region</Data></Cell>
<Cell><Data ss:Type="String">The patient's genotype in the region</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">69551-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.genechipId</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">ID of the genechip</Data></Cell>
<Cell><Data ss:Type="String">ID of the genechip</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48010-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.genechipManufacturerId</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">ID of manufacturer of the genechip</Data></Cell>
<Cell><Data ss:Type="String">ID of manufacturer of the genechip</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48009-5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.dnaRegionAnalysisTestCoverage.dnaRegionOfInterest.genechipVersion</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Version of the genechip</Data></Cell>
<Cell><Data ss:Type="String">Version of the genechip</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48011-1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Genetic analysis discrete result</Data></Cell>
<Cell><Data ss:Type="String">Genetic analysis discrete result</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">55207-5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">DNA analysis discrete sequence variation</Data></Cell>
<Cell><Data ss:Type="String">DNA analysis discrete sequence variation</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">55208-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.geneIdentifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifier of the gene</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the gene represented in NCBI genomic nucleotide RefSeq IDs with their version number</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48018-6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.genomicReferenceSequenceIdentifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Genomic reference sequence identifier</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the reference sequence represented in NCBI genomic nucleotide RefSeq IDs with their version number</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48013-7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.transcriptReferenceIdentifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifier of the transcript reference identifier</Data></Cell>
<Cell><Data ss:Type="String">Reference transcript represented in NCBI genomic nucleotide RefSeq IDs with their version number</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51958-7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.alleleName</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of the allele</Data></Cell>
<Cell><Data ss:Type="String">Name of the allele</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48008-7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.dnaSequenceVariationIdentifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifier of the DNA variation</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the DNA variation</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48003-8</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.dnaSequenceVariation</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">DNA variation represented in HGVS nomenclature</Data></Cell>
<Cell><Data ss:Type="String">DNA variation represented in HGVS nomenclature</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48004-6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.dnaSequenceVariationType</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Type of the variation</Data></Cell>
<Cell><Data ss:Type="String">Type of the variation</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48019-4</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.aminoAcidChange</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Amino acid change represented in HGVS nomenclature</Data></Cell>
<Cell><Data ss:Type="String">Amino acid change represented in HGVS nomenclature</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48005-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.aminoAcidChangeType</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Type of the amino acid change</Data></Cell>
<Cell><Data ss:Type="String">Type of the amino acid change</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48006-1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.dnaRegionName</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Human-readable name of the DNA region</Data></Cell>
<Cell><Data ss:Type="String">Human-readable name of the DNA region</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">47999-8</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.allellicState</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Allelic state</Data></Cell>
<Cell><Data ss:Type="String">Allelic state</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">53034-5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.genomicSourceClass</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Class of the source of sample</Data></Cell>
<Cell><Data ss:Type="String">Class of the source of sample</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">48002-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.dnaSequenceVariationDisplayName</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Conventional display of the DNA region and its interpretation</Data></Cell>
<Cell><Data ss:Type="String">Conventional display of the DNA region and its interpretation</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">47998-0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.geneticDiseaseSequenceVariationInterpretation</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Interpretation of the genotype's effect on genetic disease</Data></Cell>
<Cell><Data ss:Type="String">Interpretation of the genotype's effect on genetic disease</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">53037-8</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.drugMetabolismSequenceVariationInterpretatioin</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Interpretation of the genotype's effect on the drug's metabolic effect</Data></Cell>
<Cell><Data ss:Type="String">Interpretation of the genotype's effect on the drug's metabolic effect</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">53040-2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.drugEfficacySequenceVariationInterpretation</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Interpretation of the genotype's effect on the drug's efficacy</Data></Cell>
<Cell><Data ss:Type="String">Interpretation of the genotype's effect on the drug's efficacy</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">51961-1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">GeneticAnalysis.geneticAnalysisDiscreteResult.dnaAnalysisDiscreteSequenceVariation.geneticVariantAssessment</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Genotyping result on a known set of mutation</Data></Cell>
<Cell><Data ss:Type="String">Genotyping result on a known set of mutation</Data></Cell>
<Cell ss:Index="17"><Data ss:Type="String">69548-6</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>19</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>8</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>26</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Repeats</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">Subject of the analysis</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">GeneticAnalysis.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">author</Data></Cell>
<Cell><Data ss:Type="String">Author of the analysis</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">GeneticAnalysis.author</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Date when result of the analysis is uploaded</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">GeneticAnalysis.date</Data></Cell>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>0</ActiveRow>
<ActiveCol>3</ActiveCol>
<RangeSelection>C4</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Identity</Data></Cell>
<Cell><Data ss:Type="String">Filename</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example microarray for ordinary patient</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">geneticanalysis-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,985 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-12-12T14:34:38Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6285</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>4140</WindowTopX>
<WindowTopY>1515</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="13" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s63" ss:Width="29.25"/>
<Column ss:StyleID="s63" ss:Width="22.5"/>
<Column ss:StyleID="s63" ss:Width="60"/>
<Column ss:StyleID="s63" ss:Width="27"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="165.75"/>
<Column ss:StyleID="s63" ss:Width="126"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="77.25"
ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="16" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="87.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s65">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Summary</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell><Data ss:Type="String">Prov Mapping</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Group</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Group of multiple entities</Data></Cell>
<Cell><Data ss:Type="String">Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s67"/>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">Entity[determinerCode=&quot;GRP&quot; or determinerCode=&quot;GRP_KIND&quot;]</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">We need determiner codes that indicate we're talking about a group even when we haven't specified a specific quantity</Data></Cell>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Group.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Unique id</Data></Cell>
<Cell><Data ss:Type="String">A unique business identifier for this group</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Allows the group to be referenced</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">unique(./id[displayable=&quot;true&quot; and scope=&quot;OBJ&quot;])</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="195">
<Cell><Data ss:Type="String">Group.type</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupType</Data></Cell>
<Cell><Data ss:Type="String">person | animal | practitioner | device | medication | substance</Data></Cell>
<Cell><Data ss:Type="String">Identifies the broad classification of the kind of resources the group includes</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Identifies what type of resources the group is made up of</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s68"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Color="#000000">person:</Font></B><Font
html:Color="#000000"> ./classCode=&quot;PSN&quot;&#10;&#10;</Font><B><Font
html:Color="#000000">animal: </Font></B><Font html:Color="#000000">./classCode=&quot;ANM&quot;&#10;&#10;</Font><B><Font
html:Color="#000000">device: </Font></B><Font html:Color="#000000">./classCode=&quot;DEV&quot;&#10;&#10;</Font><B><Font
html:Color="#000000">medication: </Font></B><Font html:Color="#000000">./classCode=&quot;MMAT&quot; and ./playedRole[isNormalRole() and classCode=&quot;THER&quot;]&#10;&#10;</Font><B><Font
html:Color="#000000">food: </Font></B><Font html:Color="#000000">./classCode=&quot;FOOD&quot;</Font></ss:Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Do we need &quot;mixed&quot; groups?</Data></Cell>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="195">
<Cell><Data ss:Type="String">Group.actual</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Descriptive or actual</Data></Cell>
<Cell><Data ss:Type="String">If true, indicates that the resource refers to a specific group of real individuals. If false, the group defines a set of intended individuals</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">There are use-cases for groups that define specific collections of individuals, and other groups that define &quot;types&quot; of intended individuals. The requirements for both kinds of groups are similar, so we use a single resource, distinguished by this flag.</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s68"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Color="#000000">true: </Font></B><Font
html:Color="#000000">./determinerCode=&quot;GRP&quot;&#10;&#10;</Font><B><Font
html:Color="#000000">false: </Font></B><Font html:Color="#000000">./determinerCode=&quot;GRP_KIND&quot;</Font></ss:Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Group.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupKind</Data></Cell>
<Cell><Data ss:Type="String">Kind of Group members</Data></Cell>
<Cell><Data ss:Type="String">Provides a specific type of resource the group includes. E.g. &quot;cow&quot;, &quot;syringe&quot;, etc.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">This would generally be omitted for Person resources</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">./code</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Group.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Label for Group</Data></Cell>
<Cell><Data ss:Type="String">A label assigned to the group for human identification and communication</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Used to identify the group in human communication</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">./name[type=&quot;ST&quot;]</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Group.quantity</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">integer</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Number of members</Data></Cell>
<Cell><Data ss:Type="String">A count of the number of resource instances that are part of the group</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Group size is a common defining characteristic</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">./quantity</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Group.characteristic</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Trait of group members</Data></Cell>
<Cell><Data ss:Type="String">Identifies the traits shared by members of the group</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s67"><Data ss:Type="String">Needs to be a generic mechanism for identifying what individuals can be part of a group</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">./playedRole[isNormalRole()]/participation[isNormalParticipation() and typeCode=&quot;SBJ&quot;]/act[isNormalAct and classCode=&quot;OBS&quot; and moodCode=&quot;EVN&quot;]</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Group.characteristic.code</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupCharacteristicKind</Data></Cell>
<Cell><Data ss:Type="String">Kind of characteristic</Data></Cell>
<Cell><Data ss:Type="String">A code that identifies the kind of trait being asserted</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s67"><Data ss:Type="String">Need a formal way of identifying the characteristic being described</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">./code</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Group.characteristic.value[x]</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">CodeableConcept|boolean|Quantity|Range</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupCharacteristicValue</Data></Cell>
<Cell><Data ss:Type="String">Value held by characteristic</Data></Cell>
<Cell><Data ss:Type="String">The value of the trait that holds (or does not hold - see 'exclude') for members of the group</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s67"><Data ss:Type="String">The value of the characteristic is what determines group membership.</Data></Cell>
<Cell><Data ss:Type="String">For Range, it means members of the group have a value that falls somewhere within the specified range.</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">./value</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Group.characteristic.exclude</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Group includes or excludes</Data></Cell>
<Cell><Data ss:Type="String">If true, indicates the characteristic is one that is NOT held by members of the group</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s67"><Data ss:Type="String">Sometimes group membership is determined by characteristics not possessed</Data></Cell>
<Cell><Data ss:Type="String">This is labeled as &quot;Is Modifier&quot; because applications cannot wrongly include excluded members as included or vice versa</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">./valueNegationInd</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="18" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Group.member</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Reference(Patient|Practitioner|Device|Medication|Substance)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who is in group</Data></Cell>
<Cell><Data ss:Type="String">Identifies the resource instances that are members of the group.</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s67"><Data ss:Type="String">Often the only thing of interest about a group is &quot;who's in it&quot;</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s67"><Data ss:Type="String">./scopedRole[isNormalRole() and classCode=&quot;MBR&quot;]/player</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:Index="17"><Data ss:Type="String">Is &quot;group of groups&quot; in the 80%?</Data></Cell>
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="14.25"/>
<Column ss:StyleID="s69" ss:Width="156"/>
<Column ss:StyleID="s69" ss:Width="78"/>
<Column ss:StyleID="s69" ss:Width="252"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="177.75"/>
<Column ss:StyleID="s69" ss:Width="288.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">No members for non-actual</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Group</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Can only have members if group is &quot;actual&quot;</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"><Data ss:Type="String">f:actual/@value='true' or not(exists(f:member))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s67"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Group member type agreement</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Group.member</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Member resource types SHALL agree with group type</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">lower-case(f:type/@value)=parent::f:Group/f:type/@value or (f:type/@value='Patient' and parent::f:Group/f:type/@value=('animal','person'))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s67"><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">No more members than quantity</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Group</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Can't have more members associated with the group than the value specified for &quot;quantity&quot;</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">not(f:quantity) or not(f:member) or not(f:quantity&gt;count(f:member))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s65"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Category</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:StyleID="s71"><Data ss:Type="String">admin-notify</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Notification</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Notification of a change to an administrative resource (either create or update). Note that there is no delete, though some administrative resources have status or period elements for this use</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s71"><Data ss:Type="String">Group</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultColumnWidth="48.75"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s71" ss:Width="66.75"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="300"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="85.5"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="288"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="221.25"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s65">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
<Cell><Data ss:Type="String">Todo</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell><Data ss:Type="String">The type of resources the group contains</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">The kind of resources contained</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">actual</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.actual</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">member</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.member</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">characteristic</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.characteristic.code</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">value</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.characteristic.value[x]</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">exclude</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Group.characteristic.exclude</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">characteristic-value</Data></Cell>
<Cell><Data ss:Type="String">A composite of both characteristic and value</Data></Cell>
<Cell><Data ss:Type="String">composite</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">characteristic &amp; value</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s64"/>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s64"/>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s64"/>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s64"/>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s64"/>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>16</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="123"/>
<Column ss:AutoFitWidth="0" ss:Width="272.25"/>
<Column ss:Width="47.25"/>
<Column ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupKind</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Kind of particular resource. E.g. cow, syringe, lake, etc.</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">unbound</Data></Cell>
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupCharacteristicKind</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">List of characteristics used to describe group members. E.g. gender, age, owner, location, etc.</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">unbound</Data></Cell>
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:Height="30">
<Cell ss:StyleID="s67"><Data ss:Type="String">GroupCharacteristicValue</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Value of descriptive member characteristic. E.g. red, male, pneumonia, caucasian, etc.</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">unbound</Data></Cell>
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">GroupType</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Types of resources that are part of group</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#group-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="group-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:Width="57.75"/>
<Column ss:Width="237"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">person</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Group contains &quot;person&quot; Patient resources</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">animal</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Group contains &quot;animal&quot; Patient resources</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">practitioner</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Group contains healthcare practitioner resources</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">device</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Group contains Device resources</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">medication</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Group contains Medication resources</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">substance</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Group contains Substance resources</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:Width="120"/>
<Column ss:Width="83.25"/>
<Column ss:Width="129.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"><Data ss:Type="String">General</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">General Group Example</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="Number">101</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">group-example.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s71"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:Index="6" ss:StyleID="s71"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:Index="6" ss:StyleID="s71"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:Index="6" ss:StyleID="s71"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<RangeSelection>R3C1:R5C6</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Profiles">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="240" ss:DefaultRowHeight="15">
<Column ss:Width="106.5"/>
<Column ss:Width="202.5"/>
<Column ss:Width="183"/>
<Column ss:Width="63"/>
<Column ss:Width="45"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s65"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s76"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2C1:R2C4</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,899 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-12-28T18:17:06Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9420</WindowHeight>
<WindowWidth>21420</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s28" ss:Name="Neutral">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#993300"/>
<Interior ss:Color="#FFFF99" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s68" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
</Style>
<Style ss:ID="s69" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s72" ss:Parent="s28">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s74" ss:Parent="s63">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s77">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s78" ss:Parent="s62">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
</Style>
<Style ss:ID="s79">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s80">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="20" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s64" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="500.25"/>
<Column ss:StyleID="s64" ss:Width="29.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="62.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="8" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="16" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="159.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s66">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell><Data ss:Type="String">CDA Mapping</Data></Cell>
<Cell><Data ss:Type="String">C154 Mapping</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Immunization profile</Data></Cell>
<Cell><Data ss:Type="String">A patient's point-of-time immunization status and recommendation with optional supporting justification</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">SubstanceAdministration[moodCode=RMD]</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">VXU_V04</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.identifier</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Business identifier</Data></Cell>
<Cell><Data ss:Type="String">A unique identifier assigned to this particular recommendation record.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.subject</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Who this profile is for</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The patient who is the subject of the profile</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.partipication[typeCode=SUBJ].role</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">PID-3-patient ID list</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">PID, PD1, NK1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Vaccine administration recommendations</Data></Cell>
<Cell><Data ss:Type="String">Vaccine administration recommendations</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.outboundRelationship[typeCode='COMP'].target[classCode=SBADM, moodCode=RMD]</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.date</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Date recommendation created</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">The date the immunization recommendation was created.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.partipication[typeCode=AUTH].time</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-15-date/time of the observation</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.vaccineType</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">VaccineType</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Vaccine recommendation applies to</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Vaccine that pertains to the recommendation</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.partipication[typeCode=CSM].role[classCode=ADMM].code</Data></Cell>
<Cell ss:StyleID="s74"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">OBX-5-observation value : OBX-3-observation identifier </Font><Font
html:Face="Symbol" x:Family="Swiss" html:Color="#000000">e</Font><Font
html:Color="#000000"> { 30956-7 | 38890-0 }</Font></ss:Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:Index="17" ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.doseNumber</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">integer</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell><Data ss:Type="String">Recommended dose number</Data></Cell>
<Cell><Data ss:Type="String">This indicates the next recommended dose number (e.g. dose 2 is the next recommended dose).</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell><Data ss:Type="String">May need other dose concepts such as administered vs. valid</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">.inboundRelationship[typeCode=COMP, .source[classCode=SBADM, moodCode=INT]].sequenceNumber</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-5-observation value : OBX-3-observation identifier = 30973-2</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:Index="17" ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.forecastStatus</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">ImmunizationRecommendationStatus</Data></Cell>
<Cell><Data ss:Type="String">Vaccine administration status</Data></Cell>
<Cell><Data ss:Type="String">Vaccine administration status</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.inboundRelationship[typeCode=SUBJ] .source[classCode=OBS, moodCode=EVN, code=&quot;Immunization Forecast Status&quot;].value</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-5-observation value : OBX-3-observation identifier = 59783-1</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.dateCriterion</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">0;150</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Dates governing proposed immunization</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Vaccine date recommendations - e.g. earliest date to administer, latest date to administer, etc.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.outboundRelationship[typeCode='LIMIT'].target[classCode=OBS, moodCode=EVN, isCriterionInd=true]</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-3: 30980-7 = Next dose recommended, 59777-3 = Latest next dose should be given, 59778-1 = Dose is overdue</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.dateCriterion.code</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">ImmunizationRecommendationDateCriterion</Data></Cell>
<Cell><Data ss:Type="String">Type of date</Data></Cell>
<Cell><Data ss:Type="String">Date classification of recommendation - e.g. earliest date to give, latest date to give, etc.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.code</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">OBX-3-observation identifier</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.dateCriterion.value</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Recommended date</Data></Cell>
<Cell><Data ss:Type="String">Date recommendation</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.value</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-5-observation value</Data></Cell>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.protocol</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">300;150</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s70"/>
<Cell><Data ss:Type="String">Protocol used by recommendation</Data></Cell>
<Cell><Data ss:Type="String">Contains information about the protocol under which the vaccine was administered</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s70"/>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.inboundRelationship[typeCode=INST].source[classCode=SBADM, moodCode=DEF]</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">ImmunizationRecommendation.recommendation.protocol.doseSequence</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Number of dose within sequence</Data></Cell>
<Cell><Data ss:Type="String">Indicates the nominal position in a series of the next dose. This is the recommended dose number as per a specified protocol.</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s70"><Data ss:Type="String">.inboundRelationship[typeCode=COMP, .source[classCode=SBADM, moodCode=DEF]].sequenceNumber</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-5-observation value : OBX-3-observation identifier = 30973-2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">ImmunizationRecommendation.recommendation.protocol.description</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Protocol details</Data></Cell>
<Cell><Data ss:Type="String">Contains the description about the protocol under which the vaccine was administered</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.text</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-5-observation value : OBX-3-observation identifier = 30956-7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">ImmunizationRecommendation.recommendation.protocol.authority</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="6" ss:StyleID="s69"><Data ss:Type="String">Reference(Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who is responsible for protocol</Data></Cell>
<Cell><Data ss:Type="String">Indicates the authority who published the protocol? E.g. ACIP</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.participation[typeCode=AUT]</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">OBX-5-observation value : OBX-3-observation identifier = 59779-9</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">ImmunizationRecommendation.recommendation.protocol.series</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of vaccination series</Data></Cell>
<Cell><Data ss:Type="String">One possible path to achieve presumed immunity against a disease - within the context of an authority</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.title</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">RXA-5-administered code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.supportingImmunization</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Immunization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Past immunizations supporting recommendation</Data></Cell>
<Cell><Data ss:Type="String">Immunization event history that supports the status and recommendation</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.outboundRelationship[typeCode=RSON].target[classCode=SBADM, moodCode=EVN, code=&quot;immunization&quot;]</Data></Cell>
<Cell><Data ss:Type="String">? No clear way to associate in V2.x or IG</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="270">
<Cell ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.supportingPatientInformation</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Observation | AdverseReaction | AllergyIntolerance)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Patient observations supporting recommendation</Data></Cell>
<Cell><Data ss:Type="String">Patient Information that supports the status and recommendation. This includes patient observations, adverse reactions and allergy/intolerance information.</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">.outboundRelationship[typeCode=RSON].target[classCode=OBS, moodCode=EVN]</Data></Cell>
<Cell><Data ss:Type="String">OBX If OBX is associated with ( RXA : RXA-5-administered code = '998^No vaccine administered^CVX' ), could contain the reason the vaccine was not administered&#10;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>11</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>18</ActiveRow>
<ActiveCol>8</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s75" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s66">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="83.25"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s66"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:AutoFitWidth="0" ss:Width="383.25"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="392.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.9375" ss:StyleID="s66">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Repeats</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">ImmunizationRecommendation.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">vaccine-type</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell><Data ss:Type="String">ImmunizationRecommendation.recommendation.vaccineType</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">dose-number</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">number</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.doseNumber</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">status</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.forecastStatus</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">dose-sequence</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s65"><Data ss:Type="String">ImmunizationRecommendation.recommendation.protocol.doseSequence</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">support</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.supportingImmunization</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">information</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s68"><Data ss:Type="String">ImmunizationRecommendation.recommendation.supportingPatientInformation</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s78"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s78"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s65"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s65"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s65"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s68"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s65"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s65"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="5" ss:StyleID="s65"/>
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s65"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:Width="221.25"/>
<Column ss:StyleID="s79" ss:Width="273"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75" ss:Span="1"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="107.25"/>
<Column ss:AutoFitWidth="0" ss:Width="275.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ImmunizationRecommendationStatus</Data></Cell>
<Cell><Data ss:Type="String">The patient's status with respect to a vaccination protocol</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-immunization-recommendation-status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ImmunizationRecommendationDateCriterion</Data></Cell>
<Cell><Data ss:Type="String">Classifies date criterion with respect to conveying information about a patient's vaccination status (e.g. due date, latest to give date, etc.)</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">valueset-immunization-recommendation-date-criterion</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>0</ActiveCol>
<RangeSelection>R4</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,938 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-09-27T10:44:56Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>19440</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s76">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s77">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="15" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="27.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="45"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="32.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="159.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="76.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Column ss:Index="15" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="92.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">List</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Information summarized from a list of other resources</Data></Cell>
<Cell><Data ss:Type="String">A set of information summarized from a list of other resources</Data></Cell>
<Cell><Data ss:Type="String">Collection; WorkingList; Organizer</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">Act[classCode&lt;ORG,moodCode=EVN]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">RIM harmonization proposal to move LIST under GROUPER&#10;&#10;RIM harmonization proposal to allow organizers to group roles as well as acts.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">List.identifier</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Business identifier</Data></Cell>
<Cell><Data ss:Type="String">Identifier for the List assigned for business purposes outside the context of FHIR.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">List.code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ListPurpose</Data></Cell>
<Cell><Data ss:Type="String">What the purpose of this list is</Data></Cell>
<Cell><Data ss:Type="String">This code defines the purpose of the list - why it was created</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">Lists often contain subsets of resources rather than an exhaustive list. The code identifies what type of subset is included</Data></Cell>
<Cell><Data ss:Type="String">If there is no code, the purpose of the list is implied where it is used, such as in a document section using Document.section.code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.code</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">List.subject</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Patient|Group|Device|Location)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">If all resources have the same subject</Data></Cell>
<Cell><Data ss:Type="String">The common subject (or patient) of the resources that are in the list, if there is one</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">The primary purpose of listing the subject explicitly is to help with finding the right list</Data></Cell>
<Cell><Data ss:Type="String">Some purely aribitrary lists do not have a common subject, so this is optional</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode&lt;SUB].role&#10;(and sometimes .player)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">List.source</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Practitioner|Patient|Device)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Who and/or what defined the list contents</Data></Cell>
<Cell><Data ss:Type="String">The entity responsible for deciding what the contents of the list were</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">Allows follow-up as well as context</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">The primary source is the entity that made the decisions what items are in the list. This may be software or user</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode&lt;AUT].role[classCode=REL].player[classCode=PSN,determinerCode=INST]&#10;or&#10;.participation[typeCode&lt;AUT].role[classCode=REL].player[classCode=DEV,determinerCode=INST]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">List.date</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">When the list was prepared</Data></Cell>
<Cell><Data ss:Type="String">The date that the list was prepared</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">Identifies how current the list is which affects relevance</Data></Cell>
<Cell><Data ss:Type="String">The actual important date is the date of currency of the resources that were summarized, but it is usually assumed that these are current when the preparation occurs</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode&lt;AUT].time[type=TS]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell><Data ss:Type="String">List.ordered</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Whether items in the list have a meaningful order</Data></Cell>
<Cell><Data ss:Type="String">Whether items in the list have a meaningful order</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">Important for presentation and rendering. Lists may be sorted to place more important information first or to group related entries.</Data></Cell>
<Cell><Data ss:Type="String">Applications SHOULD render ordered lists in the order provided, but MAY allow users to re-order based on their own preferences as well. This is marked as &quot;is modifier&quot; because whether the list is ordered or not may change how the results are processed or displayed</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.outboundRelationship[typeCode=COMP].sequenceNumber &gt; 1 </Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">List.mode</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ListMode</Data></Cell>
<Cell><Data ss:Type="String">working | snapshot | changes</Data></Cell>
<Cell><Data ss:Type="String">How this list was prepared - whether it is a working list that is suitable for being maintained on an ongoing basis, or if it represents a snapshot of a list of items from another source, or whether it is a prepared list where items may be marked as added, modified or deleted</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">Lists are used in various ways, and it must be known in what way it is safe to use them</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.outBoundRelationship[typeCode=COMP].target[classCode=OBS&quot;].value</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">List.entry</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Entries in the list</Data></Cell>
<Cell><Data ss:Type="String">Entries in this list</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell><Data ss:Type="String">If there are no entries in the list, an emptyReason SHOULD be provided</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.outboundRelationship[typeCode=COMP]&#10;or &#10;.participation[typeCode=SBJ]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">List.entry.flag</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ListItemFlag</Data></Cell>
<Cell><Data ss:Type="String">Workflow information about this item</Data></Cell>
<Cell><Data ss:Type="String">The flag allows the system constructing the list to make one or more statements about the role and significance of the item in the list</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">This field is present to support various clinical uses of lists, such as a discharge summary medication list, where flags specify whether the medication was added, modified, or deleted from the list</Data></Cell>
<Cell><Data ss:Type="String">The flag can only be understood in the context of the List.code. If the flag means that the entry has actually been deleted from the list, the deleted element SHALL be true. Deleted can only be used if the List.mode is &quot;changes&quot;</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.outBoundRelationship[typeCode=COMP].target[classCode=OBS&quot;].value</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">List.entry.deleted</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">If this item is actually marked as deleted</Data></Cell>
<Cell><Data ss:Type="String">True if this item is marked as deleted in the list.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">The flag element may contain codes that an application processing the list does not understand. However there can be no ambiguity if a list item is actually marked as &quot;deleted&quot;</Data></Cell>
<Cell><Data ss:Type="String">If the flag means that the entry has actually been deleted from the list, the deleted element SHALL be true. Both flag and deleted can only be used if the List.mode is &quot;changes&quot;. A deleted entry should be displayed in narrative as deleted</Data></Cell>
<Cell ss:StyleID="s68"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Color="#000000">added: </Font></B><Font
html:Color="#000000">.updateMode=(&quot;A&quot;,&quot;AR&quot;)&#10;&#10;</Font><B><Font
html:Color="#000000">retained: </Font></B><Font html:Color="#000000">.updateMode=&quot;NC&quot;&#10;&#10;</Font><B><Font
html:Color="#000000">updated:</Font></B><Font html:Color="#000000"> .updateMode=&quot;R&quot;&#10;&#10;</Font><B><Font
html:Color="#000000">deleted:</Font></B><Font html:Color="#000000"> .updateMode=&quot;D&quot;</Font></ss:Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">List.entry.date</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">When item added to list</Data></Cell>
<Cell><Data ss:Type="String">When this item was added to the list</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">The date may be significant for understanding the meaning of items in a working list</Data></Cell>
<Cell><Data ss:Type="String">This is only useful and meaningful when the mode is &quot;working&quot;</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.availabilityTime</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">List.entry.item</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Actual entry</Data></Cell>
<Cell><Data ss:Type="String">A reference to the actual resource from which data was derived</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.target&#10;or&#10;.role&#10;or&#10;.role.entity</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">List.emptyReason</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ListEmptyReason</Data></Cell>
<Cell><Data ss:Type="String">Why list is empty</Data></Cell>
<Cell><Data ss:Type="String">If the list is empty, why the list is empty</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"><Data ss:Type="String">Allows capturing things like &quot;none exist&quot; or &quot;not asked&quot; which can be important for most lists</Data></Cell>
<Cell><Data ss:Type="String">The various reasons for an empty list make a significant interpretation to its interpretation</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.inboundRelationship[typeCode=SUBJ,code&lt;{ListEmptyReason}].value[type=CD]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="14.25"/>
<Column ss:StyleID="s69" ss:Width="174"/>
<Column ss:StyleID="s69" ss:Width="42"/>
<Column ss:StyleID="s69" ss:Width="239.25"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="406.5"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">No emptyReason if list is not empty</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">List</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">A list can only have an emptyReason if it is empty</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">not(exists(f:emptyReason) and exists(f:entry))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Deleted Rule</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">List</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">The deleted flag can only be used if the mode of the list is &quot;changes&quot;</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">(f:mode/@value = 'changes') or not(exists(f:entry/f:item/f:deleted))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">List.source</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">item</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">List.entry.item</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">empty-reason</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">List.emptyReason</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">List.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">List.code</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">List.subject</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>7</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75" ss:Span="1"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s72">
<Cell><Data ss:Type="String">ListPurpose</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">What the purpose of a list is</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">valueset-list-example-codes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">ListMode</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The processing mode that applies to this list</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s73"/>
<Cell><Data ss:Type="String">#list-mode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">ListItemFlag</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Codes that provide further information about the reason and meaning of the item in the list</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">valueset-list-item-flag</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ListEmptyReason</Data></Cell>
<Cell><Data ss:Type="String">If a list is empty, why it is empty</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s73"><Data ss:Type="String">valueset-list-empty-reason</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:AutoFitWidth="0" ss:Width="128.25"/>
<Column ss:AutoFitWidth="0" ss:Width="79.5"/>
<Column ss:Width="117"/>
<Column ss:Width="27.75"/>
<Column ss:Width="39.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s74"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">General</Data></Cell>
<Cell><Data ss:Type="String">General List Example</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">list-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Empty List</Data></Cell>
<Cell><Data ss:Type="String">Empty List Example</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">example-empty</Data></Cell>
<Cell><Data ss:Type="String">list-example-empty.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Med List</Data></Cell>
<Cell><Data ss:Type="String">Exaple Medication Change List</Data></Cell>
<Cell><Data ss:Type="String">med-list</Data></Cell>
<Cell><Data ss:Type="String">list-example-medlist.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="list-mode">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:Width="311.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s76">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">working</Data></Cell>
<Cell><Data ss:Type="String">This list is the master list, maintained in an ongoing fashion with regular updates as the real world list it is tracking changes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">snapshot</Data></Cell>
<Cell><Data ss:Type="String">This list was prepared as a snapshot. It should not be assumed to be current</Data></Cell>
<Cell><Data ss:Type="String">Mostly this status is used in documents where the list won't be changed once the document is completed</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">changes</Data></Cell>
<Cell><Data ss:Type="String">The list is prepared as a statement of changes that have been made or recommended</Data></Cell>
<Cell><Data ss:Type="String">This is typically used in clinical summaries (e.g. Discharge Summary, Transfers of care). These lists should be understood as human-readable statements, and applications should be extremely careful if automated processing is attempted</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,562 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:16:02Z</Created>
<LastSaved>2013-10-08T09:16:31Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6165</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6255</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62" ss:Name="Normal 2">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s63" ss:Name="Normal 3">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s69" ss:Parent="s63">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11"/>
<Interior/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s75">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s78" ss:Parent="s62">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="25" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s64" ss:DefaultRowHeight="15">
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="42" ss:Span="2"/>
<Column ss:Index="5" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="33.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="86.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="213.75" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="269.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="100.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="113.25"/>
<Row ss:AutoFitHeight="0" ss:Height="60" ss:StyleID="s66">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">MessageHeader</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A resource that describes a message that is exchanged between systems</Data></Cell>
<Cell><Data ss:Type="String">The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle</Data></Cell>
<Cell><Data ss:Type="String">Many implementations are not prepared to use REST and need a messaging based infrastructure</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Message</Data></Cell>
<Cell><Data ss:Type="String">MSH / MSA / ERR</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">MessageHeader.identifier</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">id</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Id of this message</Data></Cell>
<Cell><Data ss:Type="String">The identifier of this message</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">This SHALL be unique within the scope of this stream of messages</Data></Cell>
<Cell><Data ss:Type="String">Message.id</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSH-10-message control ID</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">MessageHeader.timestamp</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">instant</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Time that the message was sent</Data></Cell>
<Cell><Data ss:Type="String">The time that the message was sent</Data></Cell>
<Cell><Data ss:Type="String">Allows limited detection of out-of-order and delayed transmission. Also supports audit.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./creationTime[isNormalDatatype()]</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSH-7-message date/time</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.event</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">Coding</Data></Cell>
<Cell><Data ss:Type="String">MessageEvent</Data></Cell>
<Cell><Data ss:Type="String">Code for the event this message represents</Data></Cell>
<Cell><Data ss:Type="String">Code that identifies the event this message represents and connects it with its definition. Events defined as part of the FHIR specification have the system value &quot;http://hl7.org/fhir/message-type&quot;</Data></Cell>
<Cell><Data ss:Type="String">Drives the behavior associated with this message</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./payload[classCode=&quot;CACT&quot; and moodCode=&quot;EVN&quot; and isNormalAct()]/code[isNormalDatatype()]/code</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSH-9.2-message type.trigger event</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">MessageHeader.response</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">300;150</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">If this is a reply to prior message</Data></Cell>
<Cell><Data ss:Type="String">Information about the message that this message is a response to. Only present if this message is a response.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./conveyedAcknowledgement</Data></Cell>
<Cell><Data ss:Type="String">MSA</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.response.identifier</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">id</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Id of original message</Data></Cell>
<Cell><Data ss:Type="String">The id of the message that this message is a response to</Data></Cell>
<Cell><Data ss:Type="String">Allows receiver to know what message is being responded to</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./acknowledges.id[isNormalDatatype()]</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSA-2-message control ID</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.response.code</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ResponseType</Data></Cell>
<Cell><Data ss:Type="String">ok | transient-error | fatal-error</Data></Cell>
<Cell><Data ss:Type="String">Code that identifies the type of response to the message - whether it was successful or not, and whether it should be resent or not</Data></Cell>
<Cell><Data ss:Type="String">Allows the sender of the acknowledge message to know if the request was successful or if action is needed.</Data></Cell>
<Cell><Data ss:Type="String">This is a generic response to the request message. Specific data for the response will be found in MessageHeader.data</Data></Cell>
<Cell><Data ss:Type="String">./typeCode[isNormalDatatype()]</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSA-1-acknowledgment code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.response.details</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(OperationOutcome)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Specific list of hints/warnings/errors</Data></Cell>
<Cell><Data ss:Type="String">Full details of any issues found in the message</Data></Cell>
<Cell><Data ss:Type="String">Allows the sender of the message to determine what the specific issues are</Data></Cell>
<Cell><Data ss:Type="String">This SHALL be contained in the bundle. If any of the issues are errors, the response code SHALL be an error</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">AcknowledgementDetail or Observation[classCode=&quot;ALRT&quot; and moodCode=&quot;EVN&quot;]</Data></Cell>
<Cell><Data ss:Type="String">ERR</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">MessageHeader.source</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">500;50</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String" x:Ticked="1">=MessageSource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Message Source Application</Data></Cell>
<Cell><Data ss:Type="String">The source application from which this message originated</Data></Cell>
<Cell><Data ss:Type="String">Allows replies, supports audit.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./communicationFunction[typeCode=&quot;SND&quot;])</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.source.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of system</Data></Cell>
<Cell><Data ss:Type="String">Human-readable name for the target system</Data></Cell>
<Cell><Data ss:Type="String">May be used to support audit</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./entity[determinerCode=&quot;INST&quot; and classCode=&quot;DEV&quot;]/name[type='ST' and isNormalDatatype()])</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSH-3-sending application</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.source.software</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of software running the system</Data></Cell>
<Cell><Data ss:Type="String">May include configuration or other information useful in debugging.</Data></Cell>
<Cell><Data ss:Type="String">Supports audit and possibly interface engine behavior</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./entity[determinerCode=&quot;INST&quot; and classCode=&quot;DEV&quot;]/softwareName[isNormalDatatype()])</Data></Cell>
<Cell><Data ss:Type="String">SFT-3-software product name ( +SFT-1-software vendor organization)&#10;&#10;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">MessageHeader.source.version</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Version of software running</Data></Cell>
<Cell><Data ss:Type="String">Can convey versions of multiple systems in situations where a message passes through multiple hands.</Data></Cell>
<Cell><Data ss:Type="String">Supports audit and possibly interface engine behavior</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">(Not supported)</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">SFT-2-software certified version or release number</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Version is not captured as a distinct property in v3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">MessageHeader.source.contact</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">ContactPoint</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Human contact for problems</Data></Cell>
<Cell><Data ss:Type="String">An e-mail, phone, website or other contact point to use to resolve issues with message communications.</Data></Cell>
<Cell><Data ss:Type="String">Allows escalation of technical issues.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./entity[determinerCode=&quot;INST&quot; and classCode=&quot;DEV&quot;]/scopesRole[normalRole() and classCode=&quot;CON&quot; and layer[classCode=&quot;PSN&quot;]/telecom[isNormalDatatype()])</Data></Cell>
<Cell><Data ss:Type="String">(MSH-22?)</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Should actually have a code for the role in the v3 mapping to indicate that the contact is for &quot;problems&quot;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">MessageHeader.source.endpoint</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Actual message source address or id</Data></Cell>
<Cell><Data ss:Type="String">Identifies the routing target to send acknowledgements to.</Data></Cell>
<Cell><Data ss:Type="String">Identifies where to send responses, may influence security permissions</Data></Cell>
<Cell><Data ss:Type="String">The id may be a non-resolvable URI for systems that do not use standard network-based addresses</Data></Cell>
<Cell><Data ss:Type="String">./telecom[isNormalDatatype()]</Data></Cell>
<Cell><Data ss:Type="String">MSH-24-sending network address&#10;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">MessageHeader.destination</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">300;0</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String" x:Ticked="1">=MessageDestination</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Message Destination Application(s)</Data></Cell>
<Cell><Data ss:Type="String">The destination application which the message is intended for</Data></Cell>
<Cell><Data ss:Type="String">Indicates where message is to be sent to for routing purposes. Allows verification of &quot;am I the intended recipient&quot;</Data></Cell>
<Cell><Data ss:Type="String">there SHOULD be at least one destination, but in some circumstances, the source system is unaware of any particular destination system</Data></Cell>
<Cell><Data ss:Type="String">./communicationFunction[typeCode=&quot;RCV&quot;]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.destination.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of system</Data></Cell>
<Cell><Data ss:Type="String">Human-readable name for the source system</Data></Cell>
<Cell><Data ss:Type="String">May be used for routing of response and/or to support audit</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./entity[determinerCode=&quot;INST&quot; and (classCode=(&quot;DEV&quot;, &quot;PSN&quot;, &quot;ORG&quot;]/name[type='ST' and isNormalDatatype()])</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">MSH-5-receiving application</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">MessageHeader.destination.target</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Device)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Particular delivery destination within the destination</Data></Cell>
<Cell><Data ss:Type="String">Identifies the target end system in situations where the initial message transmission is to an intermediary system.</Data></Cell>
<Cell><Data ss:Type="String">Supports multi-hop routing</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./entity[determinerCode=&quot;INST&quot; and (classCode=(&quot;DEV&quot;, &quot;PSN&quot;, &quot;ORG&quot;]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">MessageHeader.destination.endpoint</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Actual destination address or id</Data></Cell>
<Cell><Data ss:Type="String">Indicates where the message should be routed to.</Data></Cell>
<Cell><Data ss:Type="String">Identifies where to route the message</Data></Cell>
<Cell><Data ss:Type="String">The id may be a non-resolvable URI for systems that do not use standard network-based addresses</Data></Cell>
<Cell><Data ss:Type="String">./telecom</Data></Cell>
<Cell><Data ss:Type="String">MSH-25-receiving network address (or MSH-6-receiving facility by implication)&#10;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="195">
<Cell><Data ss:Type="String">MessageHeader.enterer</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The source of the data entry</Data></Cell>
<Cell><Data ss:Type="String">The person or device that performed the data entry leading to this message. Where there is more than one candidate, pick the most proximal to the message. Can provide other enterers in extensions</Data></Cell>
<Cell><Data ss:Type="String">Need to know for audit/traceback requirements and possibly for authorization.</Data></Cell>
<Cell><Data ss:Type="String">Usually only for the request, but can be used in a response</Data></Cell>
<Cell><Data ss:Type="String">unique(./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/participation[typeCode=&quot;ENT&quot; and isNormalParticipation]/role[classCode=&quot;ASSIGNED&quot; and isNormalRole()]/player[isNormalEntity() and classCode=(&quot;DEV&quot;, &quot;PSN&quot;) and determinerCode=&quot;INST&quot;])</Data></Cell>
<Cell><Data ss:Type="String">EVN-5-operator ID / ORC-10-entered by / PRT-5-Participation Person:PRT-4-Participation='EP' / ROL where ROL.3 is EP or ORC.10</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210">
<Cell><Data ss:Type="String">MessageHeader.author</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The source of the decision</Data></Cell>
<Cell><Data ss:Type="String">The logical author of the message - the person or device that decided the described event should happen. Where there is more than one candidate, pick the most proximal to the MessageHeader. Can provide other authors in extensions</Data></Cell>
<Cell><Data ss:Type="String">Need to know for audit/traceback requirements and possibly for authorization.</Data></Cell>
<Cell><Data ss:Type="String">Usually only for the request, but can be used in a response</Data></Cell>
<Cell><Data ss:Type="String">unique(./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/participation[isHighest(priorityCode) and typeCode=&quot;AUT&quot; and isNormalParticipation]/role[classCode=&quot;ASSIGNED&quot; and isNormalRole()]/player[isNormalEntity() and classCode=(&quot;DEV&quot;, &quot;PSN&quot;) and determinerCode=&quot;INST&quot;])</Data></Cell>
<Cell><Data ss:Type="String">ORC-19-action by / PRT-5-Participation Person:PRT-4-Participation='AUT' / ROL where ROL.3 is IP or ORC.12</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">MessageHeader.receiver</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner | Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Intended &quot;real-world&quot; recipient for the data</Data></Cell>
<Cell><Data ss:Type="String">Allows data conveyed by a message to be addressed to a particular person or department when routing to a specific application isn't sufficient.</Data></Cell>
<Cell><Data ss:Type="String">Allows routing beyond just the application level</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not directly supported. Could be shared using attentionLine.value with an appropriate keyWordText</Data></Cell>
<Cell><Data ss:Type="String">PRT-5-Participation Person:PRT-4-Participation='WAYR' / PRT-8-Participation Organization:PRT-4-Participation='WAYR'&#10;</Data></Cell>
<Cell ss:Index="15"><Data ss:Type="String">Is this in the 80%?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="405">
<Cell><Data ss:Type="String">MessageHeader.responsible</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Practitioner|Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Final responsibility for event</Data></Cell>
<Cell><Data ss:Type="String">The person or organization that accepts overall responsibility for the contents of the message. The implication is that the message event happened under the policies of the responsible party</Data></Cell>
<Cell><Data ss:Type="String">Need to know for audit/traceback requirements and possibly for authorization.</Data></Cell>
<Cell><Data ss:Type="String">Usually only for the request, but can be used in a response</Data></Cell>
<Cell><Data ss:Type="String">unique(./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/participation[isHighest(priorityCode) and typeCode=&quot;RESP&quot; and isNormalParticipation]/role[classCode=&quot;ASSIGNED&quot; and isNormalRole()]/player[isNormalEntity() and classCode=&quot;PSN&quot; and determinerCode=&quot;INST&quot;] or ./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/participation[isHighest(priorityCode) and typeCode=&quot;RESP&quot; and isNormalParticipation]/role[classCode=&quot;ASSIGNED&quot; and isNormalRole()]/scoper[isNormalEntity() and classCode=&quot;ORG&quot; and determinerCode=&quot;INST&quot;])</Data></Cell>
<Cell><Data ss:Type="String">ORC-12-ordering provider / &#10;PRT-5-Participation Person:PRT-4-Participation='OP' / &#10;PRT-8-Participation Organization:PRT-4-Participation='OP'&#10;/ ROL where ROL.3 is RO or ORC.11</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">MessageHeader.reason</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">EventReason</Data></Cell>
<Cell><Data ss:Type="String">Cause of event</Data></Cell>
<Cell><Data ss:Type="String">Coded indication of the cause for the event - indicates a reason for the occurance of the event that is a focus of this message</Data></Cell>
<Cell><Data ss:Type="String">Need to be able to track why resources are being changed and report in the audit log/history of the resource. May affect authorization.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">unique(./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/reasonCode[isNormalDatatype()])</Data></Cell>
<Cell><Data ss:Type="String">EVN.4 / ORC.16 / OBR-31-reason for study / BPO-13-BP indication for use / RXO-20-indication / RXE-27-give indication / RXD-21-indication / RXG-22-indication / RXA-19-indication&#10;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="240">
<Cell><Data ss:Type="String">MessageHeader.data</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The actual content of the message</Data></Cell>
<Cell><Data ss:Type="String">The actual data of the message - a reference to the root/focus class of the event. </Data></Cell>
<Cell><Data ss:Type="String">Every message event is about actual data, a single resource, that is identified in the definition of the event, and perhaps some or all linked resources</Data></Cell>
<Cell><Data ss:Type="String">The data is defined where the transaction type is defined. The transaction data is always included in the bundle that is the full message. Only the root resource is specified. The resources it references should be contained in the bundle but are not also listed here. Multiple repetitions are allowed to cater for merges and other situations with multiple focal targets</Data></Cell>
<Cell><Data ss:Type="String">unique(./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/participation[typeCode=&quot;SUBJ&quot; and isNormalParticipation]/role or ./controlAct[classCode=&quot;CACT&quot; and classCode=&quot;EVN&quot; and isNormalAct()]/outboundRelationship[typeCode=&quot;SBJ&quot; and isNormalActRelatoinship]/target)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>7</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>13</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s72" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0" ss:StyleID="s66">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>15</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s73" ss:DefaultRowHeight="15">
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="86.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="189.75"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="63" ss:Span="1"/>
<Column ss:Index="5" ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="151.5"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="198"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s74"><Data ss:Type="String">EventReason</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Reason for event occurrence</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">valueset-message-reason-encounter</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s74"><Data ss:Type="String">ResponseType</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">The kind of response to a message</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"><Data ss:Type="String">#response-code</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="response-code">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s76" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s76" ss:Width="71.25"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="719.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s66">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">ok</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">The message was accepted and processed without error</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">transient-error</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">Some internal unexpected error occurred - wait and try again. Note - this is usually used for things like database unavailable, which may be expected to resolve, though human intervention may be required</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">fatal-error</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">The message was rejected because of some content in it. There is no point in re-sending without change. The response narrative SHALL describe what the issue is.</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>1</ActiveCol>
<RangeSelection>R2C2:R4C2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,793 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>tom</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-07-19T20:23:25Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>5655</WindowHeight>
<WindowWidth>22455</WindowWidth>
<WindowTopX>5670</WindowTopX>
<WindowTopY>6615</WindowTopY>
<ActiveSheet>3</ActiveSheet>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="25" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="219.75"/>
<Column ss:StyleID="s62" ss:Width="29.25"/>
<Column ss:StyleID="s62" ss:Width="22.5"/>
<Column ss:StyleID="s62" ss:Width="60"/>
<Column ss:StyleID="s62" ss:Width="27"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="180"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Microarray</Data></Cell>
<Cell><Data ss:Type="String">A resource that displays result of a microarray</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.subject</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Subject of the microarray</Data></Cell>
<Cell><Data ss:Type="String">Subject of the microarray</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.subject.patient</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Resource that corresponds to the subject</Data></Cell>
<Cell><Data ss:Type="String">Resource that corresponds to the subject</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.subject.sampleId</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Id of the sample that belongs to the subject</Data></Cell>
<Cell><Data ss:Type="String">Id of the sample that belongs to the subject</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.organization</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Reference(Organization)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Organization</Data></Cell>
<Cell><Data ss:Type="String">Organization that does the microarray</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.date</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Date</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Date when result of the microarray is updated</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Microarray.scanner</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="7" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Scanner</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Scanner used in the microarray</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.scanner.manufacturer</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Organization)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Scanner manufacturer</Data></Cell>
<Cell><Data ss:Type="String">Manufactuerer of the scanner</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.scanner.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Scanner name</Data></Cell>
<Cell><Data ss:Type="String">Name of scanner model</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.scanner.version</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Scanner version</Data></Cell>
<Cell><Data ss:Type="String">Version of the model</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Sample</Data></Cell>
<Cell><Data ss:Type="String">Sample of a grid on the chip</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.identity</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Id of the sample</Data></Cell>
<Cell><Data ss:Type="String">Id of the sample</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.organism</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Sample</Data></Cell>
<Cell><Data ss:Type="String">Organism that the sample belong s to</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.specimen</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Organism </Data></Cell>
<Cell><Data ss:Type="String">Specimen used on the grid</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.specimen.type</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Specimen type</Data></Cell>
<Cell><Data ss:Type="String">Type of the specimen</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.specimen.source</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Specimen source</Data></Cell>
<Cell><Data ss:Type="String">Source of the specimen</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.gene</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Gene of study</Data></Cell>
<Cell><Data ss:Type="String">Gene of study</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.gene.identity</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifier of the gene</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the gene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.gene.coordinate</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Coordinate of the gene</Data></Cell>
<Cell><Data ss:Type="String">Coordinate of the gene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.gene.coordinate.chromosome</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Chromosome</Data></Cell>
<Cell><Data ss:Type="String">Chromosome</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.gene.coordinate.start</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Start position</Data></Cell>
<Cell><Data ss:Type="String">Start position</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.gene.coordinate.end</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">End position</Data></Cell>
<Cell><Data ss:Type="String">End position</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.intensity</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Intensity</Data></Cell>
<Cell><Data ss:Type="String">Intensity(expression) of the gene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Microarray.sample.isControl</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Control</Data></Cell>
<Cell><Data ss:Type="String">Whether the grid is a control in the experiment</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>13</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
<Cell ss:StyleID="s69"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Repeats</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">patient</Data></Cell>
<Cell><Data ss:Type="String">Patient described by the microarray</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell><Data ss:Type="String">Microarray.subject.patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">gene</Data></Cell>
<Cell><Data ss:Type="String">Gene studied in the microarray</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell><Data ss:Type="String">Microarray.sample.gene.identity</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">coordinate</Data></Cell>
<Cell><Data ss:Type="String">Coordinate of the gene</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell><Data ss:Type="String">Microarray.sample.gene.coordinate</Data></Cell>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<RangeSelection>R10C2:R11C2</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="100.5"/>
<Column ss:AutoFitWidth="0" ss:Width="201.75"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Identity</Data></Cell>
<Cell><Data ss:Type="String">Filename</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example microarray for ordinary patient</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">microarray-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,868 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd McKenzie</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-04-25T04:46:25Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s72">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="20" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s62" ss:Width="29.25"/>
<Column ss:StyleID="s62" ss:Width="22.5"/>
<Column ss:StyleID="s62" ss:Width="60"/>
<Column ss:StyleID="s62" ss:Width="27"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Namespace</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">System of unique identification</Data></Cell>
<Cell><Data ss:Type="String">A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a &quot;System&quot; used within the Identifier and Coding data types.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">N/A</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">N/A</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.type</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">NamespaceType</Data></Cell>
<Cell><Data ss:Type="String">codesystem | identifier | root</Data></Cell>
<Cell><Data ss:Type="String">Indicates the purpose for the namespace - what kinds of things does it make unique?</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.name</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Human-readable label</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">The descriptive name of this particular identifier type or code system</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">The&quot;symbolic name&quot; for an OID would be captured as an extension</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.status</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">NamespaceStatus</Data></Cell>
<Cell><Data ss:Type="String">proposed | active | retired</Data></Cell>
<Cell><Data ss:Type="String">Indicates whether the namespace is &quot;ready for use&quot; or not.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Namespace.country</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Country</Data></Cell>
<Cell><Data ss:Type="String">ISO 3-char country code</Data></Cell>
<Cell><Data ss:Type="String">If present, indicates that the identifier or code system is principally intended for use or applies to entities within the specified country. For example, the country associated with a national code system.</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">!Namespace.region</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">CountryRegion</Data></Cell>
<Cell><Data ss:Type="String">ISO state/province code</Data></Cell>
<Cell><Data ss:Type="String">If present, indicates that the identifier or code system is principally intended for use or applies to entities within the specified area of the country (state, province, terratory, etc). For example, the state associated with a license number.</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Namespace.category</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">NamespaceCategory</Data></Cell>
<Cell><Data ss:Type="String">driver | provider | patient | bank</Data></Cell>
<Cell><Data ss:Type="String">Categorizes a namespace for easier search by grouping related namespaces.</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">This will most commonly be used for identifier namespaces, but categories could potentially be useful for code systems and authorities as well.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Namespace.responsible</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who maintains system namespace?</Data></Cell>
<Cell><Data ss:Type="String">The name of the organization that is responsible for issuing identifiers or codes for this namespace and ensuring their non-collision.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">This is the primary organization. Responsibility for some aspects of a namespace may be delegated</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.description</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">What does namespace identify?</Data></Cell>
<Cell><Data ss:Type="String">Details about what the namespace identifies including scope, granularity, version labeling, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Namespace.usage</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">How/where is it used</Data></Cell>
<Cell><Data ss:Type="String">Provides guidance on the use of the namespace, including the handling of formatting characters, use of upper vs. lower case, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Namespace.uniqueId</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Unique identifiers used for system</Data></Cell>
<Cell><Data ss:Type="String">Indicates how the system may be identified when referenced in electronic exchange</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Multiple identifiers may exist, either due to duplicate registration, regional rules, needs of different communication technologies, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Namespace.uniqueId.type</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">NamespaceIdentifierType</Data></Cell>
<Cell><Data ss:Type="String">oid | uuid | uri | other</Data></Cell>
<Cell><Data ss:Type="String">Identifies the unique identifier scheme used for this particular identifier.</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Different identifier types may be used in different types of communications (OIDs for v3, URIs for FHIR, etc.). Other includes RUIDs from v3, standard v2 code name strings, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.uniqueId.value</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The unique identifier</Data></Cell>
<Cell><Data ss:Type="String">The string that should be sent over the wire to identify the code system or identifier system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.uniqueId.preferred</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Is this the id that should be used for this type</Data></Cell>
<Cell><Data ss:Type="String">Indicates whether this identifier is the &quot;preferred&quot; identifier of this type.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Namespace.uniqueId.period</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When is identifier valid?</Data></Cell>
<Cell><Data ss:Type="String">Identifies the period of time over which this identifier is considered appropriate to refer to the namespace. Outside of this window, the identifier might be non-deterministic</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Within a registry, a given identifier should only be &quot;active&quot; for a single namespace at a time. (Ideally, an identifier should only ever be associated with a single namespace across all time)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Namespace.contact</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who should be contacted for questions about namespace</Data></Cell>
<Cell><Data ss:Type="String">The person who can be contacted about this system registration entry</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Namespace.contact.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">HumanName</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name of person</Data></Cell>
<Cell><Data ss:Type="String">Names of the person who can be contacted</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Namespace.contact.telecom</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">ContactPoint</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Phone, email, etc.</Data></Cell>
<Cell><Data ss:Type="String">Identifies the mechanism(s) by which they can be contacted</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Namespace.replacedBy</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Reference(Namespace)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Use this instead</Data></Cell>
<Cell><Data ss:Type="String">For namespaces that are retired, indicates the namespace that should be used in their place (if any)</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>10</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>19</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s67" ss:Width="33"/>
<Column ss:StyleID="s67" ss:Width="59.25"/>
<Column ss:StyleID="s67" ss:Width="271.5"/>
<Column ss:StyleID="s67" ss:Width="23.25"/>
<Column ss:StyleID="s67" ss:Width="303"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">Namespace</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Root systems cannot have uuid or sid identifiers</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">not(f:type/@value='root' and f:uniqueId/f:type=('uuid', 'ruid'))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">Namespace</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Can't have more than one preferred identifier for a type</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">not(exists(for $type in distinct-values(f:uniqueId/f:type) return if (count(f:uniqueId[f:type/@value=$type and f:primary/@value='true'])&gt;1) then $type else ()))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s69"><Data ss:Type="String">Namespace</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Can only have replacedBy if namespace is retired</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">not(f:replacedBy) or f:status/@value='retired'</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
<Cell ss:StyleID="s70"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Repeats</Data></Cell>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="9" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s71" ss:DefaultRowHeight="15">
<Column ss:StyleID="s71" ss:Width="128.25"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:StyleID="s71" ss:Width="138.75"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">NamespaceType</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Identifies the purpose of the namespace</Data></Cell>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#namespace-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s66"><Data ss:Type="String">NamespaceStatus</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Indicates whether the namespace should be used</Data></Cell>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#namespace-status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s66"><Data ss:Type="String">NamespaceCategory</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Identifies the general purpose of the namespace identifiers provided. E.g. Driver, Provider, Patient, Bank, etc.</Data></Cell>
<Cell><Data ss:Type="String">unbound</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">Country</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Codes for identifying countries</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">http://www.iso.org/iso/country_codes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s66"><Data ss:Type="String">NamespaceIdentifierType</Data></Cell>
<Cell><Data ss:Type="String">Identifies the style of unique identifier used to identify a namepace</Data></Cell>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#namespace-identifier-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="namespace-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:Width="60.75"/>
<Column ss:Width="646.5"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s72">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">codesystem</Data></Cell>
<Cell><Data ss:Type="String">The namespace is used to define concepts and symbols to represent those concepts. E.g. UCUM, LOINC, NDC code, local lab codes, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">identifier</Data></Cell>
<Cell><Data ss:Type="String">The namespace is used to manage identifiers (e.g. license numbers, order numbers, etc.)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">root</Data></Cell>
<Cell><Data ss:Type="String">The namespace is used as the root for other identifiers and namespaces</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<RangeSelection>R1C1:R1C3</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="namespace-status">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:Width="239.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s72">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">proposed</Data></Cell>
<Cell><Data ss:Type="String">System has been submitted but not yet approved</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">active</Data></Cell>
<Cell><Data ss:Type="String">System is valid for use</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">retired</Data></Cell>
<Cell><Data ss:Type="String">System should no longer be used</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="namespace-identifier-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:Width="639"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s72">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">oid</Data></Cell>
<Cell><Data ss:Type="String">An ISO object identifier. E.g. 1.2.3.4.5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">uuid</Data></Cell>
<Cell><Data ss:Type="String">A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">uri</Data></Cell>
<Cell><Data ss:Type="String">A uniform resource identifier (ideally a URL - uniform resource locator). E.g. http://unitsofmeasure.org</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">other</Data></Cell>
<Cell><Data ss:Type="String">Some other type of unique identifier. E.g HL7-assigned reserved string such as LN for LOINC</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,762 @@
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lorraine Constable</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-12-29T00:50:16Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</Style>
<Style ss:ID="s63">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s64">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior ss:Color="#D9D9D9" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s66">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="13" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="56.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="39"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="33.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="121.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="64.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="145.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s64">
<Cell><Data ss:Type="String">Element</Data></Cell>
<Cell><Data ss:Type="String">Card.</Data></Cell>
<Cell><Data ss:Type="String">Inv.</Data></Cell>
<Cell><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell><Data ss:Type="String">UML</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Short Name</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Aliases</Data></Cell>
<Cell><Data ss:Type="String">Requirements</Data></Cell>
<Cell><Data ss:Type="String">Comments</Data></Cell>
<Cell><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell><Data ss:Type="String">To Do</Data></Cell>
<Cell><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Order</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">A request to perform an action</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Request</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">ControlAct[classCode=ACTN, moodCode=RQO]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Order.identifier</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Identifier</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Identifiers assigned to this order by the orderer or by the receiver</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Order.date</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">When the order was made</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode=AUT].time</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ORC-9</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Order.subject</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Patient)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Patient this order is about</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Patient</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">May be left blank if the request reference identifies the patient, or if the request is not associated with a patient</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode=SBJ].role[classCode=PAT]</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">PID-3</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Order.source</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Practitioner)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Who initiated the order</Data></Cell>
<Cell ss:Index="10"><Data ss:Type="String">Author, Practitioner</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode=AUT].role</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ORC-12 / OBR-16 / RXO-14 / RXE-13 / PRT-5 (PRT-4-Participation='OP')</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="255">
<Cell><Data ss:Type="String">Order.target</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Organization|Device|Practitioner)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Who is intended to fulfill the order</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode=PFM].role</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Unclear: MSH-5 / IPC-7 / BPO-8 / RXO-32 / RXE-40 / RXD-30 / RXG-11 / RXG-27 / PRT-8 (PRT-4-participation in { 'AP', 'DP', 'PO', 'RT' })&#10;</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="180">
<Cell><Data ss:Type="String">Order.reason[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">CodeableConcept | Reference(Any)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Text - why the order was made</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.reasonCode or .outboundRelationship[typeCode=RSON].target</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ORC-16.2 / OBR-31.2 / BPO-13.2-BP / RXO-20.2 / RXE-27.2 / RXD-21.2 / RXG-22.2 / RXA-19.2</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Order.authority</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">If required by policy</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell><Data ss:Type="String">reference will be constrained when suitable targets exist</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode=RESP].role</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">if ordering provider, then ORC-12, OBR-16, etc.</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Verify RIM semantics</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Order.when</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s66"/>
<Cell><Data ss:Type="String">When order should be fulfilled</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.effectiveTime</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">TQ1, TQ2</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Order.when.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">RequestedTime</Data></Cell>
<Cell><Data ss:Type="String">Code specifies when request should be done. The code may simply be a priority code</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell><Data ss:Type="String">This is usually a local code agreed in the context of the ordering workflow</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">GTS is a coded value</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Order.when.schedule</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Timing</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">A formal schedule</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13"><Data ss:Type="String">GTS is a complex schedule</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Order.detail</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Reference(Any)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">What action is being ordered</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.outboundRelationship[typeCode=SUBJ].target</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>7</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>12</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">English</Data></Cell>
<Cell><Data ss:Type="String">OCL</Data></Cell>
<Cell><Data ss:Type="String">XPath</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Scheduling Details</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Order.when</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Provide a code or a schedule, but not both</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">exists(f:code) != exists(f:schedule)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>2</SplitVertical>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="82.5"/>
<Column ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="195.75"/>
<Column ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="33">
<Cell ss:StyleID="s64"><Data ss:Type="String">Event Code</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Notes</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Request Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Response Resources</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Follow Ups</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="37" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="381"/>
<Row ss:AutoFitHeight="0" ss:Height="16.5" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell><Data ss:Type="String">Path</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.source</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">target</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.target</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">authority</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.authority</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">when_code</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.when.code</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">when</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.when.schedule</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">detail</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Order.detail</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>7</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s67" ss:DefaultRowHeight="15">
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s67" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">RequestedTime</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">When a requested action should be performed. E.g. STAT, daily, evenings, etc.</Data></Cell>
<Cell><Data ss:Type="String">unbound</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
<Number>3</Number>
</Pane>
<Pane>
<Number>1</Number>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="14.4375">
<Column ss:Width="54"/>
<Column ss:Width="201.75"/>
<Column ss:Width="192"/>
<Column ss:Width="138.75"/>
<Row ss:AutoFitHeight="0" ss:Height="28.6875">
<Cell ss:StyleID="s71"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Order</Data></Cell>
<Cell><Data ss:Type="String">General example</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">order-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Physiotherapy</Data></Cell>
<Cell><Data ss:Type="String">Real-world patient example</Data></Cell>
<Cell><Data ss:Type="String">f201</Data></Cell>
<Cell><Data ss:Type="String">order-example-f201-physiotherapy.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
<Header x:Margin="0.3"/>
<Footer x:Margin="0.3"/>
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

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