More resource generation

This commit is contained in:
jamesagnew 2014-04-02 18:42:16 -04:00
parent f7a4b48e07
commit 7c64466a51
83 changed files with 67004 additions and 2624 deletions

View File

@ -4,7 +4,7 @@
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@ -0,0 +1,404 @@
<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>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<packaging>jar</packaging>
<url>http://hl7api.sourceforge.net/hapi-fhir/</url>
<name>HAPI FHIR Base Library</name>
<distributionManagement>
<site>
<id>hl7api.sf.net</id>
<url>scp://shell.sourceforge.net/home/project-web/hl7api/htdocs/hapi-fhir</url>
</site>
</distributionManagement>
<dependencies>
<!-- JSON -->
<!-- <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.4</version> </dependency> -->
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>1.0.4</version>
</dependency>
<!-- XML -->
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<version>4.2.0</version>
</dependency>
<!-- <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>stax2-api</artifactId> <version>3.1.3</version> </dependency> -->
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>2.1.2.RELEASE</version>
<optional>true</optional>
</dependency>
<!-- General -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.6</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
<optional>true</optional>
</dependency>
<!-- Client -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.3.2</version>
</dependency>
<!-- Server -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</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>9.1.1.v20140108</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.1.1.v20140108</version>
<scope>test</scope>
</dependency>
<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>
</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>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.1.1.v20140108</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.1.1.v20140108</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>directory-naming</groupId>
<artifactId>naming-java</artifactId>
<version>0.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest_version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.16</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
</configuration>
<reportSets>
<reportSet>
<id>default</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<reportSets>
<reportSet>
<reports>
<report>project-team</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>addSyntaxHighlighter</id>
<phase>site</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>Adding Syntax Highlighter</echo>
<replace dir="target/site" summary="true">
<include name="*.html"></include>
<replacetoken><![CDATA[</body>]]></replacetoken>
<replacevalue><![CDATA[
<script type="text/javascript">
var elements = document.getElementsByClassName("source");
for (var i=0; i < elements.length; i++) {
var pres = elements[i].getElementsByTagName("pre");
for (var j = 0; j < pres.length; j++) {
var pre = pres[j];
if (pre.innerHTML.match(/\/\*/)) {
pre.className = 'brush: java';
} else if (pre.innerHTML.match(/^\#/)) {
pre.className = 'brush: bash';
} else if (pre.innerHTML.match(/\&lt\;\//)) {
pre.className = 'brush: xml';
} else {
pre.className = 'brush: java';
}
}
}
SyntaxHighlighter.all();
</script>
</body>
]]></replacevalue>
</replace>
</target>
</configuration>
</execution>
<execution>
<id>addAnalytics</id>
<phase>post-site</phase>
<configuration>
<target>
<echo>Adding Google analytics in target/site for &lt;body&gt;</echo>
<replace dir="target/site" summary="true">
<include name="**/*.html"></include>
<replacefilter token="#build#" value="${label}" />
<replacefilter token="#version#" value="${version}" />
<replacetoken><![CDATA[</body>]]></replacetoken>
<replacevalue><![CDATA[
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1395874-5', 'sourceforge.net');
ga('send', 'pageview');
</script>
</body >
]]></replacevalue>
</replace>
<echo>Adding Google analytics in target/site for &lt;BODY&gt;</echo>
<replace dir="target/site" summary="true">
<include name="**/*.html"></include>
<replacetoken><![CDATA[</BODY>]]></replacetoken>
<replacevalue><![CDATA[
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1395874-5', 'sourceforge.net');
ga('send', 'pageview');
</script>
</BODY >
]]></replacevalue>
</replace>
<echo>Adding social plugins for HAPI</echo>
<replace dir="target/site/" summary="true">
<include name="**/*.html"></include>
<replacetoken><![CDATA[SOCIALPLUGINSHEREFHIR]]></replacetoken>
<replacevalue><![CDATA[
<table cellpadding="0" cellspacing="0" border="0"><tr>
<td><div class="g-plusone" data-annotation="inline" data-width="300" data-href="http://hl7api.sourceforge.net/"></div></td>
<td><div class="fb-like" data-href="http://hl7api.sourceforge.net/" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true"></div></td>
</tr></table>
</p><p>
<!-- Place this tag after the last +1 button tag. -->
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
]]></replacevalue>
</replace>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>1g</maxmemory>
<linksource>true</linksource>
<verbose>false</verbose>
<debug>false</debug>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -8,6 +8,8 @@ import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import org.apache.commons.lang3.text.WordUtils;
import ca.uhn.fhir.model.api.BaseResourceReference;
import ca.uhn.fhir.model.api.ExtensionDt;
import ca.uhn.fhir.model.api.IDatatype;
@ -50,26 +52,26 @@ public class RuntimeChildUndeclaredExtensionDefinition extends BaseRuntimeChildD
@Override
void sealAndInitialize(Map<Class<? extends IElement>, BaseRuntimeElementDefinition<?>> theClassToElementDefinitions) {
Map<String, BaseRuntimeElementDefinition<?>> datatypeAttributeNameToDefinition=new HashMap<String, BaseRuntimeElementDefinition<?>>();
myDatatypeToAttributeName = new HashMap<Class<? extends IElement>, String>();
for (BaseRuntimeElementDefinition<?> next : theClassToElementDefinitions.values()) {
if (next instanceof IRuntimeDatatypeDefinition) {
if (!((IRuntimeDatatypeDefinition) next).isSpecialization()) {
String attrName = "value" + next.getName().substring(0, 1).toUpperCase() + next.getName().substring(1);
String attrName = "value" + WordUtils.capitalize(next.getName());
datatypeAttributeNameToDefinition.put(attrName, next);
datatypeAttributeNameToDefinition.put(attrName.toLowerCase(), next);
myDatatypeToAttributeName.put(next.getImplementingClass(), attrName);
}
}
}
myAttributeNameToDefinition=datatypeAttributeNameToDefinition;
myDatatypeToAttributeName = new HashMap<Class<? extends IElement>, String>();
myDatatypeToDefinition = new HashMap<Class<? extends IElement>, BaseRuntimeElementDefinition<?>>();
for (Entry<String, BaseRuntimeElementDefinition<?>> next : myAttributeNameToDefinition.entrySet()) {
@SuppressWarnings("unchecked")
Class<? extends IDatatype> type = (Class<? extends IDatatype>) next.getValue().getImplementingClass();
myDatatypeToAttributeName.put(type, next.getKey());
myDatatypeToDefinition.put(type, next.getValue());
}

View File

@ -240,10 +240,13 @@ private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger
if (nextDef instanceof RuntimeResourceReferenceDefinition) {
RuntimeResourceReferenceDefinition rr = (RuntimeResourceReferenceDefinition) nextDef;
for (Class<? extends IResource> next : rr.getResourceTypes()) {
RuntimeResourceDefinition resDef = rr.getDefinitionForResourceType(next);
StructureElementDefinitionType type = elem.getDefinition().addType();
type.getCode().setValue("ResourceReference");
type.getProfile().setValueAsString(resDef.getResourceProfile());
if (next != IResource.class) {
RuntimeResourceDefinition resDef = rr.getDefinitionForResourceType(next);
type.getProfile().setValueAsString(resDef.getResourceProfile());
}
}
return;

View File

@ -2,7 +2,7 @@ package ca.uhn.fhir.model.dstu.composite;
import ca.uhn.fhir.model.api.annotation.DatatypeDef;
@DatatypeDef(name = "duration")
@DatatypeDef(name = "Duration")
public class DurationDt extends QuantityDt {
// TODO: implement restricions

View File

@ -1,6 +1,7 @@
package ca.uhn.fhir.parser;
import static org.apache.commons.lang3.StringUtils.*;
import static org.apache.commons.lang3.StringUtils.isBlank;
import static org.apache.commons.lang3.StringUtils.isNotBlank;
import java.io.IOException;
import java.io.Reader;
@ -29,10 +30,12 @@ import javax.json.stream.JsonGeneratorFactory;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.Validate;
import org.apache.commons.lang3.text.WordUtils;
import ca.uhn.fhir.context.BaseRuntimeChildDefinition;
import ca.uhn.fhir.context.BaseRuntimeElementCompositeDefinition;
import ca.uhn.fhir.context.BaseRuntimeElementDefinition;
import ca.uhn.fhir.context.BaseRuntimeElementDefinition.ChildTypeEnum;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.RuntimeChildDeclaredExtensionDefinition;
import ca.uhn.fhir.context.RuntimeChildNarrativeDefinition;
@ -307,6 +310,7 @@ public class JsonParser extends BaseParser implements IParser {
}
case OBJECT: {
theState.enteringNewElement(null, theName);
parseAlternates(theAlternateVal, theState);
JsonObject nextObject = (JsonObject) theJsonVal;
boolean preResource = false;
if (theState.isPreResource()) {
@ -421,6 +425,17 @@ public class JsonParser extends BaseParser implements IParser {
}
}
private void addToHeldExtensions(int valueIdx, ArrayList<ArrayList<HeldExtension>> list, RuntimeChildDeclaredExtensionDefinition theDef, IElement theValue) {
list.ensureCapacity(valueIdx);
while (list.size() <= valueIdx) {
list.add(null);
}
if (list.get(valueIdx) == null) {
list.set(valueIdx, new ArrayList<JsonParser.HeldExtension>());
}
list.get(valueIdx).add(new HeldExtension(theDef, theValue));
}
private void assertObjectOfType(JsonValue theResourceTypeObj, ValueType theValueType, String thePosition) {
if (theResourceTypeObj.getValueType() != theValueType) {
throw new DataFormatException("Invalid content of element " + thePosition + ", expected " + theValueType);
@ -582,22 +597,12 @@ public class JsonParser extends BaseParser implements IParser {
}
if (nextChild instanceof RuntimeChildDeclaredExtensionDefinition) {
// TODO: hold and return
RuntimeChildDeclaredExtensionDefinition extDef = (RuntimeChildDeclaredExtensionDefinition) nextChild;
if (extDef.isModifier()) {
theEventWriter.writeStartObject("modifierExtension");
addToHeldExtensions(valueIdx, modifierExtensions, extDef, nextValue);
} else {
theEventWriter.writeStartObject("extension");
addToHeldExtensions(valueIdx, extensions, extDef, nextValue);
}
String extensionUrl = nextChild.getExtensionUrl();
theEventWriter.write("url", extensionUrl);
// theEventWriter.writeName(childName);
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, nextValue, childDef, childName);
theEventWriter.writeEnd();
} else {
if (currentChildName == null || !currentChildName.equals(childName)) {
@ -634,49 +639,51 @@ public class JsonParser extends BaseParser implements IParser {
}
if (extensions.size() > 0 || modifierExtensions.size() > 0) {
theEventWriter.writeStartArray('_' + currentChildName);
// Ignore extensions if we're encoding a resource, since they are handled one level up
if (currentChildName != null) {
theEventWriter.writeStartArray('_' + currentChildName);
for (int i = 0; i < valueIdx; i++) {
boolean haveContent = false;
if (extensions.size() > i && extensions.get(i) != null && extensions.get(i).isEmpty() == false) {
haveContent = true;
theEventWriter.writeStartObject();
theEventWriter.writeStartArray("extension");
for (HeldExtension nextExt : extensions.get(i)) {
nextExt.write(theResDef, theResource, theEventWriter);
for (int i = 0; i < valueIdx; i++) {
boolean haveContent = false;
if (extensions.size() > i && extensions.get(i) != null && extensions.get(i).isEmpty() == false) {
haveContent = true;
theEventWriter.writeStartObject();
theEventWriter.writeStartArray("extension");
for (HeldExtension nextExt : extensions.get(i)) {
nextExt.write(theResDef, theResource, theEventWriter);
}
theEventWriter.writeEnd();
theEventWriter.writeEnd();
}
if (!haveContent) {
// theEventWriter.writeEnd();
theEventWriter.writeNull();
}
theEventWriter.writeEnd();
theEventWriter.writeEnd();
}
if (!haveContent) {
// theEventWriter.writeEnd();
theEventWriter.writeNull();
}
// if (extensions.size() > 0) {
//
// theEventWriter.name(extType);
// theEventWriter.beginArray();
// for (ArrayList<HeldExtension> next : extensions) {
// if (next == null || next.isEmpty()) {
// theEventWriter.nullValue();
// } else {
// theEventWriter.beginArray();
// // next.write(theEventWriter);
// theEventWriter.endArray();
// }
// }
// for (int i = extensions.size(); i < valueIdx; i++) {
// theEventWriter.nullValue();
// }
// theEventWriter.endArray();
// }
theEventWriter.writeEnd();
}
// if (extensions.size() > 0) {
//
// theEventWriter.name(extType);
// theEventWriter.beginArray();
// for (ArrayList<HeldExtension> next : extensions) {
// if (next == null || next.isEmpty()) {
// theEventWriter.nullValue();
// } else {
// theEventWriter.beginArray();
// // next.write(theEventWriter);
// theEventWriter.endArray();
// }
// }
// for (int i = extensions.size(); i < valueIdx; i++) {
// theEventWriter.nullValue();
// }
// theEventWriter.endArray();
// }
theEventWriter.writeEnd();
}
}
}
@ -686,7 +693,6 @@ public class JsonParser extends BaseParser implements IParser {
encodeCompositeElementChildrenToStreamWriter(theResDef, theResource, theElement, theEventWriter, resDef.getChildren());
}
private void encodeResourceToJsonStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, JsonGenerator theEventWriter, String theObjectNameOrNull) throws IOException {
super.containResourcesForEncoding(theResource);
@ -703,12 +709,79 @@ public class JsonParser extends BaseParser implements IParser {
theEventWriter.write("id", theResource.getId().getValue());
}
extractAndWriteExtensionsAsDirectChild(theResource, theEventWriter, resDef, theResDef, theResource);
encodeCompositeElementToStreamWriter(theResDef, theResource, theResource, theEventWriter, resDef);
theEventWriter.writeEnd();
}
/**
* This is useful only for the two cases where extensions are encoded as direct children (e.g. not in some object called _name): resource extensions, and extension extensions
*/
private void extractAndWriteExtensionsAsDirectChild(IElement theElement, JsonGenerator theEventWriter, BaseRuntimeElementDefinition<?> theElementDef, RuntimeResourceDefinition theResDef,
IResource theResource) throws IOException {
List<HeldExtension> extensions = new ArrayList<HeldExtension>(0);
List<HeldExtension> modifierExtensions = new ArrayList<HeldExtension>(0);
// Undeclared extensions
extractUndeclaredExtensions(theElement, extensions, modifierExtensions);
// Declared extensions
extractDeclaredExtensions(theElement, theElementDef, extensions, modifierExtensions);
// Write the extensions
writeExtensionsAsDirectChild(theResource, theEventWriter, theResDef, extensions, modifierExtensions);
}
private void writeExtensionsAsDirectChild(IResource theResource, JsonGenerator theEventWriter, RuntimeResourceDefinition resDef, List<HeldExtension> extensions,
List<HeldExtension> modifierExtensions) throws IOException {
if (extensions.isEmpty() == false) {
theEventWriter.writeStartArray("extension");
for (HeldExtension next : extensions) {
next.write(resDef, theResource, theEventWriter);
}
theEventWriter.writeEnd();
}
if (modifierExtensions.isEmpty() == false) {
theEventWriter.writeStartArray("modifierExtension");
for (HeldExtension next : modifierExtensions) {
next.write(resDef, theResource, theEventWriter);
}
theEventWriter.writeEnd();
}
}
private void extractUndeclaredExtensions(IElement theResource, List<HeldExtension> extensions, List<HeldExtension> modifierExtensions) {
if (theResource instanceof ISupportsUndeclaredExtensions) {
List<ExtensionDt> ext = ((ISupportsUndeclaredExtensions) theResource).getUndeclaredExtensions();
for (ExtensionDt next : ext) {
extensions.add(new HeldExtension(next));
}
ext = ((ISupportsUndeclaredExtensions) theResource).getUndeclaredModifierExtensions();
for (ExtensionDt next : ext) {
modifierExtensions.add(new HeldExtension(next));
}
}
}
private void extractDeclaredExtensions(IElement theResource, BaseRuntimeElementDefinition<?> resDef, List<HeldExtension> extensions, List<HeldExtension> modifierExtensions) {
for (RuntimeChildDeclaredExtensionDefinition nextDef : resDef.getExtensionsNonModifier()) {
for (IElement nextValue : nextDef.getAccessor().getValues(theResource)) {
if (nextValue != null) {
extensions.add(new HeldExtension(nextDef, nextValue));
}
}
}
for (RuntimeChildDeclaredExtensionDefinition nextDef : resDef.getExtensionsModifier()) {
for (IElement nextValue : nextDef.getAccessor().getValues(theResource)) {
if (nextValue != null) {
modifierExtensions.add(new HeldExtension(nextDef, nextValue));
}
}
}
}
private void writeAtomLink(JsonGenerator theEventWriter, String theRel, StringDt theLink) {
if (isNotBlank(theLink.getValue())) {
@ -748,14 +821,38 @@ public class JsonParser extends BaseParser implements IParser {
private class HeldExtension {
private ExtensionDt myUndeclaredExtension;
private RuntimeChildDeclaredExtensionDefinition myDef;
private IElement myValue;
public HeldExtension(ExtensionDt theUndeclaredExtension) {
assert theUndeclaredExtension != null;
myUndeclaredExtension = theUndeclaredExtension;
}
public HeldExtension(RuntimeChildDeclaredExtensionDefinition theDef, IElement theValue) {
assert theDef != null;
assert theValue != null;
myDef = theDef;
myValue = theValue;
}
public void write(RuntimeResourceDefinition theResDef, IResource theResource, JsonGenerator theEventWriter) throws IOException {
if (myUndeclaredExtension != null) {
writeUndeclaredExt(theResDef, theResource, theEventWriter, myUndeclaredExtension);
} else {
theEventWriter.writeStartObject();
theEventWriter.write("url", myDef.getExtensionUrl());
BaseRuntimeElementDefinition<?> def = myDef.getChildElementDefinitionByDatatype(myValue.getClass());
if (def.getChildType() == ChildTypeEnum.RESOURCE_BLOCK) {
extractAndWriteExtensionsAsDirectChild(myValue, theEventWriter, def, theResDef, theResource);
} else {
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, myValue, def, "value" + WordUtils.capitalize(def.getName()));
}
// theEventWriter.name(myUndeclaredExtension.get);
theEventWriter.writeEnd();
}
}
@ -775,7 +872,7 @@ public class JsonParser extends BaseParser implements IParser {
} else {
BaseRuntimeElementDefinition<?> def = myContext.getElementDefinition(value.getClass());
// theEventWriter.writeName("value" + def.getName());
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, value, def, "value" + def.getName());
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, value, def, "value" + WordUtils.capitalize(def.getName()));
}
// theEventWriter.name(myUndeclaredExtension.get);

View File

@ -183,7 +183,6 @@ public class XmlParser extends BaseParser implements IParser {
return parseBundle(streamReader);
}
@Override
public <T extends IResource> T parseResource(Class<T> theResourceType, Reader theReader) {
XMLEventReader streamReader;
@ -277,7 +276,8 @@ public class XmlParser extends BaseParser implements IParser {
}
}
private void encodeChildElementToStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, XMLStreamWriter theEventWriter, IElement nextValue, String childName, BaseRuntimeElementDefinition<?> childDef, String theExtensionUrl) throws XMLStreamException, DataFormatException {
private void encodeChildElementToStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, XMLStreamWriter theEventWriter, IElement nextValue, String childName,
BaseRuntimeElementDefinition<?> childDef, String theExtensionUrl, boolean theIncludedResource) throws XMLStreamException, DataFormatException {
if (nextValue.isEmpty()) {
return;
}
@ -289,7 +289,7 @@ public class XmlParser extends BaseParser implements IParser {
if (value != null) {
theEventWriter.writeStartElement(childName);
theEventWriter.writeAttribute("value", value);
encodeExtensionsIfPresent(theResDef, theResource, theEventWriter, nextValue);
encodeExtensionsIfPresent(theResDef, theResource, theEventWriter, nextValue, theIncludedResource);
theEventWriter.writeEndElement();
}
break;
@ -301,7 +301,7 @@ public class XmlParser extends BaseParser implements IParser {
theEventWriter.writeAttribute("url", theExtensionUrl);
}
BaseRuntimeElementCompositeDefinition<?> childCompositeDef = (BaseRuntimeElementCompositeDefinition<?>) childDef;
encodeCompositeElementToStreamWriter(theResDef, theResource, nextValue, theEventWriter, childCompositeDef);
encodeCompositeElementToStreamWriter(theResDef, theResource, nextValue, theEventWriter, childCompositeDef, theIncludedResource);
theEventWriter.writeEndElement();
break;
}
@ -341,22 +341,23 @@ public class XmlParser extends BaseParser implements IParser {
}
private void encodeCompositeElementChildrenToStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, IElement theElement, XMLStreamWriter theEventWriter, List<? extends BaseRuntimeChildDefinition> children) throws XMLStreamException, DataFormatException {
private void encodeCompositeElementChildrenToStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, IElement theElement, XMLStreamWriter theEventWriter,
List<? extends BaseRuntimeChildDefinition> children, boolean theIncludedResource) throws XMLStreamException, DataFormatException {
for (BaseRuntimeChildDefinition nextChild : children) {
if (nextChild instanceof RuntimeChildNarrativeDefinition) {
if (nextChild instanceof RuntimeChildNarrativeDefinition && !theIncludedResource) {
INarrativeGenerator gen = myContext.getNarrativeGenerator();
if (gen != null) {
NarrativeDt narr = gen.generateNarrative(theResDef.getResourceProfile(), theResource);
if (narr!=null) {
if (narr != null) {
RuntimeChildNarrativeDefinition child = (RuntimeChildNarrativeDefinition) nextChild;
String childName = nextChild.getChildNameByDatatype(child.getDatatype());
BaseRuntimeElementDefinition<?> type = child.getChildByName(childName);
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, narr, childName, type, null);
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, narr, childName, type, null, theIncludedResource);
continue;
}
}
}
List<? extends IElement> values = nextChild.getAccessor().getValues(theElement);
if (values == null || values.isEmpty()) {
continue;
@ -383,27 +384,27 @@ public class XmlParser extends BaseParser implements IParser {
}
theEventWriter.writeAttribute("url", extensionUrl);
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, nextValue, childName, childDef, null);
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, nextValue, childName, childDef, null, theIncludedResource);
theEventWriter.writeEndElement();
} else {
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, nextValue, childName, childDef, extensionUrl);
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, nextValue, childName, childDef, extensionUrl, theIncludedResource);
}
}
}
}
private void encodeCompositeElementToStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, IElement theElement, XMLStreamWriter theEventWriter, BaseRuntimeElementCompositeDefinition<?> resDef) throws XMLStreamException, DataFormatException {
encodeExtensionsIfPresent(theResDef, theResource, theEventWriter, theElement);
encodeCompositeElementChildrenToStreamWriter(theResDef, theResource, theElement, theEventWriter, resDef.getExtensions());
encodeCompositeElementChildrenToStreamWriter(theResDef, theResource, theElement, theEventWriter, resDef.getChildren());
private void encodeCompositeElementToStreamWriter(RuntimeResourceDefinition theResDef, IResource theResource, IElement theElement, XMLStreamWriter theEventWriter,
BaseRuntimeElementCompositeDefinition<?> resDef, boolean theIncludedResource) throws XMLStreamException, DataFormatException {
encodeExtensionsIfPresent(theResDef, theResource, theEventWriter, theElement, theIncludedResource);
encodeCompositeElementChildrenToStreamWriter(theResDef, theResource, theElement, theEventWriter, resDef.getExtensions(), theIncludedResource);
encodeCompositeElementChildrenToStreamWriter(theResDef, theResource, theElement, theEventWriter, resDef.getChildren(), theIncludedResource);
}
private void encodeExtensionsIfPresent(RuntimeResourceDefinition theResDef, IResource theResource, XMLStreamWriter theWriter, IElement theElement) throws XMLStreamException, DataFormatException {
private void encodeExtensionsIfPresent(RuntimeResourceDefinition theResDef, IResource theResource, XMLStreamWriter theWriter, IElement theElement, boolean theIncludedResource) throws XMLStreamException, DataFormatException {
if (theElement instanceof ISupportsUndeclaredExtensions) {
ISupportsUndeclaredExtensions res = (ISupportsUndeclaredExtensions) theElement;
encodeUndeclaredExtensions(theResDef, theResource, theWriter, res.getUndeclaredExtensions(), "extension");
encodeUndeclaredExtensions(theResDef, theResource, theWriter, res.getUndeclaredModifierExtensions(), "modifierExtension");
encodeUndeclaredExtensions(theResDef, theResource, theWriter, res.getUndeclaredExtensions(), "extension", theIncludedResource);
encodeUndeclaredExtensions(theResDef, theResource, theWriter, res.getUndeclaredModifierExtensions(), "modifierExtension", theIncludedResource);
}
}
@ -414,7 +415,7 @@ public class XmlParser extends BaseParser implements IParser {
reference = myContext.getResourceDefinition(theRef.getResourceType()).getName() + '/' + theRef.getResourceId();
}
}
if (!(theRef.getDisplay().isEmpty())) {
theEventWriter.writeStartElement("display");
theEventWriter.writeAttribute("value", theRef.getDisplay().getValue());
@ -427,7 +428,12 @@ public class XmlParser extends BaseParser implements IParser {
}
}
private void encodeResourceToXmlStreamWriter(IResource theResource, XMLStreamWriter theEventWriter, boolean theIncludeResourceId) throws XMLStreamException, DataFormatException {
/**
* @param theIncludedResource
* Set to true only if this resource is an "included" resource, as opposed to a "root level" resource by itself or in a bundle entry
*
*/
private void encodeResourceToXmlStreamWriter(IResource theResource, XMLStreamWriter theEventWriter, boolean theIncludedResource) throws XMLStreamException, DataFormatException {
super.containResourcesForEncoding(theResource);
RuntimeResourceDefinition resDef = myContext.getResourceDefinition(theResource);
@ -438,16 +444,17 @@ public class XmlParser extends BaseParser implements IParser {
theEventWriter.writeStartElement(resDef.getName());
theEventWriter.writeDefaultNamespace(FHIR_NS);
if (theIncludeResourceId && StringUtils.isNotBlank(theResource.getId().getValue())) {
if (theIncludedResource && StringUtils.isNotBlank(theResource.getId().getValue())) {
theEventWriter.writeAttribute("id", theResource.getId().getValue());
}
encodeCompositeElementToStreamWriter(resDef, theResource, theResource, theEventWriter, resDef);
encodeCompositeElementToStreamWriter(resDef, theResource, theResource, theEventWriter, resDef, theIncludedResource);
theEventWriter.writeEndElement();
}
private void encodeUndeclaredExtensions(RuntimeResourceDefinition theResDef, IResource theResource, XMLStreamWriter theWriter, List<ExtensionDt> extensions, String tagName) throws XMLStreamException, DataFormatException {
private void encodeUndeclaredExtensions(RuntimeResourceDefinition theResDef, IResource theResource, XMLStreamWriter theWriter, List<ExtensionDt> extensions, String tagName, boolean theIncludedResource)
throws XMLStreamException, DataFormatException {
for (ExtensionDt next : extensions) {
theWriter.writeStartElement(tagName);
theWriter.writeAttribute("url", next.getUrl().getValue());
@ -460,11 +467,11 @@ public class XmlParser extends BaseParser implements IParser {
throw new ConfigurationException("Unable to encode extension, unregognized child element type: " + nextValue.getClass().getCanonicalName());
}
BaseRuntimeElementDefinition<?> childDef = extDef.getChildElementDefinitionByDatatype(nextValue.getClass());
encodeChildElementToStreamWriter(theResDef, theResource, theWriter, nextValue, childName, childDef, null);
encodeChildElementToStreamWriter(theResDef, theResource, theWriter, nextValue, childName, childDef, null, theIncludedResource);
}
// child extensions
encodeExtensionsIfPresent(theResDef, theResource, theWriter, next);
encodeExtensionsIfPresent(theResDef, theResource, theWriter, next, theIncludedResource);
theWriter.writeEndElement();
}
@ -540,7 +547,7 @@ public class XmlParser extends BaseParser implements IParser {
} else {
theEventWriter.writeStartElement(se.getName().getPrefix(), se.getName().getLocalPart(), se.getName().getNamespaceURI());
}
for (Iterator<?> attrIter = se.getAttributes(); attrIter.hasNext(); ) {
for (Iterator<?> attrIter = se.getAttributes(); attrIter.hasNext();) {
Attribute next = (Attribute) attrIter.next();
theEventWriter.writeAttribute(next.getName().getLocalPart(), next.getValue());
}

View File

@ -107,7 +107,6 @@ public class JsonParserTest {
public void testSimpleResourceEncode() throws IOException {
FhirContext ctx = new FhirContext(Observation.class);
// String name = "/observation-example-eeg.xml";
String xmlString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.xml"), Charset.forName("UTF-8"));
Patient obs = ctx.newXmlParser().parseResource(Patient.class, xmlString);
@ -117,7 +116,8 @@ public class JsonParserTest {
ctx.newJsonParser().setPrettyPrint(true).encodeResourceToWriter(obs, new OutputStreamWriter(System.out));
String encoded = ctx.newJsonParser().encodeResourceToString(obs);
IParser jsonParser = ctx.newJsonParser();
String encoded = jsonParser.encodeResourceToString(obs);
ourLog.info(encoded);
String jsonString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.json"));
@ -125,10 +125,48 @@ public class JsonParserTest {
JSON expected = JSONSerializer.toJSON(jsonString);
JSON actual = JSONSerializer.toJSON(encoded.trim());
ourLog.info("Expected: {}", expected);
ourLog.info("Actual : {}", actual);
assertEquals(expected.toString(), actual.toString());
}
@Test
public void testSimpleResourceEncodeWithCustomType() throws IOException {
FhirContext ctx = new FhirContext(MyObservationWithExtensions.class);
String xmlString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.xml"), Charset.forName("UTF-8"));
MyObservationWithExtensions obs = ctx.newXmlParser().parseResource(MyObservationWithExtensions.class, xmlString);
assertEquals(0, obs.getAllUndeclaredExtensions().size());
assertEquals("aaaa", obs.getExtAtt().getContentType().getValue());
assertEquals("str1", obs.getMoreExt().getStr1().getValue());
assertEquals("2011-01-02", obs.getModExt().getValueAsString());
List<ExtensionDt> undeclaredExtensions = obs.getContact().get(0).getName().getFamily().get(0).getUndeclaredExtensions();
ExtensionDt undeclaredExtension = undeclaredExtensions.get(0);
assertEquals("http://hl7.org/fhir/Profile/iso-21090#qualifier", undeclaredExtension.getUrl().getValue());
ctx.newJsonParser().setPrettyPrint(true).encodeResourceToWriter(obs, new OutputStreamWriter(System.out));
IParser jsonParser = ctx.newJsonParser();
String encoded = jsonParser.encodeResourceToString(obs);
ourLog.info(encoded);
String jsonString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.json"));
JSON expected = JSONSerializer.toJSON(jsonString);
JSON actual = JSONSerializer.toJSON(encoded.trim());
ourLog.info("Expected: {}", expected);
ourLog.info("Actual : {}", actual);
assertEquals(expected.toString(), actual.toString());
}
@Test
public void testSimpleBundleEncode() throws IOException {
@ -261,10 +299,8 @@ public class JsonParserTest {
HumanNameDt given = name.addGiven("Joe");
ExtensionDt ext2 = new ExtensionDt(false, "http://examples.com#givenext", new StringDt("Hello"));
given.addUndeclaredExtension(ext2);
String output = new FhirContext().newJsonParser().setPrettyPrint(true).encodeResourceToString(patient);
ourLog.info(output);
String enc = new FhirContext().newJsonParser().encodeResourceToString(patient);
ourLog.info(enc);
//@formatter:off
assertThat(enc, containsString(("{" +
" \"resourceType\":\"Patient\"," +
@ -283,7 +319,7 @@ public class JsonParserTest {
" \"extension\":[" +
" {" +
" \"url\":\"http://examples.com#givenext\"," +
" \"valuestring\":\"Hello\"" +
" \"valueString\":\"Hello\"" +
" }" +
" ]" +
" }" +
@ -291,7 +327,12 @@ public class JsonParserTest {
"}").replaceAll(" +", "")));
//@formatter:on
Patient parsed = new FhirContext().newJsonParser().parseResource(Patient.class, new StringReader(enc));
IParser newJsonParser = new FhirContext().newJsonParser();
StringReader reader = new StringReader(enc);
Patient parsed = newJsonParser.parseResource(Patient.class, reader);
ourLog.info(new FhirContext().newXmlParser().setPrettyPrint(true).encodeResourceToString(parsed));
assertEquals(1, parsed.getNameFirstRep().getUndeclaredExtensionsByUrl("http://examples.com#givenext").size());
ExtensionDt ext = parsed.getNameFirstRep().getUndeclaredExtensionsByUrl("http://examples.com#givenext").get(0);
assertEquals("Hello", ext.getValueAsPrimitive().getValue());
@ -309,10 +350,8 @@ public class JsonParserTest {
ExtensionDt ext2 = new ExtensionDt(false, "http://examples.com#givenext", new StringDt("Hello"));
family.addUndeclaredExtension(ext2);
String output = new FhirContext().newJsonParser().setPrettyPrint(true).encodeResourceToString(patient);
ourLog.info(output);
String enc = new FhirContext().newJsonParser().encodeResourceToString(patient);
ourLog.info(enc);
//@formatter:off
assertThat(enc, containsString(("{\n" +
" \"resourceType\":\"Patient\",\n" +
@ -326,7 +365,7 @@ public class JsonParserTest {
" \"extension\":[\n" +
" {\n" +
" \"url\":\"http://examples.com#givenext\",\n" +
" \"valuestring\":\"Hello\"\n" +
" \"valueString\":\"Hello\"\n" +
" }\n" +
" ]\n" +
" }\n" +

View File

@ -0,0 +1,114 @@
package ca.uhn.fhir.parser;
import java.util.Collections;
import java.util.List;
import ca.uhn.fhir.model.api.BaseElement;
import ca.uhn.fhir.model.api.IElement;
import ca.uhn.fhir.model.api.IResourceBlock;
import ca.uhn.fhir.model.api.annotation.Block;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.Extension;
import ca.uhn.fhir.model.api.annotation.ResourceDef;
import ca.uhn.fhir.model.dstu.composite.AttachmentDt;
import ca.uhn.fhir.model.dstu.resource.Patient;
import ca.uhn.fhir.model.primitive.DateDt;
import ca.uhn.fhir.model.primitive.StringDt;
import ca.uhn.fhir.util.ElementUtil;
@ResourceDef(name="Patient")
public class MyObservationWithExtensions extends Patient {
@Extension(url = "urn:patientext:att", definedLocally = false, isModifier = false)
@Child(name = "extAtt", order = 0)
private AttachmentDt myExtAtt;
@Extension(url = "urn:patientext:moreext", definedLocally = false, isModifier = false)
@Child(name = "moreExt", order = 1)
private MoreExt myMoreExt;
@Extension(url = "urn:modext", definedLocally = false, isModifier = true)
@Child(name = "modExt", order = 2)
private DateDt myModExt;
public AttachmentDt getExtAtt() {
return myExtAtt;
}
public MoreExt getMoreExt() {
return myMoreExt;
}
public void setMoreExt(MoreExt theMoreExt) {
myMoreExt = theMoreExt;
}
public DateDt getModExt() {
return myModExt;
}
public void setModExt(DateDt theModExt) {
myModExt = theModExt;
}
public void setExtAtt(AttachmentDt theExtAtt) {
myExtAtt = theExtAtt;
}
@Override
public boolean isEmpty() {
return super.isEmpty() && ElementUtil.isEmpty(myExtAtt, myModExt, myMoreExt);
}
/**
* Block class for child element: <b>Observation.referenceRange</b> (Provides guide for interpretation)
*
* <p>
* <b>Definition:</b> Guidance on how to interpret the value by comparison to a normal or recommended range
* </p>
*/
@Block(name = "Observation.someExtensions")
public static class MoreExt extends BaseElement implements IResourceBlock {
@Extension(url = "urn:patientext:moreext:1", definedLocally = false, isModifier = false)
@Child(name = "str1", order = 0)
private StringDt myStr1;
@Extension(url = "urn:patientext:moreext:2", definedLocally = false, isModifier = false)
@Child(name = "str2", order = 1)
private StringDt myStr2;
public StringDt getStr1() {
return myStr1;
}
public void setStr1(StringDt theStr1) {
myStr1 = theStr1;
}
public StringDt getStr2() {
return myStr2;
}
public void setStr2(StringDt theStr2) {
myStr2 = theStr2;
}
@Override
public List<IElement> getAllPopulatedChildElements() {
return Collections.emptyList();
}
@Override
public <T extends IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType) {
return Collections.emptyList();
}
@Override
public boolean isEmpty() {
return ElementUtil.isEmpty(myStr1, myStr2);
}
}
}

View File

@ -6,7 +6,13 @@ import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.StringReader;
import java.nio.charset.Charset;
import java.util.List;
import net.sf.json.JSON;
import net.sf.json.JSONSerializer;
import org.apache.commons.io.IOUtils;
import org.custommonkey.xmlunit.Diff;
@ -581,4 +587,74 @@ public class XmlParserTest {
assertEquals("Hello", ext.getValueAsPrimitive().getValue());
}
@Test
public void testSimpleResourceEncode() throws IOException, SAXException {
FhirContext ctx = new FhirContext(Observation.class);
String xmlString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.json"), Charset.forName("UTF-8"));
Patient obs = ctx.newJsonParser().parseResource(Patient.class, xmlString);
List<ExtensionDt> undeclaredExtensions = obs.getContact().get(0).getName().getFamily().get(0).getUndeclaredExtensions();
ExtensionDt undeclaredExtension = undeclaredExtensions.get(0);
assertEquals("http://hl7.org/fhir/Profile/iso-21090#qualifier", undeclaredExtension.getUrl().getValue());
ctx.newJsonParser().setPrettyPrint(true).encodeResourceToWriter(obs, new OutputStreamWriter(System.out));
IParser jsonParser = ctx.newXmlParser();
String encoded = jsonParser.encodeResourceToString(obs);
ourLog.info(encoded);
String jsonString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.xml"));
String expected = (jsonString);
String actual = (encoded.trim());
Diff d = new Diff(new StringReader(expected), new StringReader(actual));
assertTrue(d.toString(), d.identical());
}
@Test
public void testSimpleResourceEncodeWithCustomType() throws IOException, SAXException {
FhirContext ctx = new FhirContext(MyObservationWithExtensions.class);
String xmlString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.json"), Charset.forName("UTF-8"));
MyObservationWithExtensions obs = ctx.newJsonParser().parseResource(MyObservationWithExtensions.class, xmlString);
assertEquals(0, obs.getAllUndeclaredExtensions().size());
assertEquals("aaaa", obs.getExtAtt().getContentType().getValue());
assertEquals("str1", obs.getMoreExt().getStr1().getValue());
assertEquals("2011-01-02", obs.getModExt().getValueAsString());
List<ExtensionDt> undeclaredExtensions = obs.getContact().get(0).getName().getFamily().get(0).getUndeclaredExtensions();
ExtensionDt undeclaredExtension = undeclaredExtensions.get(0);
assertEquals("http://hl7.org/fhir/Profile/iso-21090#qualifier", undeclaredExtension.getUrl().getValue());
ctx.newJsonParser().setPrettyPrint(true).encodeResourceToWriter(obs, new OutputStreamWriter(System.out));
IParser jsonParser = ctx.newXmlParser();
String encoded = jsonParser.encodeResourceToString(obs);
ourLog.info(encoded);
String jsonString = IOUtils.toString(JsonParser.class.getResourceAsStream("/example-patient-general.xml"));
String expected = (jsonString);
String actual = (encoded.trim());
Diff d = new Diff(new StringReader(expected), new StringReader(actual));
assertTrue(d.toString(), d.identical());
}
}

View File

@ -13,11 +13,11 @@
"extension":[
{
"url":"urn:patientext:moreext:1",
"valuestring":"str1"
"valueString":"str1"
},
{
"url":"urn:patientext:moreext:2",
"valuestring":"str2"
"valueString":"str2"
}
]
}
@ -25,7 +25,7 @@
"modifierExtension":[
{
"url":"urn:modext",
"valuedate":"2011-01-02"
"valueDate":"2011-01-02"
}
],
"text":{
@ -124,7 +124,7 @@
"extension":[
{
"url":"http://hl7.org/fhir/Profile/iso-21090#qualifier",
"valuecode":"VV"
"valueCode":"VV"
}
]
},

View File

@ -1,4 +1,5 @@
<Patient xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ./fhir-single.xsd">
<Patient xmlns="http://hl7.org/fhir">
<!-- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ./fhir-single.xsd"> -->
<extension url="urn:patientext:att">
<valueAttachment>
<contentType value="aaaa"/>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
@ -19,7 +19,7 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
</dependency>
</dependencies>
@ -28,7 +28,7 @@
<plugin>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<executions>
<execution>
<goals>
@ -39,30 +39,84 @@
<configuration>
<package>ca.uhn.fhir.model.dstu</package>
<baseResourceNames>
<!-- <baseResourceName>account</baseResourceName> -->
<!-- <baseResourceName>activitydefinition-extensions</baseResourceName> -->
<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-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>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>namespace</baseResourceName> -->
<baseResourceName>observation</baseResourceName>
<baseResourceName>operationoutcome</baseResourceName>
<baseResourceName>orderresponse</baseResourceName>
<baseResourceName>order</baseResourceName>
<baseResourceName>organization</baseResourceName>
<baseResourceName>other</baseResourceName>
<baseResourceName>patient</baseResourceName>
<baseResourceName>person</baseResourceName>
<baseResourceName>practitioner</baseResourceName>
<baseResourceName>procedure</baseResourceName>
<baseResourceName>profile</baseResourceName>
<baseResourceName>protocol</baseResourceName>
<!-- <baseResourceName>provenance-extensions</baseResourceName> -->
<baseResourceName>provenance</baseResourceName>
<baseResourceName>query</baseResourceName>
<!-- <baseResourceName>questionnaire-extensions</baseResourceName> -->
<baseResourceName>questionnaire</baseResourceName>
<baseResourceName>relatedperson</baseResourceName>
<baseResourceName>remittance</baseResourceName>
<baseResourceName>resource</baseResourceName>
<baseResourceName>securityevent</baseResourceName>
<baseResourceName>sequence</baseResourceName>
<baseResourceName>sequencinganalysis</baseResourceName>
<baseResourceName>sequencinglab</baseResourceName>
<baseResourceName>slot</baseResourceName>
<baseResourceName>specimen</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

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry excluding="**/*.java" kind="src" path="src/test/resources"/>
<classpathentry kind="src" path="target/gen"/>
<classpathentry including="**/*.java" kind="src" path="src/main/java"/>
<classpathentry excluding="**/*.java" kind="src" path="src/main/resources"/>
<classpathentry combineaccessrules="false" kind="src" path="/hapi-fhir-base"/>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
@ -20,7 +20,7 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
</dependency>
<dependency>

View File

@ -0,0 +1,145 @@
<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>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-plugin</artifactId>
<packaging>maven-plugin</packaging>
<!-- <packaging>jar</packaging> -->
<name>HAPI Tinder Plugin</name>
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools</artifactId>
<version>2.0</version>
</dependency>
<!-- General -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.6</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
<scope>test</scope>
</dependency>
<!-- Maven -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<maven_version>3.1.1</maven_version>
</properties>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version>
<reportSets>
<reportSet>
<reports>
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version>
<configuration>
<!-- see http://jira.codehaus.org/browse/MNG-5346 -->
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration> <executions> <execution> <id>mojo-descriptor</id> <goals>
<goal>descriptor</goal> </goals> </execution> </executions> </plugin> -->
</plugins>
</build>
</project>

View File

@ -27,8 +27,8 @@ import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.api.ExtensionDt;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.api.annotation.SimpleSetter;
import ca.uhn.fhir.model.dstu.composite.ResourceReferenceDt;
import ca.uhn.fhir.tinder.model.BaseElement;
@ -160,7 +160,7 @@ public abstract class BaseStructureParser {
Class.forName(type);
return (type);
} catch (ClassNotFoundException e4) {
throw new MojoFailureException("Unknown type: " + theNextType);
throw new MojoFailureException("Unknown type: " + theNextType + " - Have locally defined names: " + new TreeSet<String>(myLocallyDefinedClassNames.keySet()));
}
}
}

View File

@ -3,6 +3,7 @@ package ca.uhn.fhir.tinder;
import java.io.InputStream;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
@ -12,8 +13,8 @@ import org.w3c.dom.NodeList;
import ca.uhn.fhir.tinder.model.AnyChild;
import ca.uhn.fhir.tinder.model.BaseElement;
import ca.uhn.fhir.tinder.model.Child;
import ca.uhn.fhir.tinder.model.BaseRootType;
import ca.uhn.fhir.tinder.model.Child;
import ca.uhn.fhir.tinder.model.ResourceBlock;
import ca.uhn.fhir.tinder.model.ResourceBlockCopy;
import ca.uhn.fhir.tinder.model.SearchParameter;
@ -32,10 +33,18 @@ public abstract class BaseStructureSpreadsheetParser extends BaseStructureParser
private int myColV2Mapping;
public void parse() throws Exception {
int index = 0;
for (InputStream nextInputStream : getInputStreams()) {
Document file = XMLUtils.parse(nextInputStream, false);
ourLog.info("Reading spreadsheet file {}", getInputStreamNames().get(index));
Document file;
try {
file = XMLUtils.parse(nextInputStream, false);
} catch (Exception e) {
throw new Exception("Failed during reading: " + getInputStreamNames().get(index), e);
}
Element dataElementsSheet = (Element) file.getElementsByTagName("Worksheet").item(0);
NodeList tableList = dataElementsSheet.getElementsByTagName("Table");
Element table = (Element) tableList.item(0);
@ -55,11 +64,11 @@ public abstract class BaseStructureSpreadsheetParser extends BaseStructureParser
parseBasicElements(resourceRow, resource);
resource.setId(resource.getName().toLowerCase());
if (this instanceof ResourceGeneratorUsingSpreadsheet) {
resource.setProfile("http://hl7.org/fhir/profiles/" + resource.getElementName());
}
Map<String, BaseElement> elements = new HashMap<String, BaseElement>();
elements.put(resource.getElementName(), resource);
@ -105,6 +114,7 @@ public abstract class BaseStructureSpreadsheetParser extends BaseStructureParser
}
index++;
}
ourLog.info("Parsed {} spreadsheet structures", getResources().size());
@ -166,6 +176,8 @@ public abstract class BaseStructureSpreadsheetParser extends BaseStructureParser
protected abstract Collection<InputStream> getInputStreams();
protected abstract List<String> getInputStreamNames();
private void parseFirstRow(Element theDefRow) {
for (int i = 0; i < 20; i++) {
String nextName = cellValue(theDefRow, i);

View File

@ -1,6 +1,5 @@
package ca.uhn.fhir.tinder;
import java.io.File;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collection;
@ -25,23 +24,10 @@ public class DatatypeGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
protected Collection<InputStream> getInputStreams() {
ArrayList<InputStream> retVal = new ArrayList<InputStream>();
retVal.add(getClass().getResourceAsStream("/dt/address.xml"));
retVal.add(getClass().getResourceAsStream("/dt/coding.xml"));
retVal.add(getClass().getResourceAsStream("/dt/humanname.xml"));
retVal.add(getClass().getResourceAsStream("/dt/period.xml"));
retVal.add(getClass().getResourceAsStream("/dt/ratio.xml"));
retVal.add(getClass().getResourceAsStream("/dt/schedule.xml"));
retVal.add(getClass().getResourceAsStream("/dt/attachment.xml"));
retVal.add(getClass().getResourceAsStream("/dt/contact.xml"));
retVal.add(getClass().getResourceAsStream("/dt/identifier.xml"));
retVal.add(getClass().getResourceAsStream("/dt/quantity.xml"));
retVal.add(getClass().getResourceAsStream("/dt/resourcereference.xml"));
retVal.add(getClass().getResourceAsStream("/dt/codeableconcept.xml"));
// retVal.add(getClass().getResourceAsStream("/dt/extension.xml"));
// retVal.add(getClass().getResourceAsStream("/dt/narrative.xml"));
retVal.add(getClass().getResourceAsStream("/dt/range.xml"));
retVal.add(getClass().getResourceAsStream("/dt/sampleddata.xml"));
for (String next : getInputStreamNames()) {
retVal.add(getClass().getResourceAsStream(next));
}
return retVal;
}
@ -50,5 +36,29 @@ public class DatatypeGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
return new Composite();
}
@Override
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"));
return retVal;
}
}

View File

@ -4,7 +4,6 @@ import static org.apache.commons.lang.StringUtils.capitalize;
import static org.apache.commons.lang.StringUtils.isBlank;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.HashMap;

View File

@ -18,6 +18,7 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
private ArrayList<InputStream> myInputStreams;
private List<String> myInputStreamNames;
@Override
protected String getTemplate() {
@ -143,6 +144,7 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
}
public void setBaseResourceNames(List<String> theBaseResourceNames) throws MojoFailureException {
myInputStreamNames = theBaseResourceNames;
myInputStreams = new ArrayList<InputStream>();
for (String next : theBaseResourceNames) {
@ -154,6 +156,10 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
}
}
public List<String> getInputStreamNames() {
return myInputStreamNames;
}
@Override
protected BaseRootType createRootType() {
return new Resource();

View File

@ -1,7 +1,6 @@
package ca.uhn.fhir.tinder;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

View File

@ -1,6 +1,6 @@
package ca.uhn.fhir.tinder.model;
import static org.apache.commons.lang.StringUtils.*;
import static org.apache.commons.lang.StringUtils.isNotBlank;
import java.util.ArrayList;
import java.util.Collections;
@ -237,8 +237,11 @@ public abstract class BaseElement {
String[] types = typeString.replace("=", "").split("\\|");
for (String nextType : types) {
nextType = nextType.trim();
if (nextType.endsWith(")")){
nextType = nextType.substring(0, nextType.length()-1);
}
if (nextType.toLowerCase().startsWith("resource(")) {
nextType = nextType.substring("Resource(".length(), nextType.length() - 1);
nextType = nextType.substring("Resource(".length(), nextType.length());
nextType = nextType.substring(0, 1).toUpperCase() + nextType.substring(1);
} else {
nextType = nextType.substring(0, 1).toUpperCase() + nextType.substring(1);

View File

@ -2,11 +2,8 @@ package ca.uhn.fhir.tinder.model;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import org.codehaus.plexus.util.StringUtils;

View File

@ -0,0 +1,430 @@
<?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>

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,874 @@
<?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>9030</WindowHeight>
<WindowWidth>19455</WindowWidth>
<WindowTopX>1035</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="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">(informative) A response to a scheduled appointment for a patient and/or practitioner(s)</Data></Cell>
<Cell><Data ss:Type="String">A scheduled appointment for a patient and/or practitioner(s) where a service may take place.</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">Resource(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">Resource(Practitioner|Patient|RelatedPerson|Device)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">A Person of device that is participating in the appointment</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.recorder</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">Resource(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.recordedDate</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>
<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>
<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">string</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>
<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="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 participant has accepted the appointment</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 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 participant has tentative 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">The participant has needs-action 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>14</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,727 @@
<?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>2013-12-20T11:31: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>4335</WindowHeight>
<WindowWidth>14055</WindowWidth>
<WindowTopX>75</WindowTopX>
<WindowTopY>255</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">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="9" 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="11" 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..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"/>
<Cell ss:StyleID="s72"><Data ss:Type="String">The type of appointments that can be booked into slots attached to this availability resource (ideally this would be an identifiable service - which is at a location, rather than the location itself) - change to CodeableConcept</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.individual</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Location|Practitioner|Device|Patient|RelatedPerson)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The type of resource this availability resource is providing availability information for</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.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">The period of time that the slots that are attached to this availability resource cover (even if none exist)</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">
<Cell><Data ss:Type="String">Availability.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">Resource(Practitioner|Patient|RelatedPerson)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who authored the availability</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">ORGANIZER:MAILTO:jane_doe@host1.com&#10;This can be populated with a value from the referenced resource</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Availability.authorDate</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>
<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="28" 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">!period</Data></Cell>
<Cell><Data ss:Type="String">Appointment date/time.</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Availability.period</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">individual</Data></Cell>
<Cell><Data ss:Type="String">The individual to find an availability for</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Availability.individual</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">slottype</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 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>8</ActiveRow>
</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"/>
<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>
<RangeSelection>R2</RangeSelection>
</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="s78"><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>5</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

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,871 @@
<?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:17Z</Created>
<LastSaved>2013-12-28T21:23: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>9705</WindowHeight>
<WindowWidth>18555</WindowWidth>
<WindowTopX>19455</WindowTopX>
<WindowTopY>8895</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: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="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="s69" 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>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<NumberFormat ss:Format="#,##0"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s73">
<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="s74">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s75">
<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="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s76">
<Alignment 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"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s78">
<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="s79">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s80">
<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>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="29" 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="267.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="32.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="53.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="39.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="36"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="113.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="83.25"/>
<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="60.75"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column 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">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">Summary</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">CDISC define.xml 2.0</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">ConceptMap</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">10;10</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A statement of relationships from one set of concepts to one or more other concept systems</Data></Cell>
<Cell><Data ss:Type="String">A statement of relationships from one set of concepts to one or more other concept systems</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">ConceptMap.identifier</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">Logical id to reference this concept map</Data></Cell>
<Cell><Data ss:Type="String">The identifier that is used to identify this concept map when it is referenced in a specification, model, design or an instance (should be globally unique OID, UUID, or URI)</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">ConceptMap.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">Logical id for this version of the concept map</Data></Cell>
<Cell><Data ss:Type="String">The identifier that is used to identify this version of the concept map when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the profile author manually and the value should be a timestamp</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">There may be multiple resource versions of the concept map that have this same identifier</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.name</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">Informal name for this concept map</Data></Cell>
<Cell><Data ss:Type="String">A free text natural language name describing the concept map</Data></Cell>
<Cell><Data ss:Type="String">Support human navigation</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">Not expected to be unique</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">ConceptMap.publisher</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Name of the publisher (Organization or individual)</Data></Cell>
<Cell><Data ss:Type="String">The name of the individual or organization that published the concept map</Data></Cell>
<Cell><Data ss:Type="String">Helps establish the &quot;authority/credibility&quot; of the conept map. May also allow for contact</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">Usually an organization, but may be an individual. This item SHOULD be populated unless the information is available from context.</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ConceptMap.telecom</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="4" ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Contact</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Contact information of the publisher</Data></Cell>
<Cell><Data ss:Type="String">Contacts of the publisher to assist a user in finding and communicating with the publisher</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">May be a web site, an email address, a telephone number (tel:), etc.</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">ConceptMap.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">Human language description of the concept map</Data></Cell>
<Cell><Data ss:Type="String">A free text natural language description of the use of the concept map - reason for definition, conditions of use, etc.</Data></Cell>
<Cell><Data ss:Type="String">Human understandability</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">The description is not intended to describe the semantics of the concept map. The description should capture its intended use, which is needed for ensuring integrity for its use in models across future changes.</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">ConceptMap.copyright</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">About the concept map or its content</Data></Cell>
<Cell><Data ss:Type="String">A copyright statement relating to the concept map and/or its contents</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Frequently, the copyright differs between the concept map, and codes that are included. The copyright statement should clearly differentiate between these when required</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ConceptMap.status</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ValueSetStatus</Data></Cell>
<Cell><Data ss:Type="String">draft | active | retired&#10;</Data></Cell>
<Cell><Data ss:Type="String">The status of the concept map</Data></Cell>
<Cell><Data ss:Type="String">Identify when/if the concept map should be used.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">Allows filtering of ConceptMaps that are appropriate for use</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">ConceptMap.experimental</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">If for testing purposes, not real usage</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">This ConceptMap was authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">Allows filtering of ConceptMaps that are appropriate for use</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">ConceptMap.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 for given status</Data></Cell>
<Cell><Data ss:Type="String">The date that the concept map status was last changed</Data></Cell>
<Cell><Data ss:Type="String">Need to know when a concept map was first legal for use or became withdrawn or replaced.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">Note that this is not the same as the resource last-modified-date, since the resource may be a secondary representation of the concept map</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.source</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(ValueSet)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identifies the source value set which is being mapped</Data></Cell>
<Cell><Data ss:Type="String">The source value set that specifies the concepts that are being mapped</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Y</Data></Cell>
<Cell><Data ss:Type="String">Should be a version specific reference</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">ConceptMap.target</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(ValueSet)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Provides context to the mappings</Data></Cell>
<Cell><Data ss:Type="String">The target value set provides context to the mappings. Note that the mapping is made between concepts, not between value sets, but the value set provides important context about how the concept mapping choices are made</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">ConceptMap.concept</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="4" ss:StyleID="s70"><Data ss:Type="String">280;20</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Mappings for a concept from the source valueset</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Generally, the ideal is that there would only be one mapping for each concept in the source value set, but a given concept may be mapped mutliple times with different comments or dependencies</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">!ConceptMap.concept.name</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s70"/>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Name for this concept (if just a group)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.concept.system</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="4" ss:StyleID="s70"/>
<Cell ss:Index="6"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">System that defines the concept being mapped</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ConceptMap.concept.code</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">!</Data></Cell>
<Cell><Data ss:Type="String">Identifies concept being mapped</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">ConceptMap.concept.dependsOn</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">200;150</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String" x:Ticked="1">=OtherConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Other concepts required for this mapping (from context)</Data></Cell>
<Cell><Data ss:Type="String">A set of additional dependencies for this mapping to hold. This mapping is only applicable if the specified concept can be resolved, and it has the specified value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">ConceptMap.concept.dependsOn.concept</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">Reference to element/field/valueset provides the context</Data></Cell>
<Cell><Data ss:Type="String">A reference to a specific concept that holds a coded value. This can be an element in a FHIR resource, or a specific reference to a data element in a different specification (e.g. v2) or a general reference to a kind of data field, or a reference to a value set with an appropriately narrow definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.concept.dependsOn.system</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">System for a concept in the referenced concept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.concept.dependsOn.code</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">!</Data></Cell>
<Cell><Data ss:Type="String">Code for a concept in the referenced concept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">ConceptMap.concept.map</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="4" ss:StyleID="s70"><Data ss:Type="String">420;120</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A concept from the target value set that this concept maps to </Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Ideally there would only be one map, with equal or equivalent mapping. But multiple maps are allowed for several narrower options, or to assert that other concepts are unmatched</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.concept.map.system</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">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">System of the target</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Should be a version specific reference</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ConceptMap.concept.map.code</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">!</Data></Cell>
<Cell><Data ss:Type="String">Code that identifies the target concept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">ConceptMap.concept.map.equivalence</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ConceptMapEquivalence</Data></Cell>
<Cell><Data ss:Type="String">equal | equivalent | wider | subsumes | narrower | specialises | inexact | unmatched | disjoint</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">ConceptMap.concept.map.comments</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Description of status/issues in mapping</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">ConceptMap.concept.map.product</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String" x:Ticked="1">@ConceptMap.concept.dependsOn</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Other concepts that this mapping also produces</Data></Cell>
<Cell><Data ss:Type="String">A set of additional outcomes from this mapping to other value sets. To properly execute this mapping, the specified value set must be mapped to some data element or source that is in context. The mapping may still be useful without a place for the additional data elements, but the equivalence cannot be relied on</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">!ConceptMap.concept.concept</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String" x:Ticked="1">@ConceptMap.concept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Mappings for sub concepts</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/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>2</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>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>6</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="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s72" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="309.75"/>
<Column ss:Index="6" ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="447"/>
<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><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="3" ss:StyleID="s73"><Data ss:Type="String">ConceptMap.concept.map</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">If the map is narrower, there SHALL be some comments</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">exists(f:comments) or ((f:equivalence/@value != 'narrower') and (f:equivalence/@value != 'inexact'))</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:Index="3" ss:StyleID="s73"><Data ss:Type="String">ConceptMap.concept.map</Data></Cell>
<Cell><Data ss:Type="String">If a code is provided, a system SHALL be provided</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">exists(f:system) or not(exists(f: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/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>300</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="43" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s74" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="383.25"/>
<Column ss:Index="4" ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="301.5"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s75">
<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><Data ss:Type="String">The identifier of the concept map</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">ConceptMap.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">version</Data></Cell>
<Cell><Data ss:Type="String">The version identifier of the concept map</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">ConceptMap.version</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">name</Data></Cell>
<Cell><Data ss:Type="String">Name of the concept map</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">ConceptMap.name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">publisher</Data></Cell>
<Cell><Data ss:Type="String">Name of the publisher of the concept map</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">ConceptMap.publisher</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">description</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Text search in the description of the concept map</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">ConceptMap.description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">status</Data></Cell>
<Cell><Data ss:Type="String">Status of the concept map</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">ConceptMap.status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">The concept map publication date</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">ConceptMap.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source</Data></Cell>
<Cell><Data ss:Type="String">The system for any concepts mapped by this concept map</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">ConceptMap.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="s76"><Data ss:Type="String">ConceptMap.target</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">system</Data></Cell>
<Cell><Data ss:Type="String">The system for any destination concepts mapped by this map</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">ConceptMap.concept.map.system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">dependson</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">ConceptMap.concept.dependsOn.concept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">product</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">ConceptMap.concept.map.product.concept</Data></Cell>
</Row>
<Row ss:Index="24" ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" 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/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>9</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="5" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s79" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s79" ss:AutoFitWidth="0" ss:Width="113.25"/>
<Column ss:StyleID="s79" ss:AutoFitWidth="0" ss:Width="209.25"/>
<Column ss:StyleID="s79" ss:AutoFitWidth="0" ss:Width="78.75"/>
<Column ss:StyleID="s79" ss:AutoFitWidth="0" ss:Width="140.25"/>
<Column ss:StyleID="s79" ss:AutoFitWidth="0" ss:Width="161.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>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">ConceptMapEquivalence</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The degree of equivalence between concepts</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">#concept-equivalence</Data></Cell>
<Cell ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s63"/>
<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>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="concept-equivalence">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:Width="468"/>
<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">Parent</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="s63"><Data ss:Type="String">equal</Data></Cell>
<Cell><Data ss:Type="String">The definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identifical or irrelevant (i.e. intensionally identical)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">equivalent</Data></Cell>
<Cell><Data ss:Type="String">The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">wider</Data></Cell>
<Cell><Data ss:Type="String">The target mapping is wider in meaning than the source concept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">8</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">subsumes</Data></Cell>
<Cell><Data ss:Type="String">The target mapping subsumes the meaning of the source concept (e.g. the source is-a target)</Data></Cell>
<Cell><Data ss:Type="String">wider</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">narrower</Data></Cell>
<Cell><Data ss:Type="String">The target mapping is narrower in meaning that the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when atempting to use these mappings operationally</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">9</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">specialises</Data></Cell>
<Cell><Data ss:Type="String">The target mapping specialises the meaning of the source concept (e.g. the target is-a source)</Data></Cell>
<Cell><Data ss:Type="String">narrower</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">inexact</Data></Cell>
<Cell><Data ss:Type="String">The target mapping overlaps with the source concept, but both source and target cover additional meaning. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when atempting to use these mappings operationally</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">unmatched</Data></Cell>
<Cell><Data ss:Type="String">There is no match for this concept in the destination concept system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">7</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">disjoint</Data></Cell>
<Cell><Data ss:Type="String">This is an explicit assertion that there is no mapping between the source and target concept</Data></Cell>
<Cell><Data ss:Type="String">unmatched</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>3</ActiveCol>
</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:DefaultRowHeight="15">
<Column ss:Width="66.75"/>
<Column ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:Width="166.5"/>
<Column ss:Width="183"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s80"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s74"><Data ss:Type="String">General</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">General ConceptMap Example</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="Number">101</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">conceptmap-example.xml</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s74"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Speciment Type</Data></Cell>
<Cell><Data ss:Type="String">Specimen Type v2 -&gt; SNOMED-CT Mapping</Data></Cell>
<Cell><Data ss:Type="Number">102</Data></Cell>
<Cell><Data ss:Type="String">conceptmap-example-specimen-type.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>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,998 @@
<?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-25T02:47:00Z</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>2280</WindowHeight>
<WindowWidth>10005</WindowWidth>
<WindowTopX>120</WindowTopX>
<WindowTopY>9000</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 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="#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"/>
<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"/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</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="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">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s73">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s74">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s75">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</Style>
<Style ss:ID="s76">
<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="s77">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s78">
<Font ss:FontName="Arial" x:Family="Swiss" ss:Color="#000000"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="28" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="197.25"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="56.25" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="35.25"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="93"/>
<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"
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"/>
<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">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">Condition</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">200;0</Data></Cell>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String"> Detailed information about conditions, problems or diagnoses</Data></Cell>
<Cell><Data ss:Type="String">Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Observation[classCode=OBS, moodCode=EVN, code=ASSERTION, value&lt;Diagnosis]</Data></Cell>
<Cell><Data ss:Type="String">PPR message</Data></Cell>
<Cell><Data ss:Type="String">* Age is questionable, you might well need a range of Age or even (in practice)&#10;&#10;a text like &quot;in their teens&quot;. =&gt; new ballot comment.&#10;&#10;* Todo: discuss the applicability of assessing stages&#10;&#10;* Change the description: it is circular</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.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="s68"><Data ss:Type="String">External Ids for this condition</Data></Cell>
<Cell><Data ss:Type="String">This records identifiers associated with this condition 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:StyleID="s69"><Data ss:Type="String">Need to allow connection to a wider workflow</Data></Cell>
<Cell ss:Index="12" ss:StyleID="s69"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s71"/>
<Cell ss:StyleID="s69"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Condition.subject</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who has the condition?</Data></Cell>
<Cell><Data ss:Type="String">Indicates the patient who the condition record is associated with</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=SBJ].role[classCode=PAT]</Data></Cell>
<Cell><Data ss:Type="String">PID-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Condition.encounter</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Encounter)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Encounter when condition first asserted</Data></Cell>
<Cell><Data ss:Type="String">Encounter during which the condition was first asserted</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.inboundRelationship[typeCode=COMP].source[classCode=ENC, moodCode=EVN]</Data></Cell>
<Cell><Data ss:Type="String">PV1-19 (+PV1-54)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Condition.asserter</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Practitioner|Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Person who asserts this condition</Data></Cell>
<Cell><Data ss:Type="String">Person who takes responsibility for asserting the existence of the condition as part of the electronic record</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=AUT].role</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">REL-7.1 identifier + REL-7.12 type code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Condition.dateAsserted</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">When first detected/suspected/entered</Data></Cell>
<Cell><Data ss:Type="String">Estimated or actual date the condition/problem/diagnosis was first detected/suspected</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.participation[typeCode=AUT].time</Data></Cell>
<Cell><Data ss:Type="String">REL-11</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.code</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">ConditionKind</Data></Cell>
<Cell><Data ss:Type="String">Identification of the condition, problem or diagnosis</Data></Cell>
<Cell><Data ss:Type="String">Identification of the condition, problem or diagnosis. </Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.value</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">PRB-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Condition.category</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">ConditionCategory</Data></Cell>
<Cell><Data ss:Type="String">E.g. complaint | symptom | finding | diagnosis</Data></Cell>
<Cell><Data ss:Type="String">A category assigned to the condition. E.g. complaint | symptom | finding | diagnosis</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">The categorization is often highly contextual and may appear poorly differentiated or not very useful in other contexts</Data></Cell>
<Cell><Data ss:Type="String">.code</Data></Cell>
<Cell><Data ss:Type="String">'problem' if from PRB-3. 'diagnosis' if from DG1 segment in PV1 message</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.status</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">ConditionStatus</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">provisional | working | confirmed | refuted</Data></Cell>
<Cell><Data ss:Type="String">The clinical status of the condition</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.code (pre or post-coordinated in)&#10;&#10;Can use valueNegationInd for refuted</Data></Cell>
<Cell><Data ss:Type="String">PRB-14 / DG1-6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.certainty</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ConditionCertainty</Data></Cell>
<Cell><Data ss:Type="String">Degree of confidence</Data></Cell>
<Cell><Data ss:Type="String">The degree of confidence that this condition is correct</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">May be a percentage</Data></Cell>
<Cell><Data ss:Type="String">.uncertaintyCode</Data></Cell>
<Cell><Data ss:Type="String">PRB-19</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Condition.severity</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">ConditionSeverity</Data></Cell>
<Cell><Data ss:Type="String">Subjective severity of condition</Data></Cell>
<Cell><Data ss:Type="String">A subjective assessment of the severity of the condition as evaluated by the clinician.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String"> Coding of the severity with a terminology is preferred, where possible</Data></Cell>
<Cell><Data ss:Type="String">Can be pre/post-coordinated into value. Or&#10;./inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;severity&quot;].value</Data></Cell>
<Cell><Data ss:Type="String">PRB-26 / ABS-3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Condition.onset[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">date | Age</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Estimated or actual date, or age</Data></Cell>
<Cell><Data ss:Type="String">Estimated or actual date the condition began, in the opinion of the clinician</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Age is generally used when the patient reports an age at which the Condition began to occur</Data></Cell>
<Cell><Data ss:Type="String">.effectiveTime.low&#10;or&#10;.inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;age at onset&quot;].value</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">PRB-16</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="225">
<Cell><Data ss:Type="String">Condition.abatement[x]</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">date | Age | boolean</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">If/when in resolution/remission</Data></Cell>
<Cell><Data ss:Type="String">The date or estimated date that the condition resolved or went into remission. This is called &quot;abatement&quot; because of the many overloaded connotations associated with &quot;remission&quot; or &quot;resolution&quot; - Conditions are never really resolved, but they can abate.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">There is no explicit distinction between resolution and remission because in many cases the distinction is not clear. Age is generally used when the patient reports an age at which the Condition abated.&#10;&#10;If there is no abatement element, it is unknown whether the condition has resolved or entered remission; applications and users should generally assume that the condition is still valid</Data></Cell>
<Cell><Data ss:Type="String">.effectiveTime.high&#10;or&#10;.inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;age at remission&quot;].value&#10;or&#10;.inboundRelationship[typeCode=SUBJ]source[classCode=CONC, moodCode=EVN].status=completed</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Condition.stage</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">0;0</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Stage/grade, usually assessed formally</Data></Cell>
<Cell><Data ss:Type="String">Clinical stage or grade of a condition. May include formal severity assessments</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">./inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;stage/grade&quot;]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Condition.stage.summary</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Simple summary (disease specific)</Data></Cell>
<Cell><Data ss:Type="String">A simple summary of the stage such as &quot;Stage 3&quot;. The determination of the stage is disease-specific</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Condition.stage.assessment</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Formal record of assessment</Data></Cell>
<Cell><Data ss:Type="String">Reference to a formal record of the evidence on which the staging assessment is based</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.self</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">When an assessment resource / framework is developed, this will be changed from Any to something narrower</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Condition.evidence</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">0;150</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Supporting evidence</Data></Cell>
<Cell><Data ss:Type="String">Supporting Evidence / manifestations that are the basis on which this condition is suspected or confirmed</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">The evidence may be a simple list of coded symptoms/manifestations, or references to observations or formal assessments, or both</Data></Cell>
<Cell><Data ss:Type="String">.outboundRelationship[typeCode=SPRT].target[classCode=OBS, moodCode=EVN]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.evidence.code</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">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Manifestation/symptom</Data></Cell>
<Cell><Data ss:Type="String">A manifestation or symptom that led to the recording of this condition</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">[code=&quot;diagnosis&quot;].value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.evidence.detail</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Any)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Supporting information found elsewhere</Data></Cell>
<Cell><Data ss:Type="String">Links to other relevant information, including pathology reports</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.self</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Condition.location</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">500;0</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Anatomical location, if relevant</Data></Cell>
<Cell><Data ss:Type="String">The anatomical location where this condition manifests itself</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">May be a summary code, or a reference to a very precise definition of the location, or both</Data></Cell>
<Cell><Data ss:Type="String">.targetBodySiteCode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Condition.location.code</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">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Location - may include laterality</Data></Cell>
<Cell><Data ss:Type="String">Code that identifies the structural location</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">May include laterality</Data></Cell>
<Cell><Data ss:Type="String">.self</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.location.detail</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">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Precise location details</Data></Cell>
<Cell><Data ss:Type="String">Detailed anatomical location information</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.originalText</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell><Data ss:Type="String">Condition.relatedItem</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">550;150</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Causes or precedents for this Condition</Data></Cell>
<Cell><Data ss:Type="String">Further conditions, problems, diagnoses, procedures or events that are related in some way to this condition, or the substance that caused/triggered this Condition</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">Although a condition may be caused by a substance, this is not intended to be used to record allergies/adverse reactions to substances</Data></Cell>
<Cell><Data ss:Type="String">.outboundRelationship[typeCode=RSON, SAS]</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">could infer from presence of multiple PRB segments in a PPR message that the problems are related, but not clear how to communicate the nature of the relationship</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.relatedItem.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">ConditionRelationshipType</Data></Cell>
<Cell><Data ss:Type="String">due-to | following</Data></Cell>
<Cell><Data ss:Type="String">The type of relationship that this condition has to the related item</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.typeCode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Condition.relatedItem.code</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell><Data ss:Type="String">ConditionKind</Data></Cell>
<Cell><Data ss:Type="String">Relationship target by means of a predefined code</Data></Cell>
<Cell><Data ss:Type="String">Code that identifies the target of this relationship. The code takes the place of a detailed instance target</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.target[classCode=OBS, moodCode=EVN].code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Condition.relatedItem.target</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Condition|Procedure|MedicationAdministration|Immunization|MedicationStatement)&#10;</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Relationship target resource</Data></Cell>
<Cell><Data ss:Type="String">Target of the relationship </Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.target[classCode=OBS, moodCode=EVN]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Condition.notes</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 information about the Condition</Data></Cell>
<Cell><Data ss:Type="String">Additional information about the Condition. This is a general notes/comments entry for description of the Condition, its diagnosis and prognosis</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">.inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;annotation&quot;].value</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">NTE child of PRB</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>
<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="s74" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="79.5"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="96.75"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="310.5"/>
<Column ss:Index="6" ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="365.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">1</Data></Cell>
<Cell><Data ss:Type="String">Stage rule</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.stage</Data></Cell>
<Cell><Data ss:Type="String">Stage SHALL have summary or assessment</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">exists(f:summary) or exists(f:assessment)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">Evidence</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.evidence</Data></Cell>
<Cell><Data ss:Type="String">evidence SHALL have code or details</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">exists(f:code) or exists(f:detail)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">Location</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.location</Data></Cell>
<Cell><Data ss:Type="String">location SHALL have code or details</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">exists(f:code) or exists(f:detail)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">Relationship</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.relatedItem</Data></Cell>
<Cell><Data ss:Type="String">Relationship SHALL have either a code or a target</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">exists(f:code) != exists(f: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/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</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="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"><Data ss:Type="String">admin-notify</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">(see Person)</Data></Cell>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"><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>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="28" 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="354.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" ss:Height="16.5">
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">Code for the condition</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="16.5">
<Cell><Data ss:Type="String">status</Data></Cell>
<Cell><Data ss:Type="String">The status of the condition</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">severity</Data></Cell>
<Cell><Data ss:Type="String">The severity of the condition</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.severity</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">category</Data></Cell>
<Cell><Data ss:Type="String">The category of the condition</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.category</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">onset</Data></Cell>
<Cell><Data ss:Type="String">When the Condition started (if started on a date)</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.onset[x]</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="s64"><Data ss:Type="String">Condition.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">encounter</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.encounter</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">asserter</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.asserter</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date-asserted</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.dateAsserted</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">evidence</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.evidence.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">location</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.location.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">related-item</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.relatedItem.target</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">stage</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition.stage.summary</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">related-code</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">Condition.relatedItem.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="2" ss:StyleID="s64"/>
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:Index="20" ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:Index="23" ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:Index="26" ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" 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>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="11" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="98.25"/>
<Column ss:AutoFitWidth="0" ss:Width="186.75"/>
<Column ss:AutoFitWidth="0" ss:Width="95.25"/>
<Column ss:Width="186"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s76"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Identity</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s76"><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 Condition Example</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">condition-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">2nd Case</Data></Cell>
<Cell><Data ss:Type="String">2nd Example</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">example2</Data></Cell>
<Cell><Data ss:Type="String">condition-example2.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Fever</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (fever)</Data></Cell>
<Cell><Data ss:Type="String">f201</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f201-fever.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Malignancy</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (malignancy)</Data></Cell>
<Cell><Data ss:Type="String">f202</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f202-malignancy.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sepsis</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (sepsis)</Data></Cell>
<Cell><Data ss:Type="String">f203</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f203-sepsis.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Renal insufficiency</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (renal insufficiency)</Data></Cell>
<Cell><Data ss:Type="String">f204</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f204-renal.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Bacterial Infection</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (Bacterial Infection)</Data></Cell>
<Cell><Data ss:Type="String">f205</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f205-infection.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Heart</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (heart)</Data></Cell>
<Cell><Data ss:Type="String">f001</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f001-heart.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Lung</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (lung)</Data></Cell>
<Cell><Data ss:Type="String">f002</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f002-lung.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Abscess</Data></Cell>
<Cell><Data ss:Type="String">Real-word condition example (abscess)</Data></Cell>
<Cell><Data ss:Type="String">f003</Data></Cell>
<Cell><Data ss:Type="String">condition-example-f003-abscess.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>11</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s73" ss:DefaultRowHeight="15">
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="57.75"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="287.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">Example</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="30">
<Cell ss:StyleID="s72"><Data ss:Type="String">ConditionKind</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Identification of the Condition or diagnosis. </Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">valueset-condition-code</Data></Cell>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s72"><Data ss:Type="String">ConditionCategory</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">A category assigned to the condition. E.g. finding | Condition | diagnosis | concern | condition</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s72"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">valueset-condition-category</Data></Cell>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s72"><Data ss:Type="String">ConditionStatus</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The clinical status of the Condition or diagnosis</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell ss:StyleID="s72"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#condition-status</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s72"><Data ss:Type="String">ConditionCertainty</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The degree of confidence that this condition is correct</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">valueset-condition-certainty</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">ConditionSeverity</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">A subjective assessment of the severity of the condition as evaluated by the clinician.</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">y</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">valueset-condition-severity</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">ConditionRelationshipType</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The type of relationship between a condition and its related item</Data></Cell>
<Cell ss:StyleID="s63"/>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#condition-relationship-type</Data></Cell>
</Row>
<Row 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>5</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="condition-relationship-type">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Comment</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">due-to</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">this condition follows the identified condition/procedure/substance and is a consequence of it</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">The consequence may be good or bad</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">following</Data></Cell>
<Cell><Data ss:Type="String">this condition follows the identified condition/procedure/substance, but it is not known whether they are causually linked</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">This condition follows the identified condition/procedure/substance, but may or may not be a consequence (i.e. causually linked)</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>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="condition-status">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="9" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<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">provisional</Data></Cell>
<Cell><Data ss:Type="String">This is a tentative diagnosis - still a candidate that is under consideration</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">working</Data></Cell>
<Cell><Data ss:Type="String">The patient is being treated on the basis that this is the condition, but it is still not confirmed</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">confirmed</Data></Cell>
<Cell><Data ss:Type="String">There is sufficient diagnostic and/or clinical evidence to treat this as a confirmed condition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">refuted</Data></Cell>
<Cell><Data ss:Type="String">This condition has been ruled out by diagnostic and clinical evidence</Data></Cell>
</Row>
<Row ss:Index="9" ss:AutoFitHeight="0">
<Cell ss:Index="2" 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/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,671 @@
<?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:11Z</Created>
<LastSaved>2013-05-08T18:54:27Z</LastSaved>
<Version>14.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>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="s74" 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="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="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s65">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" 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"/>
<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="s67">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:WrapText="1"/>
<Interior ss:Color="#FFFF00" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s68">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</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="Top"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
</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="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s81" ss:Parent="s74">
<Alignment 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="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="163.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="126.75"/>
<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"/>
<Column ss:Index="18" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="243"/>
<Row ss:AutoFitHeight="0" ss:Height="29.25" 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">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">Coverage</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">Insurance or medical plan</Data></Cell>
<Cell><Data ss:Type="String">Financial instrument by which payment information for health care</Data></Cell>
<Cell><Data ss:Type="String">Health care programs and insurers are significant payors of health service costs</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Coverage</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<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">Resource(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="14" ss:StyleID="s81"><Data ss:Type="String">IN1-3-insurance company ID</Data></Cell>
<Cell ss:Index="18"><Data ss:Type="String">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#10;&lt;Organization xmlns=&quot;http://hl7.org/fhir&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://hl7.org/fhir ..\..\schema\Organization.xsd&quot;&gt;&#10; &lt;identifier&gt; &#10; &lt;identifier&gt;&#10; &lt;system&gt;oid:2.16.840.1.113883.3.19.2.3&lt;/system&gt;&#10; &lt;id&gt;666666&lt;/id&gt;&#10; &lt;/identifier&gt;&#10; &lt;/identifier&gt;&#10; &lt;name&gt;&#10; &lt;value&gt;XYZ Insurance&lt;/value&gt;&#10; &lt;/name&gt;&#10; &#10; &lt;text&gt;&#10; &lt;status&gt;generated&lt;/status&gt;&#10; &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&#10; &lt;p&gt;XYZ Insurance&lt;/p&gt;&#10; &lt;/div&gt;&#10; &lt;/text&gt;&#10;&lt;/Organization&gt;</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s67">
<Cell ss:StyleID="s66"><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="14"><Data ss:Type="String">IN1-12-plan effective date / IN1-13-plan expiration date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Coverage.type</Data></Cell>
<Cell><Data ss:Type="String">1..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="14" ss:StyleID="s81"><Data ss:Type="String">IN1-15-plan type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<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="s67"><Data ss:Type="String">The primary coverage ID</Data></Cell>
<Cell><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="14" ss:StyleID="s81"><Data ss:Type="String">IN1-2-health plan ID</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<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">Identifier</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">An identifier for the group</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Todo</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s81"><Data ss:Type="String">IN1-8-group number</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<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">Identifier</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">An identifier for the plan</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="14" ss:StyleID="s81"><Data ss:Type="String">IN1-35-company plan code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<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">Identifier</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">An identifier for the subsection of the plan</Data></Cell>
<Cell><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="14" ss:StyleID="s81"><Data ss:Type="String">IN1-10-insured's group emp ID</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<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="s67"><Data ss:Type="String">The dependent number</Data></Cell>
<Cell><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="14"><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>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<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="14" ss:StyleID="s81"><Data ss:Type="String">No V2.x equivalent concept seems to exist</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="49.5">
<Cell><Data ss:Type="String">Coverage.subscriber</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">Planholder information</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Coverage.subscriber.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" ss:StyleID="s67"><Data ss:Type="String">PolicyHolder name</Data></Cell>
<Cell><Data ss:Type="String">The name of the PolicyHolder</Data></Cell>
<Cell><Data ss:Type="String">Used to validate coverage</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s81"><Data ss:Type="String">IN1-16-name of insured</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Coverage.subscriber.address</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Address</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">PolicyHolder address</Data></Cell>
<Cell><Data ss:Type="String">The mailing address, typically home, of the PolicyHolder</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s81"><Data ss:Type="String">IN1-19-insured's address</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Coverage.subscriber.birthdate</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" ss:StyleID="s67"><Data ss:Type="String">PolicyHolder date of birth</Data></Cell>
<Cell><Data ss:Type="String">The date of birth of the PolicyHolder</Data></Cell>
<Cell><Data ss:Type="String">Used to validate coverage</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s81"><Data ss:Type="String">IN1-18-insured's date of birth</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>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>11</ActiveRow>
<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="s68" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0" ss:Height="16.5" 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>
<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="s64">
<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="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/>
<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="10" 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="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">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="s70"><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="s70"><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="s70"><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="s70"><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="s70"><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="s70"><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="s70"><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="s70"><Data ss:Type="String">Coverage.sequence</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">name</Data></Cell>
<Cell><Data ss:Type="String">The name of the subscriber</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Coverage.subscriber.name</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>9</ActiveRow>
<ActiveCol>3</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:StyleID="s71" ss:DefaultRowHeight="15">
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="114.75"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="201.75"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="214.5"/>
<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="45">
<Cell ss:StyleID="s62"><Data ss:Type="String">CoverageType</Data></Cell>
<Cell ss:StyleID="s69"><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 ss:StyleID="s72"><Data ss:Type="String">http://hl7.org/fhir/v3/vs/ActCoverageTypeCode</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<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/>
<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="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="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-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="s64"><Data ss:Type="String">Element</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Card.</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Inv.</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Must Understand</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">UML</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Short Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Requirements</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">To Do</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s64"><Data ss:Type="String">Vocab</Data></Cell>
<Cell ss:Index="20" ss:StyleID="s73"><Data ss:Type="String">Example</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s63"><Data ss:Type="String">Coverage.planHolder.language</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Written language for communications</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The language to be used for written communications.</Data></Cell>
<Cell ss:StyleID="s62"/>
<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="s63"><Data ss:Type="String">Coverage.exception</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">List of policy exception codes</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><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="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"/>
<Cell ss:StyleID="s62"/>
<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="s63"><Data ss:Type="String">Coverage.authorization</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">List of authorization codes </Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">List of special authorization codes which may apply to the services being reported.</Data></Cell>
<Cell ss:StyleID="s62"><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="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"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String"> &lt;authorization&gt;RC74387546&lt;/authorization&gt;</Data></Cell>
<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>
<RangeSelection>R5C1:R5C13</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,477 @@
<?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>
<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="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"
ss:Bold="1"/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</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:Vertical="Top"/>
</Style>
<Style ss:ID="s95">
<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="s96">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Borders/>
<Interior/>
</Style>
<Style ss:ID="s98">
<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="s99">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior/>
</Style>
<Style ss:ID="s118">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
<Interior/>
</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: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: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: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: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: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">Resource(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:Height="30" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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">Resource(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:Height="90" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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="s118"><Data ss:Type="String">A medical-related subsystem of a medical device</Data></Cell>
<Cell ss:StyleID="s118"><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:Height="30" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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:Height="75" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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:Height="30" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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:Height="30" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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:Height="30" ss:StyleID="s96">
<Cell ss:StyleID="s95"><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">Resource(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:StyleID="s99">
<Cell ss:StyleID="s98"/>
</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>
<VerticalResolution>0</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="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="s68"><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="5" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s73" ss:DefaultRowHeight="15">
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:StyleID="s73" 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">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s69"><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 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 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/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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

View File

@ -0,0 +1,920 @@
<?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-10-04T04:04: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>8715</WindowHeight>
<WindowWidth>21840</WindowWidth>
<WindowTopX>1500</WindowTopX>
<WindowTopY>3615</WindowTopY>
<TabRatio>705</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="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="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s78">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s80" 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="s81">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#FF0000"/>
</Style>
<Style ss:ID="s83" ss:Parent="s62">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s84">
<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="s85">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s86">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s87">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="16" 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">Resource(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="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"/>
<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="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: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: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: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: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: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>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>10</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>14</ActiveRow>
<ActiveCol>13</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="s76" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:Index="2" 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">
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s66"/>
<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="s66"/>
<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="s66"/>
<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="s66"/>
<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>
<ActiveCol>0</ActiveCol>
<RangeSelection>R2</RangeSelection>
</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="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/>
<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="s80"><Data ss:Type="String">FamilyHistory.subject</Data></Cell>
<Cell ss:StyleID="s81"/>
</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>
<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="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="s78"><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="s83" 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="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s78" ss:DefaultRowHeight="15">
<Column ss:StyleID="s78" ss:Width="101.25"/>
<Column ss:StyleID="s78" ss:Width="223.5" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s78" ss:Width="192.75"/>
<Column ss:StyleID="s78" ss:Width="63"/>
<Column ss:StyleID="s78" ss:Width="174.75"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s84"><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="String">Source</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="String">Filename</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="String">Example</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>
<Cell><Data ss:Type="String">familyhistory-genetics-profile-example.xml</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>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="14.0625">
<Column ss:Index="2" ss:StyleID="s85" ss:AutoFitWidth="0" ss:Width="300.75"/>
<Column ss:Index="4" ss:Width="162.75"/>
<Column ss:AutoFitWidth="0" ss:Width="107.25"/>
<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">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 ss:StyleID="s86"><Data ss:Type="String">familyhistory-example.xml</Data></Cell>
<Cell ss:Index="6"><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="s87"><Data ss:Type="String">mother</Data></Cell>
<Cell><Data ss:Type="String">familyhistory-example-mother.xml</Data></Cell>
<Cell ss:Index="6"><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="6"><Data ss:Type="String">n</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>3</ActiveRow>
<ActiveCol>2</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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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>

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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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

View File

@ -0,0 +1,558 @@
<?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>
<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 resource(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 it's 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">Resource(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">1..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">Contact</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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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">Resource(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>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="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">Resource(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">Resource(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">Resource(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,758 @@
<?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>
<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">Resource(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">Resource(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">Resource(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 | Resource(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">Resource(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">Schedule</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">Resource(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>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="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>

View File

@ -0,0 +1,764 @@
<?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-26T20:48: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>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">
<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: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="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</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" ss:Color="#000000"/>
</Style>
<Style ss:ID="s72">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="10" 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="31.5"/>
<Column 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="141.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="222.75"/>
<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">OrderResponse</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 response to an order</Data></Cell>
<Cell><Data ss:Type="String">A response to an order</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell><Data ss:Type="String">There might be more than one response to an order</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">ControlAct[classCode=ACTN, moodCode=EVN]</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">OrderResponse.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><Data ss:Type="String">Identifiers assigned to this order. The identifiers are usually assigned by the system responding to the order, but they may be provided or added to by other systems</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="60">
<Cell><Data ss:Type="String">OrderResponse.request</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">Resource(Order)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">The order that this is a response to</Data></Cell>
<Cell><Data ss:Type="String">A reference to the order that this is in response to</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.outboundRelationships[typeCode=FLFS].target</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">ORC-2 / ORC-3, or OBR-2 | OBR-3</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">OrderResponse.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 response was made</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">The date and time at which this order response was made (created/posted)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"><Data ss:Type="String">.participation[typeCode=AUT].time</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">ORC-9</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">OrderResponse.who</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">Resource(Practitioner|Organization|Device)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Who made the response</Data></Cell>
<Cell><Data ss:Type="String">The person, organization, or device credited with making the response</Data></Cell>
<Cell ss:Index="11" 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">Practitioner: ORC-19 | PRT / Organization: PRT</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="409.5">
<Cell><Data ss:Type="String">OrderResponse.authority[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 | Resource(Any)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">If required by policy</Data></Cell>
<Cell><Data ss:Type="String">A reference to an authority policy that is the reason for the response. Usually this is used when the order is rejected, to provide a reason for rejection</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">.outboundRelationships[typeCode=COVBY].target[classCode=POLICY, moodCode=EVN].code&#10;&#10;or&#10;&#10;.outboundRelationships[typeCode=COVBY].target[classCode=POLICY, moodCode=EVN]</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Defined in FHIR as 'if required by policy'; unclear how this would map to V2 except ORC-19.9-action by.assigning authority or ORC-30-enterer authorization mode, neither of which exactly scales to a resource</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">OrderResponse.code</Data></Cell>
<Cell><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">OrderOutcomeStatus</Data></Cell>
<Cell><Data ss:Type="String">pending | review | rejected | error | accepted | cancelled | replaced | aborted | complete</Data></Cell>
<Cell><Data ss:Type="String">What this response says about the status of the original order </Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.code (different trigger events for different outcomes)</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">ORC-1 + ORC-5</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">OrderResponse.description</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">Additional description of the response</Data></Cell>
<Cell><Data ss:Type="String">Additional description about the response - e.g. a text description provided by a human user when making decisions about the order</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.text</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">ORC-16.2-order control code reason.text</Data></Cell>
<Cell ss:StyleID="s66"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">OrderResponse.fulfillment</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">Resource(Any)</Data></Cell>
<Cell ss:StyleID="s66"/>
<Cell><Data ss:Type="String">Details of the outcome of performing the order</Data></Cell>
<Cell><Data ss:Type="String">Links to resources that provide details of the outcome of performing the order. E.g. Diagnostic Reports in a response that is made to an order that referenced a diagnostic order</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s66"/>
<Cell ss:Index="13" ss:StyleID="s66"><Data ss:Type="String">.outboundRelationship[typeCode=SUBJ]/target[moodCode=RQO]</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">OBR+OBX[n] / RXE / RXD / RXG / RXA / BPX / BTX&#10;</Data></Cell>
<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>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: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="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="8" ss:ExpandedRowCount="38" 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="92.25"/>
<Column ss:AutoFitWidth="0" ss:Width="279.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">request</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">OrderResponse.request</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="s71"><Data ss:Type="String">OrderResponse.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">who</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">OrderResponse.who</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="s71"><Data ss:Type="String">OrderResponse.code</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">fulfillment</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">OrderResponse.fulfillment</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>
</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>4</ActiveRow>
<ActiveCol>0</ActiveCol>
<RangeSelection>R5</RangeSelection>
</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><Data ss:Type="String">OrderOutcomeStatus</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The status of the response to an order</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#order-outcome-code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s72"/>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<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>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="order-outcome-code">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="10" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Definition</Data></Cell>
<Cell><Data ss:Type="String">Parent</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">pending</Data></Cell>
<Cell><Data ss:Type="String">The order is known, but no processing has occurred at this time</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">review</Data></Cell>
<Cell><Data ss:Type="String">The order is undergoing initial processing to determine whether it will be accepted (usually this involves human review)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">rejected</Data></Cell>
<Cell><Data ss:Type="String">The order was rejected because of a workflow/business logic reason</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">error</Data></Cell>
<Cell><Data ss:Type="String">The order was unable to be processed because of a technical error (i.e. unexpected error)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell><Data ss:Type="String">accepted</Data></Cell>
<Cell><Data ss:Type="String">The order has been accepted, and work is in progress</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell><Data ss:Type="String">cancelled</Data></Cell>
<Cell><Data ss:Type="String">Processing the order was halted at the initiators request</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">9</Data></Cell>
<Cell><Data ss:Type="String">replaced</Data></Cell>
<Cell><Data ss:Type="String">The order has been cancelled and replaced by another</Data></Cell>
<Cell><Data ss:Type="String">#6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">7</Data></Cell>
<Cell><Data ss:Type="String">aborted</Data></Cell>
<Cell><Data ss:Type="String">Processing the order was stopped because of some workflow/business logic reason</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">8</Data></Cell>
<Cell><Data ss:Type="String">complete</Data></Cell>
<Cell><Data ss:Type="String">The order has been completed</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,744 @@
<?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-08-07T03:42: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>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>
</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">Other</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">Other 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">Other.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">Other.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">OtherResourceType</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="s68"><Data ss:Type="String">Must be able to distinguish different types of &quot;other&quot; resources.</Data></Cell>
<Cell><Data ss:Type="String">Because resource references will only be able to indicate 'Other', 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">Other.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">Resource(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">Other.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">Resource(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">Other.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>
</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">Other.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">Other.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">Other.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>4</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">OtherResourceType</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-other-resource-type</Data></Cell>
<Cell><Data ss:Type="String">HL7-maintained set of codes for &quot;Other&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>
<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="57"/>
<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 'other' 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">other-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 'Other' 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">other-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">other-example-narrative</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">other-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>1</ActiveCol>
</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,906 @@
<?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>David Hay</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2013-04-13T23:01: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>2715</WindowHeight>
<WindowWidth>10005</WindowWidth>
<WindowTopX>60</WindowTopX>
<WindowTopY>4320</WindowTopY>
<TabRatio>614</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="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="s67">
<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"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#000000"/>
</Style>
<Style ss:ID="s71">
<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="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s75">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s77" 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="s78">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#FF0000"/>
</Style>
<Style ss:ID="s79">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s80">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s81">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s82">
<Font ss:FontName="Arial" x:Family="Swiss" ss:Color="#000000"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="21" ss:ExpandedRowCount="20" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s64" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s65" ss:Width="195.75"/>
<Column ss:StyleID="s64" ss:Width="29.25"/>
<Column ss:StyleID="s64" ss:Width="23.25"/>
<Column ss:StyleID="s64" ss:Width="60"/>
<Column ss:StyleID="s64" ss:Width="27"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="225"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="138.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="170.25"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="135.75"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="77.25" ss:Span="1"/>
<Column ss:Index="12" 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="21" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="170.25"/>
<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">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 ss:Index="21"><Data ss:Type="String">save</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Procedure</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:StyleID="Default"/>
<Cell><Data ss:Type="String">An action that is performed on a patient</Data></Cell>
<Cell><Data ss:Type="String">An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy</Data></Cell>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell ss:Index="14"><Data ss:Type="String">Procedure[moodCode=EVN]</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:Index="21"><Data ss:Type="String">Resource</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Procedure.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="s69"/>
<Cell ss:StyleID="s70"><Data ss:Type="String">External Ids for this procedure</Data></Cell>
<Cell><Data ss:Type="String">This records identifiers associated with this procedure 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="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Need to allow connection to a wider workflow</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s71"><Data ss:Type="String">.id</Data></Cell>
<Cell ss:StyleID="s71"/>
<Cell ss:Index="17" ss:StyleID="s69"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Procedure.subject</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Who procedure was performed on</Data></Cell>
<Cell><Data ss:Type="String">The person on whom the procedure was performed</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.participation[typeCode=SBJ].role</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Patient)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Procedure.type</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">Identification of the procedure</Data></Cell>
<Cell><Data ss:Type="String">The specific procedure that is performed. Use text if the exact nature of the procedure can't be coded</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.code</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">CodeableConcept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Procedure.bodySite</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Precise location details</Data></Cell>
<Cell><Data ss:Type="String">Detailed and structured anatomical location information. Multiple locations are allowed - e.g. multiple punch biopsies of a lesion</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.approachSiteCode</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Is this approach or target site?</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">CodeableConcept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Procedure.indication</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Reason procedure performed</Data></Cell>
<Cell><Data ss:Type="String">The reason why the procedure was performed. This may be due to a Condition, may be coded entity of some type, or may simply be present as text</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">e.g. endoscopy for dilatation and biopsy, combination diagnosis and therapuetic</Data></Cell>
<Cell><Data ss:Type="String">.reasonCode</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Condition) | CodeableConcept | string </Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Procedure.performer</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">300;0</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The people who performed the procedure</Data></Cell>
<Cell><Data ss:Type="String">Limited to 'real' people rather than equipment</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.participation[typeCode=PFM]</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Procedure.performer.person</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Practitioner)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The reference to the practitioner</Data></Cell>
<Cell><Data ss:Type="String">The practitioner who was involved in the procedure</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.role</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Practitioner)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Procedure.performer.role</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">The role the person was in</Data></Cell>
<Cell><Data ss:Type="String">E.g. surgeon, anaethetist, endoscopist</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.functionCode</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">CodeableConcept</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Procedure.date</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 date the procedure was performed</Data></Cell>
<Cell><Data ss:Type="String">The dates over which the procedure was performed. Allows a period to support complex procedures that span more that one date, and also allows for the length of the procedure to be captured.</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.effectiveTime</Data></Cell>
<Cell><Data ss:Type="String">This should be choice of dateTime|Period</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Period</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Procedure.encounter</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Encounter)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The encounter when procedure performed</Data></Cell>
<Cell><Data ss:Type="String">The encounter during which the procedure was performed</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.inboundRelationship[typeCode=COMP].source[classCode=ENC, moodCode=EVN]</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Encounter)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Procedure.outcome</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 was result of procedure?</Data></Cell>
<Cell><Data ss:Type="String">What was the outcome of the procedure - did it resolve reasons why the procedure was performed? </Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.outboundRelationship[typeCode=OUT].target.text</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Observation) | CodeableConcept | string</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Procedure.report</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(DiagnosticReport)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Any report that results from the procedure</Data></Cell>
<Cell><Data ss:Type="String">This could be a histology result. There could potentially be multiple reports - e.g. if this was a procedure that made multiple biopsies</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN]</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(DiagnosticReport)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Procedure.complication</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Complication following the procedure</Data></Cell>
<Cell><Data ss:Type="String">Any complications that occurred during the procedure, or in the immediate post-operative period. These are generally tracked separately from the notes, which typically will describe the procedure itself rather than any 'post procedure' issues</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">Need specialization of OUT for this.</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Need harmonization proposal for new ActRelationshipType code</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">string</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Procedure.followUp</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">Instructions for follow up</Data></Cell>
<Cell><Data ss:Type="String">If the procedure required specific follow up - e.g. removal of sutures. The followup may be represented as a simple note, or potentially could be more complex in which case the CarePlan resource can be used</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.outboundRelationship[typeCode=COMP].target[classCode=ACT, moodCode=INT].text</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Careplan) | string </Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Procedure.relatedItem</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">300;80</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A procedure that is related to this one</Data></Cell>
<Cell><Data ss:Type="String">Procedures may be related to other items such as procedures or medications. For example treating wound dehiscence following a previous procedure</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.outboundRelationship[typeCode=TRIG and target[classCode=PROC, moodCode=EVN]]</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="String">Procedure.relatedItem.type</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">ProcedureRelationshipType</Data></Cell>
<Cell><Data ss:Type="String">caused-by | because-of</Data></Cell>
<Cell><Data ss:Type="String">The nature of the relationship</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.inversionInd</Data></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Existing codes sound like synonyms. Suggest caused-by and caused</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell><Data ss:Type="String">Procedure.relatedItem.target</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(AdverseReaction | AllergyIntolerance | CarePlan | Condition | DeviceObservationReport | DiagnosticReport | FamilyHistory | ImagingStudy | Immunization | ImmunizationRecommendation | MedicationAdministration | MedicationDispense | MedicationPrescription | MedicationStatement | Observation | Procedure)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">The related item - e.g. a procedure</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.target</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">Resource(Procedure | Prescription)</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="String">Procedure.notes</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 information about procedure</Data></Cell>
<Cell><Data ss:Type="String">Any other notes about the procedure - e.g. the operative notes</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">.inboundRelationship[typeCode=SUBJ].source[classCode=OBS, moodCode=EVN, code=&quot;annotation&quot;].value</Data></Cell>
<Cell ss:Index="21"><Data ss:Type="String">string</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>
<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>
<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="s74" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="153"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s74" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s74" 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>-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="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="s75"/>
<Cell ss:StyleID="s75"/>
<Cell ss:StyleID="s75"/>
<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/>
<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="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" ss:Height="15.9375">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell><Data ss:Type="String">Type of procedure</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Procedure.type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">subject</Data></Cell>
<Cell><Data ss:Type="String">The identity of a patient to list procedures for</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Procedure.subject</Data></Cell>
<Cell ss:StyleID="s78"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">The date the procedure was performed on</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Procedure.date</Data></Cell>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" ss:StyleID="s65"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="8" 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>8</ActiveRow>
<ActiveCol>7</ActiveCol>
</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:AutoFitWidth="0" ss:Width="129"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:Width="137.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">Reference</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">ProcedureRelationshipType</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">The nature of the relationship with this procedure</Data></Cell>
<Cell ss:StyleID="s79"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#procedure-relationship-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s79"/>
<Cell ss:StyleID="s79"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s79"/>
<Cell ss:StyleID="s79"/>
</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="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="14.0625">
<Column ss:Index="2" ss:Width="142.5"/>
<Column ss:Width="45.75"/>
<Column ss:Width="197.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15">
<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">Identity</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">In Book</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="String">General</Data></Cell>
<Cell><Data ss:Type="String">General Procedure Example</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">procedure-example.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="String">Biopsy</Data></Cell>
<Cell><Data ss:Type="String">Example of a Biopsy</Data></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">biopsy</Data></Cell>
<Cell><Data ss:Type="String">procedure-example-biopsy.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">TPF chemotherapy</Data></Cell>
<Cell><Data ss:Type="String">Real-world procedure example</Data></Cell>
<Cell><Data ss:Type="String">f201</Data></Cell>
<Cell><Data ss:Type="String">procedure-example-f201-tpf.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Heart</Data></Cell>
<Cell><Data ss:Type="String">Real-world procedure example</Data></Cell>
<Cell><Data ss:Type="String">f001</Data></Cell>
<Cell><Data ss:Type="String">procedure-example-f001-heart.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Lung</Data></Cell>
<Cell><Data ss:Type="String">Real-world procedure example</Data></Cell>
<Cell><Data ss:Type="String">f002</Data></Cell>
<Cell><Data ss:Type="String">procedure-example-f002-lung.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">AbXXXscess</Data></Cell>
<Cell><Data ss:Type="String">Real-world procedure example</Data></Cell>
<Cell><Data ss:Type="String">f003</Data></Cell>
<Cell><Data ss:Type="String">procedure-example-f003-abscess.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Tracheotomy</Data></Cell>
<Cell><Data ss:Type="String">Real-world procedure example</Data></Cell>
<Cell><Data ss:Type="String">f004</Data></Cell>
<Cell><Data ss:Type="String">procedure-example-f004-tracheotomy.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">n</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>4</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="procedure-relationship-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="14.0625">
<Column ss:Index="2" ss:Width="93.75"/>
<Column ss:Width="293.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15">
<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">caused-by</Data></Cell>
<Cell><Data ss:Type="String">This procedure had to be performed because of the related one</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String">because-of</Data></Cell>
<Cell><Data ss:Type="String">This procedure caused the related one to be performed</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<Unsynced/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>1</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

View File

@ -0,0 +1,430 @@
<?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">Provenance 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 Provenance resource</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/Provenance"><Data
ss:Type="String">http://hl7.org/fhir/extensions/Provenance</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">provenance</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">*</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Resource(Provenance)</Data></Cell>
<Cell ss:StyleID="s73"/>
<Cell ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Most recent change</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">Provides the provenance record associated with the most recent update of the resource.</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Allows resources to point to their provenance rather than vice versa. Useful when submitting a single resource (rather than a feed)</Data></Cell>
<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,900 @@
<?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-11-19T21:09:09Z</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>1170</WindowHeight>
<WindowWidth>9570</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6495</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="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>
<Style ss:ID="s73">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" 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"/>
</Style>
<Style ss:ID="s76">
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="='Data Elements'!R1C1:R20C17"
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="20" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="207.75"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="33"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="25.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="37.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="32.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="93"/>
<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="254.25"/>
<Column ss:StyleID="s62" ss:Width="60"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="218.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s75" ss:AutoFitWidth="0" ss:Width="172.5"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="175.5"/>
<Row ss:AutoFitHeight="0" ss:Height="45" 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">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">Synonym</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">Prov Mapping</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">RIM Mapping 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="165">
<Cell><Data ss:Type="String">Provenance</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 ss:StyleID="s65"><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">Who, What, When for a set of resources</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Provenance information that describes the activity that led to the creation of a set of resources. This information can be used to help determine their reliability or trace where the information in them came from. The focus of the provenance resource is record keeping, audit and traceability, and not explicit statements of clinical significance</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">History; Event; Activity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Some parties may be duplicated between the target resource and its provenance. For instance, the prescriber is usually (but not always) the author of the prescription resource. This resource is defined with close consideration for W3C Provenance</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Activity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ControlAct[isNormalAct() and subsumes(CACT, classCode) and moodCode=EVN]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="17"><Data ss:Type="String">Sources of requirements: v2 EVN, Control Act, CDA, W3C provenance, ATNA</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="225">
<Cell><Data ss:Type="String">Provenance.target</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">Resource(Any)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Target resource(s) (usually version specific)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The resource(s) that were generated by the activity described in this resource. A provenance can point to more than one target if multiple resources were created/updated by the same activity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Target references are usually version specific, but may not be, if a version has not been assigned or if the provenance information is part of the set of resources being maintained (i.e. a document). When using the RESTful API, the identity of the resource may not be known (especially not the version specific one); the client may either submit the resource first, and then the provenance, or it may submit both using a single transaction. See the notes on transaction for further discussion</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Activity.wasGeneratedBy</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">./outboundRelationship[isNormalActRelationship() and typeCode=SUBJ]/target&#10;&#10;OR&#10;&#10;./participation[isNormalParticipation() and typeCode=SBJ]/role&#10;&#10;OR&#10;&#10;./participation[isNormalParticipation() and typeCode=SBJ]/role[isNormalRole()]/player</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Provenance.period</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Period</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When the activity occurred</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The period during which the activity occurred</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">The period can be a little arbitrary; where possible, the time should correspond to human assessment of the activity time</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Activity.startTime &amp; Activity.endTime</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">./effectiveTime[type=IVL_TS]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Provenance.recorded</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">instant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">When the activity was recorded / updated</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The instant of time at which the activity was recorded</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">This can be a little different from the time stamp on the resource if there is a delay between recording the event and updating the provenance and target resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">unique(./participation[isNormalParticipation() and typeCode=AUT]/time[type=TS])</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Provenance.reason</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">CodeableConcept</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Reason the activity is occurring</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The reason that the activity was taking place</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">unique(./reasonCode)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Provenance.location</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Location)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Where the activity occurred, if relevant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Where the activity occurred, if relevant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Activity.location</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">unique(./participation[isNormalParticipation() and typeCode=LOC]/role[isNormalRole() and subsumes(SDLOC, classCode)]/player[isNormalEntity and classCode=&quot;LOC&quot; and determinerCode=&quot;INST&quot;]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Provenance.policy</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">uri</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Policy or plan the activity was defined by</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Policy or plan the activity was defined by. Typically, a single activity may have multiple applicable policy documents, such as patient consent, guarantor funding, etc.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./inboundRelationship[isNormalActRelationship() and typeCode=&quot;SUBJ&quot;]/source[isNormalAct and subsumes(POLICY, classCode) and moodCode=EVN]/text[typeCode='ED'/tel</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell><Data ss:Type="String">Provenance.agent</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">down</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Person, organization, records, etc. involved in creating resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">An agent takes a role in an activity such that the agent can be assigned some degree of responsibility for the activity taking place. An agent can be a person, a piece of software, an inanimate object, an organization, or other entities that may be ascribed responsibility</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Several agents may be associated (i.e. has some responsibility for an activity) with an activity and vice-versa</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./participation[isNormalParticipation()]&#10;&#10;OR&#10;&#10;./outboundRelationship[isNormalActRelationship() and typeCode='DRIV']</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Is DRIV the appropriate semantic for &quot;support&quot;?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Provenance.agent.role</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">Coding</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ProvenanceAgentRole</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">e.g. author | overseer | enterer | attester | source | cc: +</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The role that the participant played</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14" ss:StyleID="s76"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">attester: .[self::participation]/typeCode='RESP'&#10;author: .[self::participation]/typeCode='AUT'&#10;cc: .[self::participation]/typeCode='IRCP'&#10;enterer: .[self::participation]/typeCode='ENT'&#10;informant: .[self::participation]/typeCode='INF'&#10;performer: .[self::participation]/typeCode='PRF'&#10;verifier: .[self::participation]/typeCode='VRF'&#10;source: .[self::outboundRelationship]/typeCode=''</Font></ss:Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Figure out how to handle: application, daemon for RIM mappings. Figure out better mapping for attester, perhaps after RIM harmonization proposal&#10;</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Provenance.agent.type</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">Coding</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ProvenanceAgentType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">e.g. Resource | Person | Application | Record | Document +</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The type of the participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">If the type is &quot;Resource&quot; then the resource itself was the participant. If the type is a type of resource, then the entity identified by the resource is the participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14" ss:StyleID="s76"><ss:Data ss:Type="String"
xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">person: ./role[isNormalRole() and classCode='REL']/player[isNormalEntity and classCode='PER' and determinerCode='INST']&#10;agent: ./role[isNormalRole() and classCode='ASSIGNED' and player[isNormalEntity and classCode='PSN' and determinerCode='INST']]&#10;organization: ./role[isNormalRole() and classCode='ASSIGNED' and not(player)]/scoper[isNormalEntity and classCode='ORG' and determinerCode='INST']&#10;&#10;software: ./role[isNormalRole() and classCode='ASSIGNED']/scoper[isNormalEntity and classCode='DEV' and determinerCode='INST' and hasDomain(code, 'Software')]&#10;document: ./target[isNormalAct and subsumes('DOC', classCode) and moodCode='EVN']&#10;</Font></ss:Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Not sure how to make &quot;resource&quot; or &quot;record&quot; RIM mappings work</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Provenance.agent.reference</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">uri</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identity of agent (urn or url)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Identity of participant. May be a logical or physical uri and maybe absolute or relative</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">identity may be a reference to a resource or to something else, depending on the type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./id</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Provenance.agent.display</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Human description of participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Human-readable description of the participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Agent.label</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">./player/description&#10;&#10;OR&#10;&#10;./description&#10;&#10;OR&#10;&#10;./text</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Provenance.entity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..*</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">An entity used in this activity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">An entity used in this activity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./subjectOf</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Provenance.entity.role</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">code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ProvenanceEntityRole</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">derivation | revision | quotation | source</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">How the entity was used during the activity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14" ss:StyleID="s76"><Data ss:Type="String">./typeCode</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Figure out how to handle: application, daemon for RIM mappings. Figure out better mapping for attester, perhaps after RIM harmonization proposal&#10;</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">Provenance.entity.type</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">Coding</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ProvenanceEntityType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Resource Type, or something else</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The type of the entity. If the entity is a resource, then this is a resource type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">If the type is &quot;resource&quot; then the resource itself was the participant. If the type is a type of resource, then the entity identified by the resource is the participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Entity.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">./target</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="16"><Data ss:Type="String">Not sure how to make &quot;resource&quot; or &quot;record&quot; RIM mappings work</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Provenance.entity.reference</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">uri</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Identity of participant (urn or url)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Identity of participant. May be a logical or physical uri and maybe absolute or relative</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">identity may be a reference to a resource or to something else, depending on the type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./text/reference</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell><Data ss:Type="String">Provenance.entity.display</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Human description of participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Human-readable description of the entity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./title</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Provenance.entity.agent</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String" x:Ticked="1">@Provenance.agent</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Entity is attributed to this agent</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">The entity is attributed to an agent to express the agent's responsibility for that entity, possibly along with other agents. This description can be understood as shorthand for saying that the agent was responsible for the activity which generated the entity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./author/role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">Provenance.integritySignature</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">0..1</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Base64 signature (DigSig) - integrity check</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">A digital signature on the target resource(s). The signature should match a Provenance.agent.reference in the provenance resource. The signature is only added to support checking cryptographic integrity of the resource, and not to represent workflow and clinical aspects of the signing process, or to support non-repudiation.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Whether the content is XML or JSON, the representation is as a base64 of the XML signature of the resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="14"><Data ss:Type="String">./signatureText</Data><NamedCell
ss:Name="_FilterDatabase"/></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/>
<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:R20C17"
xmlns="urn:schemas-microsoft-com:office:excel">
</AutoFilter>
</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="3" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="96.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="341.25"/>
<Column ss:Index="6" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="327.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>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="3" 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>1</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="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:StyleID="s64">
<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">
<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/>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="40" 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="8" ss:AutoFitWidth="0" ss:Width="391.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">target</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Provenance.target</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">start</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Provenance.period.start</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">end</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Provenance.period.end</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">location</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Provenance.location</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">party</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Provenance.agent.reference</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">partytype</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Provenance.agent.type</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>
</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>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:StyleID="s70" ss:Width="135.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s70" ss:Width="47.25"/>
<Column ss:StyleID="s70" ss:Width="147"/>
<Column ss:StyleID="s70" 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">Reference</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ProvenanceAgentRole</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The role that a provenance agent played</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">valueset-provenance-agent-role</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ProvenanceAgentType</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The type of a provenance agent</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell><Data ss:Type="String">valueset-provenance-agent-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ProvenanceEntityRole</Data></Cell>
<Cell><Data ss:Type="String">How an entity was used in an activity</Data></Cell>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">#provenance-entity-role</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">ProvenanceEntityType</Data></Cell>
<Cell><Data ss:Type="String">The type of an entity used in an activity</Data></Cell>
<Cell><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">http://hl7.org/fhir/vs/resource-types</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>4</ActiveRow>
<ActiveCol>3</ActiveCol>
</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="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="134.25"/>
<Column ss:StyleID="s69" ss:Width="171.75"/>
<Column ss:StyleID="s69" ss:Width="195"/>
<Column ss:StyleID="s69" ss:Width="63"/>
<Column ss:StyleID="s69" ss:Width="177.75"/>
<Row ss:AutoFitHeight="0">
<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">Filename</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Example</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell><Data ss:Type="String">Provenance HL7 Extensions</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Defines common extensions used with or related to the Provenance resource</Data></Cell>
<Cell><Data ss:Type="String">provenance-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>34</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="provenance-entity-role">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="15" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:AutoFitWidth="0" ss:Width="69.75"/>
<Column ss:AutoFitWidth="0" ss:Width="546"/>
<Column ss:AutoFitWidth="0" ss:Width="575.25"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">id</Data></Cell>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">parent</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">derivation</Data></Cell>
<Cell ss:Index="4"><Data ss:Type="String">A transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a preexisting entity</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">revision</Data></Cell>
<Cell><Data ss:Type="String">derivation</Data></Cell>
<Cell><Data ss:Type="String">A derivation for which the resulting entity is a revised version of some original.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">quotation</Data></Cell>
<Cell><Data ss:Type="String">derivation</Data></Cell>
<Cell><Data ss:Type="String">The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">source</Data></Cell>
<Cell><Data ss:Type="String">derivation</Data></Cell>
<Cell><Data ss:Type="String">A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.</Data></Cell>
</Row>
<Row ss:Index="15" ss:AutoFitHeight="0">
<Cell ss:Index="5" 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>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,502 @@
<?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>Ewout Kramer</LastAuthor>
<Created>2012-03-19T09:39:52Z</Created>
<LastSaved>2013-07-04T14:31: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>7395</WindowHeight>
<WindowWidth>14880</WindowWidth>
<WindowTopX>480</WindowTopX>
<WindowTopY>150</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="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"/>
</Style>
<Style ss:ID="s64">
<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="s66">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
<NumberFormat ss:Format="Short Date"/>
</Style>
<Style ss:ID="s68" ss:Parent="s62">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
<Style ss:ID="s69" ss:Parent="s62">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
</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" ss:Color="#000000"
ss:Bold="1"/>
</Style>
<Style ss:ID="s72">
<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="s73">
<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="s74">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s76">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" 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="s77">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Metadata">
<Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="108"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="789.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Value</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">id</Data></Cell>
<Cell><Data ss:Type="String">questionnaire-extensions</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">name</Data></Cell>
<Cell><Data ss:Type="String">Core extensions for Questionnaire</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">author.name</Data></Cell>
<Cell><Data ss:Type="String">HL7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">author.reference</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">http://www.hl7.org</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">intention</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">description</Data></Cell>
<Cell><Data ss:Type="String">Contains standard extensions for Questionnaire, amongst others for validation</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">evidence</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">comments</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">status</Data></Cell>
<Cell><Data ss:Type="String">draft</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="DateTime">2013-07-04T00:00:00.000</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">endorser.name</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">endorser.reference</Data></Cell>
<Cell ss:StyleID="s68"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">changes</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">supercedes</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">resource</Data></Cell>
<Cell><Data ss:Type="String">Questionnaire</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">binding</Data></Cell>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">extension.uri</Data></Cell>
<Cell ss:StyleID="s69" ss:HRef="http://hl7.org/fhir/questionnaire-extensions"><Data
ss:Type="String">http://hl7.org/fhir/questionnaire-extensions</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">introduction</Data></Cell>
<Cell><Data ss:Type="String">questionnaire-extensions-introduction.xml</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">notes</Data></Cell>
<Cell><Data ss:Type="String">questionnaire-extensions-notes.xml</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>22</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Extensions">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="20" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultRowHeight="15">
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="154.5"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="150.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="56.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="134.25"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="114.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="105.75"/>
<Column ss:StyleID="s70" ss:Width="148.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="159"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="213.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s72">
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Context Type</Data></Cell>
<Cell><Data ss:Type="String">Context</Data></Cell>
<Cell><Data ss:Type="String">Card.</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">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">mayRepeat</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Questionnaire.group</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Whether the group may repeat</Data></Cell>
<Cell><Data ss:Type="String">Whether the group may occur multiple times in the instance, containing multiple sets of answers</Data></Cell>
<Cell ss:Index="12" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell><Data ss:Type="String">answerFormat</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Questionnaire.question</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">AnswerFormat</Data></Cell>
<Cell><Data ss:Type="String">The expected format of the answer</Data></Cell>
<Cell><Data ss:Type="String">The expected format of the answer, e.g. the type of input (string, integer) or whether a (multiple)choice is expected</Data></Cell>
<Cell ss:Index="10" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s76"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">omitReason</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Questionnaire.question</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell><Data ss:Type="String" x:Ticked="1">CodeableConcept</Data></Cell>
<Cell ss:Index="7"><Data ss:Type="String">Explicit reason why the question was left unanswered</Data></Cell>
<Cell><Data ss:Type="String">Explicit reason why the question was left unanswered</Data></Cell>
<Cell ss:Index="10" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Decide on whether we need an explicit omitReason to indicate the fact that (and the reason why) a question on a form remain unanswered.&#10;Gives the flexibility to support both just sending the answered questions or exchanging the &quot;full&quot; form, on which each question is either answered&#10;or explicitly omitted.&lt;/p&gt;&#10;</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="s76"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="18.75">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="23.25">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="26.25">
<Cell ss:Index="3" ss:StyleID="s70"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="52.5">
<Cell ss:Index="3" 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>600</HorizontalResolution>
<VerticalResolution>0</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>8</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="198.75"/>
<Column ss:AutoFitWidth="0" ss:Width="209.25"/>
<Column ss:AutoFitWidth="0" ss:Width="61.5"/>
<Column ss:AutoFitWidth="0" ss:Width="99"/>
<Column ss:Width="113.25"/>
<Column ss:AutoFitWidth="0" ss:Width="168"/>
<Column ss:AutoFitWidth="0" ss:Width="158.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s72"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Example</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s70"><Data ss:Type="String">AnswerFormat</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">The expected format of an answer</Data></Cell>
<Cell ss:StyleID="s77"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s77"/>
<Cell ss:StyleID="s77"><Data ss:Type="String">#answer-format</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<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/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="answer-format">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="12" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:Width="108"/>
<Column ss:Width="348.75"/>
<Column ss:Width="47.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s72"><Data ss:Type="String">Id</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s72"><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" x:Ticked="1">decimal</Data></Cell>
<Cell><Data ss:Type="String">Answer is a floating point number</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">integer</Data></Cell>
<Cell><Data ss:Type="String">Answer is an integer</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">boolean</Data></Cell>
<Cell><Data ss:Type="String">Answer is a yes/no answer</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Answer is a date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">Answer is a free-text entry</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell><Data ss:Type="String">dateTime</Data></Cell>
<Cell><Data ss:Type="String">Answer is a date and time</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">7</Data></Cell>
<Cell><Data ss:Type="String">instant</Data></Cell>
<Cell><Data ss:Type="String">Answer is a system timestamp</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">8</Data></Cell>
<Cell><Data ss:Type="String">single-choice</Data></Cell>
<Cell><Data ss:Type="String">Answer is a single choice from the options</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">9</Data></Cell>
<Cell><Data ss:Type="String">multiple-choice</Data></Cell>
<Cell><Data ss:Type="String">Answer is one or more choices from the options</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">10</Data></Cell>
<Cell><Data ss:Type="String">open-single-choice</Data></Cell>
<Cell><Data ss:Type="String">Answer is a single choice from the options or a free-text entry</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">11</Data></Cell>
<Cell><Data ss:Type="String">open-multiple-choice</Data></Cell>
<Cell><Data ss:Type="String">Answer is one or more choices from the options and/or a free-text entry</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>31</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,554 @@
<?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 Knapp</LastAuthor>
<Created>2012-03-19T11:15:11Z</Created>
<LastSaved>2013-09-21T19:37:21Z</LastSaved>
<Version>14.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>6345</WindowHeight>
<WindowWidth>22755</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</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">
<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="#EEECE1" 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:Vertical="Bottom" ss:WrapText="1"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s69">
<Alignment ss:Vertical="Top"/>
</Style>
<Style ss:ID="s70">
<Alignment ss:Horizontal="Left" ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="21" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="187.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="126.75"/>
<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"/>
<Column ss:Index="18" ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="243"/>
<Row ss:AutoFitHeight="0" ss:Height="29.25" 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">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="29.25" ss:StyleID="s65">
<Cell ss:StyleID="s63"><Data ss:Type="String">Remittance</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"><Data ss:Type="String">A remittance</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A remittance</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"/>
<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="29.25" ss:StyleID="s65">
<Cell ss:StyleID="s63"><Data ss:Type="String">Remittance.identifier</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">Identifier</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Remittance id</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The remittance identifier</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"/>
<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">
<Cell><Data ss:Type="String">Remittance.service</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"><Data ss:Type="String">A service paid as part of remittance</Data></Cell>
<Cell><Data ss:Type="String">A service paid as part of remittance</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Remittance.service.instance</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">Service instance number</Data></Cell>
<Cell><Data ss:Type="String">The service instance number for the original transaction</Data></Cell>
<Cell><Data ss:Type="String">For allignment of the adjudication details to the original adjudication request</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Remittance.service.code</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">ServiceCode</Data></Cell>
<Cell><Data ss:Type="String">Professional service code</Data></Cell>
<Cell><Data ss:Type="String">The code for the professional service</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Remittance.service.rate</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Benefit Rate %</Data></Cell>
<Cell><Data ss:Type="String">The percent of the service fee which would be elegible for coverage</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75">
<Cell><Data ss:Type="String">Remittance.service.benefit</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Benefit amount</Data></Cell>
<Cell><Data ss:Type="String">The amount payable for a submitted service (includes both professional and lab fees.)</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>
<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>
</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:Height="16.5" 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>
<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="s64">
<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="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/>
<Selected/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>5</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Search">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="7" 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="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">identifier</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Remittance.identifier</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">service</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Remittance.service.code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s63"/>
</Row>
<Row ss:Index="6" ss:AutoFitHeight="0">
<Cell ss:Index="4" ss:StyleID="s63"/>
</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/>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>9</PaperSizeIndex>
<HorizontalResolution>-3</HorizontalResolution>
<VerticalResolution>-3</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>3</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:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="114.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="201.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="53.25"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="214.5"/>
<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="45">
<Cell ss:StyleID="s62"><Data ss:Type="String">ServiceCode</Data></Cell>
<Cell ss:StyleID="s67"><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 ss:StyleID="s70"><Data ss:Type="String">valueset-service</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<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>2</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" 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="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>
</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>30</ActiveRow>
<ActiveCol>2</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="s64"><Data ss:Type="String">Element</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Card.</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Inv.</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Must Understand</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">UML</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Short Name</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Requirements</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Condition</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">To Do</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">Committee Notes</Data></Cell>
<Cell ss:StyleID="s64"/>
<Cell ss:StyleID="s64"><Data ss:Type="String">Vocab</Data></Cell>
<Cell ss:Index="20" ss:StyleID="s65"><Data ss:Type="String">Example</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s63"><Data ss:Type="String">Coverage.planHolder.language</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Written language for communications</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">The language to be used for written communications.</Data></Cell>
<Cell ss:StyleID="s62"/>
<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="s63"><Data ss:Type="String">Coverage.exception</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">Coding</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">List of policy exception codes</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><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="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"/>
<Cell ss:StyleID="s62"/>
<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="s63"><Data ss:Type="String">Coverage.authorization</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String">List of authorization codes </Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">List of special authorization codes which may apply to the services being reported.</Data></Cell>
<Cell ss:StyleID="s62"><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="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"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"><Data ss:Type="String"> &lt;authorization&gt;RC74387546&lt;/authorization&gt;</Data></Cell>
<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>
<RangeSelection>R5C1:R5C13</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,610 @@
<?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-10-29T07:44:28Z</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>5520</WindowTopX>
<WindowTopY>6135</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: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: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"/>
<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="s70">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s71">
<Alignment ss:Vertical="Top"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="7" 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="53.25"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="30"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="47.25"/>
<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"/>
<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">Resource</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 ss:Index="11" ss:StyleID="Default"/>
<Cell ss:Index="13" ss:StyleID="Default"><Data ss:Type="String">Entity. Role, or Act</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210">
<Cell><Data ss:Type="String">Resource.extension</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Extension</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Additional Content defined by implementations</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">May be used to represent additional information that is not part of the basic definition of the resource. In order to make the use of extensions safe and manageable, there is a strict governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">extensions, user content</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">there can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core simplicity for everyone</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210">
<Cell><Data ss:Type="String">Resource.modifierExtension</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Extension</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Extensions that cannot be ignored</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">May be used to represent additional information that is not part of the basic definition of the resource, and that modifies the understanding of the element that contains it. Usually modifier elements provide negation or qualification. In order to make the use of extensions safe and manageable, there is a strict governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">extensions, user content</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s67"><Data ss:Type="String">there can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core simplicity for everyone</Data></Cell>
<Cell><Data ss:Type="String">N/A</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210">
<Cell><Data ss:Type="String">Resource.language</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">code</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Language of the resource content</Data></Cell>
<Cell><Data ss:Type="String">The base language in which the resource is written</Data></Cell>
<Cell ss:Index="11" ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource&#10;&#10;Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Resource.text</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Narrative</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Text summary of the resource, for human interpretation</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">A human-readable narrative that contains a summary of the resource, and may be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it &quot;clinically safe&quot; for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">narrative, html, xhtml, display</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">Contained resources do not have narrative. Resources that are not contained SHOULD have a narrative</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Act.text?</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell><Data ss:Type="String">Resource.contained</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Contained, inline Resources</Data></Cell>
<Cell><Data ss:Type="String">These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope</Data></Cell>
<Cell><Data ss:Type="String">inline resources, anonymous resources, contained resources</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">This should never be done when the content can be identified properly, as once identification is lost, it is extremely difficult (and context dependent) to restore it again</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>-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>2</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="s69" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="161.25"/>
<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="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 narrative in contained resources</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">If the resource is contained in another resource, it SHALL not contain any narrative</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">not(parent::f:contained and f:text)</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">No nested contained resources</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">If the resource is contained in another resource, it SHALL not contain nested Resources</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">not(parent::f:contained and f:contained)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="Default"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">No contained resources that are not referenced from elsewhere</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"><Data ss:Type="String">exists(for $id in f:contained/*/@id return $id[not(descendant::f:reference/@value=concat('#', $id))])</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/>
<Selected/>
<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>
<ActiveCol>5</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="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="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="s71"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s71"/>
<Cell ss:StyleID="s71"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s62"/>
<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>
<ActiveRow>6</ActiveRow>
<ActiveCol>4</ActiveCol>
</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,986 @@
<?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-19T14:30: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>5715</WindowHeight>
<WindowWidth>22455</WindowWidth>
<WindowTopX>5670</WindowTopX>
<WindowTopY>6555</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="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="311.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">Sequence</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">Sequence resource</Data></Cell>
<Cell><Data ss:Type="String">Sequence 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">Sequence.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">Resource(Patient)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Patient</Data></Cell>
<Cell><Data ss:Type="String">Owner of the sequence</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">Sequence.type</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">code</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">SequenceType</Data></Cell>
<Cell><Data ss:Type="String">Type of the sequence: protein|RNA|DNA</Data></Cell>
<Cell><Data ss:Type="String">Type of the sequence</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">Sequence.species</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">CodeableConcept</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Species of the sequence</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Sepcies of organisms from which sample of the sequence is extracted</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.sample</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">Source of the sequence</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Source of the sequence</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">Sequence.sample.class</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">SampleClass</Data></Cell>
<Cell><Data ss:Type="String">Class of the source: germline|somatic</Data></Cell>
<Cell><Data ss:Type="String">Type of the sample</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.sample.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">Source of the sample</Data></Cell>
<Cell><Data ss:Type="String">Source of the sample</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.coordinate</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Coordinate of the sequence</Data></Cell>
<Cell><Data ss:Type="String">Location of the genome that the sequence is mapped to</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.coordinate.chromosome</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">Chromosome</Data></Cell>
<Cell><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">Sequence.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">Sequence.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">Sequence.inputLab</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(SequencingLab)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input lab</Data></Cell>
<Cell><Data ss:Type="String">Lab from which data about the sequence is garthered</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.inputAnalysis</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(SequencingAnalysis)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input analysis</Data></Cell>
<Cell><Data ss:Type="String">Analysis for the sequence</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.inputVariant</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input variant</Data></Cell>
<Cell><Data ss:Type="String">Snippet of a GVF or VCF files that stores raw information of this sequence</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.inputVariant.sampleId</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 patient in the variant</Data></Cell>
<Cell><Data ss:Type="String">ID of the sample in the files that corresponds to the owner of the sequence</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.inputVariant.variant</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(GVFVariant|VCFVariant)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Variant</Data></Cell>
<Cell><Data ss:Type="String">Variant Resoruce that encapsulates a snippet of the file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.quality</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">Quality of the read in phred scale</Data></Cell>
<Cell><Data ss:Type="String">Quality of the read in phred scale</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.quantity</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Quantity of the sequence in the sample</Data></Cell>
<Cell><Data ss:Type="String">Log 2 of the quantity of the sequence presented in the sample</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Sequence.read</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">Read of the sequence</Data></Cell>
<Cell><Data ss:Type="String">Read of the sequence; for DNA sequence, the two sequences of the same location are separated by a bar, &quot;|&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/>
<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>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="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"/>
<Column ss:AutoFitWidth="0" ss:Width="93"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="145.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">Owner of the sequence</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">Sequence.patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">coordinate</Data></Cell>
<Cell><Data ss:Type="String">Location of the sequence in the reference genome</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">Sequence.coordinate</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source-type</Data></Cell>
<Cell><Data ss:Type="String">Type of the source</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">Sequence.sample.class</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source</Data></Cell>
<Cell><Data ss:Type="String">SNOMED CT code of the source of the sample of the sequence</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">Sequence.sample.source</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">type</Data></Cell>
<Cell><Data ss:Type="String">Type of the sequence</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">Sequence.type</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>
<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>5</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"><Data ss:Type="String">SequenceType</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A definition</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#sequence-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">SampleClass</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A definition</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">#sample-class</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">Chromosome</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A definition</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">#chromosome</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="sequence-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="151.5"/>
<Row ss:AutoFitHeight="0">
<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">aa</Data></Cell>
<Cell><Data ss:Type="String">Amino acid (protein) sequene</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">rna</Data></Cell>
<Cell><Data ss:Type="String">RNA sequence</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">dna</Data></Cell>
<Cell><Data ss:Type="String">DNA 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/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>11</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="sample-class">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<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">germline</Data></Cell>
<Cell><Data ss:Type="String">Germline</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">somatic</Data></Cell>
<Cell><Data ss:Type="String">Somatic</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>29</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="chromosome">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="25" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<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">chr1</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 1</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">chr2</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 2</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">chr3</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 3</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">chr4</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 4</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell><Data ss:Type="String">chr5</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 5</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">6</Data></Cell>
<Cell><Data ss:Type="String">chr6</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 6</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">7</Data></Cell>
<Cell><Data ss:Type="String">chr7</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 7</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">8</Data></Cell>
<Cell><Data ss:Type="String">chr8</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 8</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">9</Data></Cell>
<Cell><Data ss:Type="String">chr9</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 9</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">10</Data></Cell>
<Cell><Data ss:Type="String">chr10</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 10</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">11</Data></Cell>
<Cell><Data ss:Type="String">chr11</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 11</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">12</Data></Cell>
<Cell><Data ss:Type="String">chr12</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 12</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">13</Data></Cell>
<Cell><Data ss:Type="String">chr13</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 13</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">14</Data></Cell>
<Cell><Data ss:Type="String">chr14</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 14</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">15</Data></Cell>
<Cell><Data ss:Type="String">chr15</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 15</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">16</Data></Cell>
<Cell><Data ss:Type="String">chr16</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 16</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">17</Data></Cell>
<Cell><Data ss:Type="String">chr17</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 17</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">18</Data></Cell>
<Cell><Data ss:Type="String">chr18</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 18</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">19</Data></Cell>
<Cell><Data ss:Type="String">chr19</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 19</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">20</Data></Cell>
<Cell><Data ss:Type="String">chr20</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 20</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">21</Data></Cell>
<Cell><Data ss:Type="String">chr21</Data></Cell>
<Cell><Data ss:Type="String">Chromosome 21</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">22</Data></Cell>
<Cell><Data ss:Type="String">chrx</Data></Cell>
<Cell><Data ss:Type="String">Chromosome Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">23</Data></Cell>
<Cell><Data ss:Type="String">chry</Data></Cell>
<Cell><Data ss:Type="String">Chromosome X</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">24</Data></Cell>
<Cell><Data ss:Type="String">mt</Data></Cell>
<Cell><Data ss:Type="String">Mitochondria</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>17</ActiveRow>
<ActiveCol>12</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:Index="2" ss:AutoFitWidth="0" ss:Width="238.5"/>
<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 Sequece Resource describing patient John Doe's genotype of SNP rs421016</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">sequence-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>9</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,733 @@
<?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-09T10:38:32Z</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>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>
<Style ss:ID="s71">
<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="11" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultRowHeight="15">
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="207"/>
<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="167.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">SequencingAnalysis</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">0..1</Data></Cell>
<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">Sequencing Analysis</Data></Cell>
<Cell><Data ss:Type="String">Computational analysis on a patient's genetic raw file</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">SequencingAnalysis.subject</Data></Cell>
<Cell ss:StyleID="s65"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell ss:StyleID="s65"/>
<Cell><Data ss:Type="String">Resource(Patient)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Subject</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">SequencingAnalysis.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><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">SequencingAnalysis.name</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">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Name of the analysis</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">SequencingAnalysis.genome</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">Reference genome</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">Reference genome used in the analysis</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">SequencingAnalysis.genome.name</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">ReferenceGenome</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Name of the reference genome</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingAnalysis.genome.build</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">Build</Data></Cell>
<Cell><Data ss:Type="String">Build number of the refernece genome</Data></Cell>
<Cell><Data ss:Type="String">Version</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingAnalysis.file</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">File</Data></Cell>
<Cell><Data ss:Type="String">Files uploaded as result of the analysis</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingAnalysis.inputLab </Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(SequencingLab)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input lab</Data></Cell>
<Cell><Data ss:Type="String">SequencingLab taken into account of the analysis</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingAnalysis.inputAnalysis </Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(SequencingAnalysis)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Input analysis</Data></Cell>
<Cell><Data ss:Type="String">SequencingAnalysis taken into account of the analysis</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>18</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"/>
<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">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">SequencingAnalysis.subject</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 updated</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingAnalysis.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">genome</Data></Cell>
<Cell><Data ss:Type="String">Name of the reference genome used in the analysis</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingAnalysis.genome.name</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>10</ActiveRow>
<ActiveCol>3</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"><Data ss:Type="String">ReferenceGenome</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">Identifier of a reference genome</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#ref-genome</Data></Cell>
</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>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="ref-genome">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="153.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s71">
<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">GRCh</Data></Cell>
<Cell><Data ss:Type="String">Genome Reference Consortium for human </Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">GRCm</Data></Cell>
<Cell><Data ss:Type="String">Genome Reference Consortium for mice </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>8</ActiveRow>
<ActiveCol>2</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:Index="2" ss:AutoFitWidth="0" ss:Width="219.75"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="152.25"/>
<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 analysis for regular patient</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">sequencinganalysis-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>12</ActiveRow>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,939 @@
<?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-09T09:29:32Z</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>5595</WindowHeight>
<WindowWidth>22455</WindowWidth>
<WindowTopX>5670</WindowTopX>
<WindowTopY>6675</WindowTopY>
<TabRatio>645</TabRatio>
<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" ss:Name="Default">
</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/>
<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="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>
<Style ss:ID="s74" ss:Parent="s62">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="16" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s63" ss:DefaultRowHeight="15">
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="172.5"/>
<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="159"/>
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="192.75"/>
<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="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">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">SequencingLab</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="Default"/>
<Cell><Data ss:Type="String">Sequencing Lab</Data></Cell>
<Cell><Data ss:Type="String">A lab for sequencing</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">SequencingLab.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">Resource(Patient)</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Subject</Data></Cell>
<Cell><Data ss:Type="String">Subject of the sequencing lab</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">SequencingLab.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">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Organization</Data></Cell>
<Cell><Data ss:Type="String">Organization that does the sequencing</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">SequencingLab.name</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">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Name</Data></Cell>
<Cell><Data ss:Type="String">Name of the lab</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">SequencingLab.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="s68"><Data ss:Type="String">Date when the result of the lab is uploaded</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">SequencingLab.type</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">code</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">SequencingType</Data></Cell>
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Type of the sequencing lab</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">SequencingLab.system</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Sequencing System</Data></Cell>
<Cell><Data ss:Type="String">System of machine used for sequencing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.system.class</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">SequencingSystemClass</Data></Cell>
<Cell><Data ss:Type="String">Class of sequencing system</Data></Cell>
<Cell><Data ss:Type="String">Class of sequencing system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.system.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 sequencing system</Data></Cell>
<Cell><Data ss:Type="String">Version of sequencing system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.system.name</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">SequencingSystemName</Data></Cell>
<Cell><Data ss:Type="String">Name of sequencing system</Data></Cell>
<Cell><Data ss:Type="String">Name of sequencing system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.system.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">Id of sequencing system</Data></Cell>
<Cell><Data ss:Type="String">Id of sequencing system</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.specimen</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Specimen of the lab</Data></Cell>
<Cell><Data ss:Type="String">Specimen of the lab</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.specimen.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">SequencingSpecimenType</Data></Cell>
<Cell><Data ss:Type="String">Class of the specimen</Data></Cell>
<Cell><Data ss:Type="String">Whether the specimen is from germline or somatic cells of the patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.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">Source of specimen</Data></Cell>
<Cell><Data ss:Type="String">Source of the specimen</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SequencingLab.file</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Attachment</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">File</Data></Cell>
<Cell><Data ss:Type="String">Files uploaded as results of the lab</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>12</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="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="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="39" 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="73.5"/>
<Column ss:AutoFitWidth="0" ss:Width="145.5"/>
<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">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 lab</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingLab.subject</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">specimen</Data></Cell>
<Cell><Data ss:Type="String">Type of the specimen used for the lab</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingLab.specimen.type</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 lab 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">SequencingLab.date</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">organization</Data></Cell>
<Cell><Data ss:Type="String">Organization that does the lab</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingLab.organization</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">system-class</Data></Cell>
<Cell><Data ss:Type="String">Class of the sequencing system</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingLab.system.class</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">system-name</Data></Cell>
<Cell><Data ss:Type="String">Name of the sequencing system</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">SequencingLab.system.name</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>
</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>10</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="180.75"/>
<Column ss:AutoFitWidth="0" ss:Width="221.25"/>
<Column ss:AutoFitWidth="0" ss:Width="81.75"/>
<Column ss:AutoFitWidth="0" ss:Width="153"/>
<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="s63"><Data ss:Type="String">SequencingType</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Type of the sequencing</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#sequencing-type</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">SequencingSystemClass</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Class of the sequencing system</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">#sequencing-system-class</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">SequencingSystemName</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Name of the sequencing system</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#sequencing-system-name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"><Data ss:Type="String">SequencingSpecimenType</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">Whether the specimen is from germline or somatic cells of the patient</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#sequencing-specimen-type</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>4</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="sequencing-type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="4" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="96"/>
<Column ss:AutoFitWidth="0" ss:Width="135.75"/>
<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">whole_genome</Data></Cell>
<Cell><Data ss:Type="String">Whole genome sequencing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">whole_exome</Data></Cell>
<Cell><Data ss:Type="String">Whole exome sequencing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">targeted_capture</Data></Cell>
<Cell><Data ss:Type="String">Targeted capture</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>10</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="sequencing-system-class">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="161.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">srs</Data></Cell>
<Cell><Data ss:Type="String">Short read sequencing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">sms</Data></Cell>
<Cell><Data ss:Type="String">Single molecule sequencing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">capillary</Data></Cell>
<Cell><Data ss:Type="String">Capillary sequencing</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">dna_chip</Data></Cell>
<Cell><Data ss:Type="String">DNA microarray SNP detection</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>
<Worksheet ss:Name="sequencing-system-name">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="3" ss:AutoFitWidth="0" ss:Width="75.75"/>
<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">illumina</Data></Cell>
<Cell><Data ss:Type="String">Illumina</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">solid</Data></Cell>
<Cell><Data ss:Type="String">ABI SOLiD</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>5</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="sequencing-specimen-type">
<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="113.25"/>
<Column ss:AutoFitWidth="0" ss:Width="99.75"/>
<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">germline</Data></Cell>
<Cell><Data ss:Type="String">Germline</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">somatic</Data></Cell>
<Cell><Data ss:Type="String">Somatic</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">likely_germline</Data></Cell>
<Cell><Data ss:Type="String">Likely germline</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">likely_somatic</Data></Cell>
<Cell><Data ss:Type="String">Likely somatic</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>28</ActiveRow>
<ActiveCol>11</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="1024" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="203.25"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="138.75"/>
<Row ss:AutoFitHeight="0" ss:Height="12.9375" ss:StyleID="s62">
<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>
<Cell ss:Index="1024" ss:StyleID="s74"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example lab for regular patient</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">sequencinglab-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>1</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,859 @@
<?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>2013-12-20T11:31: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>4545</WindowHeight>
<WindowWidth>13635</WindowWidth>
<WindowTopX>375</WindowTopX>
<WindowTopY>540</WindowTopY>
<TabRatio>634</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">
<Alignment ss:Horizontal="Left" ss:Vertical="Top" ss:ShrinkToFit="1"
ss:WrapText="1"/>
<Interior/>
</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>
<Style ss:ID="s75" 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="s76">
<Alignment ss:Vertical="Bottom" ss:ShrinkToFit="1" 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: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="s80">
<Alignment ss:Vertical="Top"/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
</Style>
<Style ss:ID="s81">
<Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s82">
<Alignment ss:Horizontal="Left" ss:Vertical="Bottom"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="17" ss:ExpandedRowCount="11" 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">Slot</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 slot of time that may be available for booking appointments</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s68"><Data ss:Type="String">(refer to the Availability resource for the header mapping details)</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Slot.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"/>
<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">Slot.type</Data></Cell>
<Cell ss:StyleID="s67"><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"/>
<Cell ss:StyleID="s72"><Data ss:Type="String">The type of appointments that can be booked into this slot (ideally this would be an identifiable service - which is at a location, rather than the location itself). If provided then this overrides the value provided on the availability resource</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"/>
<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">Slot.availability</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">Resource(Availability)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s72"><Data ss:Type="String">The availability resource that this slot defines an interval of status information</Data></Cell>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"/>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75">
<Cell><Data ss:Type="String">Slot.freeBusyType</Data></Cell>
<Cell ss:StyleID="s73"><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">SlotStatus</Data></Cell>
<Cell><Data ss:Type="String">BUSY | FREE | BUSY-UNAVAILABLE | BUSY-TENTATIVE</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s74"><Data ss:Type="String">FREEBUSY;FBTYPE=(freeBusyType):19980314T233000Z/19980315T003000Z&#10;If the freeBusyType is BUSY, then this value can be excluded</Data></Cell>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell><Data ss:Type="String">Slot.start</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">Date/Time that the slot is to begin</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s75"><Data ss:Type="String">FREEBUSY;FBTYPE=FREE:(start)/19980315T003000Z&#10;If the freeBusyType is BUSY, then this value can be excluded</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Slot.end</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">Date/Time that the slot is to conclude</Data></Cell>
<Cell ss:Index="14" ss:StyleID="s75"><Data ss:Type="String">FREEBUSY:19980314T233000Z/(end)&#10;If the freeBusyType is BUSY, then this value can be excluded (as shown)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Slot.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 slot to describe any extended information. Such as custom constraints on the slot</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Slot.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">Resource(Practitioner|Patient|RelatedPerson)</Data></Cell>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Who authored the slot</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:StyleID="s68"/>
<Cell ss:Index="17" ss:StyleID="s67"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Slot.authorDate</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 slot was created, or last revised</Data></Cell>
<Cell ss:Index="11" ss:StyleID="s68"/>
<Cell ss:Index="13" ss:StyleID="s68"/>
<Cell ss:StyleID="s62"/>
<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>
<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="s76" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s76" ss:Width="14.25"/>
<Column ss:StyleID="s76" ss:Width="126"/>
<Column ss:StyleID="s76" ss:Width="96"/>
<Column ss:StyleID="s76" ss:Width="234.75"/>
<Column ss:StyleID="s76" ss:AutoFitWidth="0" ss:Width="140.25"/>
<Column ss:StyleID="s76" 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="s78"/>
<Cell ss:StyleID="s78"/>
<Cell ss:Index="4" 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/>
<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="28" 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">slottype</Data></Cell>
<Cell><Data ss:Type="String">The type of appointments that can be booked into the slot</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Slot.type</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">availability</Data></Cell>
<Cell><Data ss:Type="String">The Availability Resource that we are seeking a slot within</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">Slot.availability</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">start</Data></Cell>
<Cell><Data ss:Type="String">Appointment date/time.</Data></Cell>
<Cell><Data ss:Type="String">date</Data></Cell>
<Cell><Data ss:Type="String">Slot.start</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s64"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">fbtype</Data></Cell>
<Cell><Data ss:Type="String">The free/busy status of the appointment</Data></Cell>
<Cell><Data ss:Type="String">token</Data></Cell>
<Cell><Data ss:Type="String">Slot.freeBusyType</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>5</ActiveRow>
<ActiveCol>0</ActiveCol>
<RangeSelection>R6</RangeSelection>
</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: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="s79"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">SlotStatus</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">The free/busy status of an appointment</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s67"><Data ss:Type="String">#slotstatus</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s63"/>
<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/>
<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>
<ActiveRow>0</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
<x:PageLayoutZoom>0</x:PageLayoutZoom>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="slotstatus">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="5" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:AutoFitWidth="0" ss:Width="366.75"/>
<Column ss:AutoFitWidth="0" ss:Width="192.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">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">BUSY</Data></Cell>
<Cell><Data ss:Type="String">Indicates that the time interval is busy because one or more events have been scheduled for that interval.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">FREE</Data></Cell>
<Cell><Data ss:Type="String">Indicates that the time interval is free for scheduling.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">BUSY-UNAVAILABLE</Data></Cell>
<Cell><Data ss:Type="String">Indicates that the time interval is busy and that the interval can not be scheduled.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">BUSY-TENTATIVE</Data></Cell>
<Cell><Data ss:Type="String">Indicates that the time interval is busy because one or more events have been tentatively scheduled for that interval</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>5</ActiveRow>
</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="5" 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">Free Example</Data></Cell>
<Cell><Data ss:Type="String">Example of an available slot (no appointments allocated)</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">slot-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">Busy Example</Data></Cell>
<Cell><Data ss:Type="String">Example for a slot that has an appointment allocated to it</Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">slot-example-busy.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Tentative Example</Data></Cell>
<Cell><Data ss:Type="String">Example for tentatively occupied slot</Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">slot-example-tentative.xml</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Unavailable Example</Data></Cell>
<Cell><Data ss:Type="String">Example of a slot that has been marked as unavailable</Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s81"><Data ss:Type="String">slot-example-unavailable.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>
<ActiveCol>1</ActiveCol>
</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,561 @@
<?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>
<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>4</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="6" 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="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">Template</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 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">Template.someElement1</Data></Cell>
<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"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Template.someElement2</Data></Cell>
<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"/>
<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="9" ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell 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="9" ss:StyleID="Default"/>
<Cell 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/>
<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>
<RangeSelection>R5:R6</RangeSelection>
</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>
</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="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/>
<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>0</ActiveRow>
<ActiveCol>3</ActiveCol>
<RangeSelection>C4</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,314 @@
<?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>
<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>15570</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:Vertical="Bottom" ss:ShrinkToFit="1" ss:WrapText="1"/>
</Style>
<Style ss:ID="s66">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s67">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Interior ss:Color="#EEECE1" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="17" 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="60.75"/>
<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="61.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">Type</Data></Cell>
<Cell><Data ss:Type="String">Binding</Data></Cell>
<Cell><Data ss:Type="String">Must Understand</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>
<Cell><Data ss:Type="String">SNOMED CT Qualifier Code</Data></Cell>
<Cell><Data ss:Type="String">LOINC Qualifier Code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test</Data></Cell>
<Cell><Data ss:Type="String">1..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Test's Resource</Data></Cell>
<Cell><Data ss:Type="String">[Template] Master Definition</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.stringErr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Strings with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.stringCorr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Strings with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.booleanErr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Booleans with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.booleanCorr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Booleans with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.integerErr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Integers with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.integerCorr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Integers with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.decimalErr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Decimals with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.decimalCorr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">decimal</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Decimals with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.b64Err</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">base64Binary</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Binaries with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.b64Corr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">base64Binary</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Binaries with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.instantErr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">instant</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Instants with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.instantCorr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">instant</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Instants with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.uriErr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Uri's with invalid content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.uriCorr</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Uri's with correct content</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Test.idrefSingle</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">idref</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Test idref</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>16</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s65" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="111.75"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="240"/>
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="287.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s64">
<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">Schematron</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>
<ActiveCol>1</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="101.25"/>
<Column ss:AutoFitWidth="0" ss:Width="229.5"/>
<Column ss:AutoFitWidth="0" ss:Width="128.25"/>
<Column ss:AutoFitWidth="0" ss:Width="200.25"/>
<Column ss:AutoFitWidth="0" ss:Width="114"/>
<Row ss:AutoFitHeight="0" ss:Height="22.5" ss:StyleID="s66">
<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">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>
</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="Search">
<Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="1" 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>
</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>
</Workbook>

View File

@ -0,0 +1,695 @@
<?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>
<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>
<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>
<Style ss:ID="s70">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Interior ss:Color="#F2F2F2" ss:Pattern="Solid"/>
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="10" 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="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">User</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">A user authorized to use the system</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">User.name</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">HumanName</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">The name of this user</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">User.provider</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">uri</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Which system authenticates the user. Blanks = internally authenticated</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">User.login</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">string</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">The login by which this user is known</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">User.password</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">If internal login, the password hash (SHA 256, Hex, lowercase)</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">User.level</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">code</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">UserLevel</Data></Cell>
<Cell><Data ss:Type="String">The level access for this user</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">User.sessionLength</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">integer</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">How long a session lasts for</Data></Cell>
<Cell ss:StyleID="Default"/>
<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">User.contact</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Contact</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell><Data ss:Type="String">Contact details for the user</Data></Cell>
<Cell ss:StyleID="Default"/>
<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">User.patient</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Resource(Patient)</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Patient compartments the user has access to (if level is patient/family)</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>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="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="8" ss:ExpandedRowCount="39" 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="91.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">name</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">User.name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">provider</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">User.provider</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">login</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">User.login</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">level</Data></Cell>
<Cell ss:Index="3"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s63"><Data ss:Type="String">User.level</Data></Cell>
<Cell ss:Index="8" ss:StyleID="s63"/>
</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 ss:StyleID="s63"><Data ss:Type="String">User.patient</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>
</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="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="3" 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><Data ss:Type="String">UserLevel</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">User access rights</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">#user-level</Data></Cell>
</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>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="user-level">
<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="84.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s70">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Code</Data></Cell>
<Cell><Data ss:Type="String">Description</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">1</Data></Cell>
<Cell><Data ss:Type="String">patient</Data></Cell>
<Cell><Data ss:Type="String">patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">provider</Data></Cell>
<Cell><Data ss:Type="String">provider</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">privileged</Data></Cell>
<Cell><Data ss:Type="String">privileged. A privileged healthcare provider may be a staff provider, or a STD care provider - the exact use of this is up to the implementer.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">administrator</Data></Cell>
<Cell><Data ss:Type="String">administrator</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>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>5</ActiveRow>
<ActiveCol>2</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,357 @@
<?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-29T04:13:21Z</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>5970</WindowHeight>
<WindowWidth>15570</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6255</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:Vertical="Top" ss:WrapText="1"/>
</Style>
<Style ss:ID="s70">
<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="s71">
<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="s72">
<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="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: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>
</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">ValueSet 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 ValueSet resource</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/ValueSet"><Data
ss:Type="String">http://hl7.org/fhir/extensions/ValueSet</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="4" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s69" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="112.5"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="144.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="219.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="126.75"/>
<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="168.75"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Binding Name</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Binding Strength</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Reference</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Description</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">Comments</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s72"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s73"/>
</Row>
<Row ss:AutoFitHeight="0">
<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/>
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R2C1:R2C5</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Extensions">
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="6" 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="177.75"/>
<Column ss:AutoFitWidth="0" ss:Width="39"/>
<Column ss:Width="60"/>
<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:Index="11" ss:AutoFitWidth="0" ss:Width="187.5"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Code</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Context Type</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Context</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Card.</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Binding</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Is Modifier</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Short Name</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Definition</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Requirements</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Comments</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">RIM Mapping</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">v2 Mapping</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">To Do</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Committee Notes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">ordinalValue</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">ValueSet.compose.include.code</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Comparison value for ordinal codes</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">conceptOrder</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">ValueSet.compose.include.code</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">integer</Data></Cell>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Appearance order for user selection</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">display</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">ValueSet.compose.include.code</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s74"/>
<Cell ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Display value for the code</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">systemName</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">ValueSet.compose.include</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Code system name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s75"><Data ss:Type="String">systemRef</Data></Cell>
<Cell ss:StyleID="s76"><Data ss:Type="String">Resource</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">ValueSet.compose.include</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">uri</Data></Cell>
<Cell ss:Index="7" ss:StyleID="s74"><Data ss:Type="String">N</Data></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Where to find code 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/>
<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,852 @@
<?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-19T18:51: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>5595</WindowHeight>
<WindowWidth>22455</WindowWidth>
<WindowTopX>5670</WindowTopX>
<WindowTopY>6675</WindowTopY>
<ActiveSheet>4</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="26" 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="428.25"/>
<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">VCFMeta</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">Encapsulation of the headers in a VCF/BCF2 file</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Encapsulation of the headers in a VCF/BCF2 file</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">VCFMeta.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="8" ss:StyleID="Default"><Data ss:Type="String">Subject being described by the file</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Subject being described by the file</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">VCFMeta.subject.patient</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">Resource(Patient)</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Patient resource corresponds to the subject</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Patient resource corresponds to the subject</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">VCFMeta.subject.fileId</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:Index="8" ss:StyleID="Default"><Data ss:Type="String">Id of the subject' sample in the file</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Id of the subject' sample in the file</Data></Cell>
<Cell ss:StyleID="Default"/>
<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">VCFMeta.sourceFile</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">Attachment</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Source file of the resource</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Source file of the resource</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">VCFMeta.fileFormat</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">Version</Data></Cell>
<Cell><Data ss:Type="String">Version of the VCF/BCF2 file</Data></Cell>
<Cell><Data ss:Type="String">Version of the VCF/BCF2 file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.fileDate</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 when the file is written</Data></Cell>
<Cell><Data ss:Type="String">Date when the file is written</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.reference</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 reference genome used in the analysis of the file</Data></Cell>
<Cell><Data ss:Type="String">Name of the reference genome used in the analysis of the file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.assembly</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">URL to the assembly</Data></Cell>
<Cell><Data ss:Type="String">URL to the assembly</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.contig</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Contigs referred to in the file</Data></Cell>
<Cell><Data ss:Type="String">Contigs referred to in the file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.contig.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 reference sequence mentioned in the samples</Data></Cell>
<Cell><Data ss:Type="String">Id of the reference sequence mentioned in the samples</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.contig.url</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">URL to contigs from which reference sequence in the samples are referred to</Data></Cell>
<Cell><Data ss:Type="String">URL to contigs from which reference sequence in the samples are referred to</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.info</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Info section of the headers</Data></Cell>
<Cell><Data ss:Type="String">Info section of the headers</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.info.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 info</Data></Cell>
<Cell><Data ss:Type="String">Id of the info</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.info.number</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">Number of values in the info</Data></Cell>
<Cell><Data ss:Type="String">Number of values in the info</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.info.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">Type</Data></Cell>
<Cell><Data ss:Type="String">Type of the value of the info</Data></Cell>
<Cell><Data ss:Type="String">Type of the value of the info</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.info.description</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">Description of the info</Data></Cell>
<Cell><Data ss:Type="String">Description of the info</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.filter</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Filer section of the headers</Data></Cell>
<Cell><Data ss:Type="String">Filer section of the headers</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.filter.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 filter</Data></Cell>
<Cell><Data ss:Type="String">Id of the filter</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.filter.description</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">Description of the filter</Data></Cell>
<Cell><Data ss:Type="String">Description of the filter</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.format</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Format section of the headers</Data></Cell>
<Cell><Data ss:Type="String">Format section of the headers</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.format.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 format</Data></Cell>
<Cell><Data ss:Type="String">Id of the format</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.format.number</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">Number of values in the format</Data></Cell>
<Cell><Data ss:Type="String">Number of values in the format</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.format.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">Type</Data></Cell>
<Cell><Data ss:Type="String">Type of the value of the format</Data></Cell>
<Cell><Data ss:Type="String">Type of the value of the format</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFMeta.format.description</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">Description of the format</Data></Cell>
<Cell><Data ss:Type="String">Description of the format</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>23</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">patient</Data></Cell>
<Cell><Data ss:Type="String">Patient being described by the resource</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell><Data ss:Type="String">VCFMeta.subject.patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source-file</Data></Cell>
<Cell><Data ss:Type="String">URL of the source file of the resource</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">VCFMeta.sourceFile</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>
<ActiveRow>3</ActiveRow>
<ActiveCol>0</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"><Data ss:Type="String">Version</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A definition</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#version</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s62"><Data ss:Type="String">A definition</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s69"><Data ss:Type="String">#type</Data></Cell>
</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/>
<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="version">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<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">v4_0</Data></Cell>
<Cell><Data ss:Type="String">Version 4.0</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">v4_1</Data></Cell>
<Cell><Data ss:Type="String">Version 4.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/>
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>31</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="type">
<Table ss:ExpandedColumnCount="3" ss:ExpandedRowCount="6" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0">
<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">Integer</Data></Cell>
<Cell><Data ss:Type="String">Integer</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">2</Data></Cell>
<Cell><Data ss:Type="String">Float</Data></Cell>
<Cell><Data ss:Type="String">Float</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell><Data ss:Type="String">Flag</Data></Cell>
<Cell><Data ss:Type="String">Flag</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">4</Data></Cell>
<Cell><Data ss:Type="String">Character</Data></Cell>
<Cell><Data ss:Type="String">Character</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">5</Data></Cell>
<Cell><Data ss:Type="String">String</Data></Cell>
<Cell><Data ss:Type="String">String</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="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 Sequece Resource describing patient John Doe's genotype of SNP rs421016</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">vcfmeta-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>5</ActiveRow>
<ActiveCol>5</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,756 @@
<?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-19T17:54: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>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="16" ss:ExpandedRowCount="22" 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="257.25"/>
<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">VCFVariant</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">Encapsulation of a snippet of a VCF/BCF2 file</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Encapsulation of a snippet of a VCF/BCF2 file</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">VCFVariant.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="8" ss:StyleID="Default"><Data ss:Type="String">Subject being described by the resource</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Subject being 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">VCFVariant.subject.patient</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">Resource(Paitent)</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Patient resource that corresponds to the subject</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Patient 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">VCFVariant.subject.fileId</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:Index="8" ss:StyleID="Default"><Data ss:Type="String">Id of the subject' sample in the file</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Id of the sample 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">VCFVariant.sourceFile</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">Attachment</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Source file of the resoruce</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Source file of the resoruce</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">VCFVariant.meta</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">Resource(VCFMeta)</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Meta information of the variant</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Meta information of the variant</Data></Cell>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
<Cell ss:StyleID="Default"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.chrom</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">string</Data></Cell>
<Cell ss:Index="8" ss:StyleID="Default"><Data ss:Type="String">Id of the reference sequence</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">Id of the reference sequence</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">VCFVariant.pos</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">Position of the variant</Data></Cell>
<Cell><Data ss:Type="String">Position of the variant</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.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 variant</Data></Cell>
<Cell><Data ss:Type="String">Identifier of the variant</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.ref</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">Reference genotype of the variant</Data></Cell>
<Cell><Data ss:Type="String">Reference genotype of the variant</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.alt</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">Alternative genotype of the variant</Data></Cell>
<Cell><Data ss:Type="String">Alternative genotype of the variant</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.qual</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">Qual section of the file</Data></Cell>
<Cell><Data ss:Type="String">Quality of the variant</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.filter</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">Filter section of the file</Data></Cell>
<Cell><Data ss:Type="String">Filter section of the file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.info</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Info section of the file</Data></Cell>
<Cell><Data ss:Type="String">Info section of the file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.info.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">Name of the info</Data></Cell>
<Cell><Data ss:Type="String">Id of the info</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.info.value</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">Value of the info</Data></Cell>
<Cell><Data ss:Type="String">Value of the info</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.sample</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">Sample being described in the file</Data></Cell>
<Cell><Data ss:Type="String">Sample being described in the file</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.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">VCFVariant.sample.field</Data></Cell>
<Cell><Data ss:Type="String">1..*</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">string</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">A field of the sample</Data></Cell>
<Cell><Data ss:Type="String">A field of the sample</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.sample.field.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 fiel</Data></Cell>
<Cell><Data ss:Type="String">Id of the field</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">VCFVariant.sample.field.value</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">Value of the field</Data></Cell>
<Cell><Data ss:Type="String">Value of the field</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>21</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">patient</Data></Cell>
<Cell><Data ss:Type="String">Patient being described by the resoruce</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell><Data ss:Type="String">union</Data></Cell>
<Cell><Data ss:Type="String">VCFVariant.subject.patient</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">coordinate</Data></Cell>
<Cell><Data ss:Type="String">Coordinate of the vairant</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">source-file</Data></Cell>
<Cell><Data ss:Type="String">URL to the source file of the resource</Data></Cell>
<Cell><Data ss:Type="String">string</Data></Cell>
<Cell><Data ss:Type="String">single</Data></Cell>
<Cell><Data ss:Type="String">VCFVariant.sourceFile</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>4</ActiveRow>
<ActiveCol>0</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>13</ActiveRow>
<RangeSelection>R14C2:R15C2</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 Sequece Resource describing patient John Doe's genotype of SNP rs421016</Data></Cell>
<Cell><Data ss:Type="String">example</Data></Cell>
<Cell><Data ss:Type="String">vcfvariant-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>7</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
@ -18,7 +18,7 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
</dependency>
<dependency>
@ -41,7 +41,7 @@
<plugin>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<executions>
<execution>
<id>custom-structs</id>

View File

@ -0,0 +1,107 @@
<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>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-test</artifactId>
<packaging>jar</packaging>
<name>HAPI Tinder Plugin - Test Project</name>
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- <plugin> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-tinder-plugin</artifactId> <version>1.0-SNAPSHOT</version> <executions> <execution> <id>structs</id> <goals> <goal>generate-structures</goal>
</goals> <configuration> <package>ca.uhn.tindertest</package> <baseResourceNames> <baseResourceName>patient</baseResourceName> <baseResourceName>valueset</baseResourceName> <baseResourceName>organization</baseResourceName>
<baseResourceName>device</baseResourceName> <baseResourceName>location</baseResourceName> <baseResourceName>practitioner</baseResourceName> </baseResourceNames> </configuration> </execution>
<execution> <id>client</id> <goals> <goal>generate-client</goal> </goals> <configuration> <clientClassName>ca.uhn.hitest.HiTest</clientClassName> <serverBaseHref>http://fhir.healthintersections.com.au/open</serverBaseHref>
<generateSearchForAllParams>true</generateSearchForAllParams> </configuration> </execution> </executions> </plugin> -->
<plugin>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-tinder-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<id>custom-structs</id>
<goals>
<goal>generate-structures</goal>
</goals>
<configuration>
<package>ca.uhn.test.customstructs</package>
<profileHttpBase>http://foo</profileHttpBase>
<resourceProfileFiles>
<resourceProfileFile>
<profileFile>${project.basedir}/src/test/resources/profile/patient.xml</profileFile>
<profileSourceUrl>http://foo1</profileSourceUrl>
</resourceProfileFile>
<resourceProfileFile>
<profileFile>${project.basedir}/src/test/resources/profile/organization.xml</profileFile>
<profileSourceUrl>http://foo1</profileSourceUrl>
</resourceProfileFile>
</resourceProfileFiles>
<resourceValueSetFiles>
<resourceValueSetFile>
<valueSetFile>${project.basedir}/src/test/resources/valueset/valueset-cgta-patientidpool.xml</valueSetFile>
</resourceValueSetFile>
<resourceValueSetFile>
<valueSetFile>${project.basedir}/src/test/resources/valueset/valueset-cgta-provideridpool.xml</valueSetFile>
</resourceValueSetFile>
</resourceValueSetFiles>
</configuration>
</execution>
<execution>
<id>generalstructs</id>
<goals>
<goal>generate-structures</goal>
</goals>
<configuration>
<package>ca.uhn.test.realstructs</package>
<baseResourceNames>
<baseResourceName>patient</baseResourceName>
<baseResourceName>valueset</baseResourceName>
<baseResourceName>organization</baseResourceName>
<baseResourceName>device</baseResourceName>
<baseResourceName>location</baseResourceName>
<baseResourceName>practitioner</baseResourceName>
</baseResourceNames>
<buildDatatypes>true</buildDatatypes>
</configuration>
</execution>
<!-- <execution> <id>client</id> <goals> <goal>generate-client</goal> </goals> <configuration> <clientClassName>ca.uhn.hitest.HiTest</clientClassName> <serverBaseHref>http://fhir.healthintersections.com.au/open</serverBaseHref>
<generateSearchForAllParams>true</generateSearchForAllParams> </configuration> </execution> -->
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -11,7 +11,7 @@
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<version>0.1</version>
<name>HAPI</name>
<url>http://hl7api.sourceforge.net/</url>
<description>
@ -31,7 +31,7 @@
<module>hapi-fhir-base</module>
<module>hapi-tinder-plugin</module>
<module>hapi-tinder-test</module>
<!-- <module>hapi-fhir-structures-dstu</module> -->
<module>hapi-fhir-structures-dstu</module>
</modules>
<properties>

90
pom.xml.versionsBackup Normal file
View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>HAPI</name>
<url>http://hl7api.sourceforge.net/</url>
<description>
</description>
<dependencies>
</dependencies>
<licenses>
<license>
<name>Apache Software License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modules>
<module>hapi-fhir-base</module>
<module>hapi-tinder-plugin</module>
<module>hapi-tinder-test</module>
<!-- <module>hapi-fhir-structures-dstu</module> -->
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven_javadoc_plugin_version>2.9.1</maven_javadoc_plugin_version>
<maven_site_plugin_version>3.3</maven_site_plugin_version>
<slf4j_version>1.6.6</slf4j_version>
<hamcrest_version>1.3</hamcrest_version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven_site_plugin_version}</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven_javadoc_plugin_version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

1
update_version.sh Normal file
View File

@ -0,0 +1 @@
mvn -P ALLMODULES versions:set -DnewVersion=2.1-alpha1