Update resource definitions for DSSTU2

This commit is contained in:
James Agnew 2015-03-02 22:39:53 -05:00
parent 722f08de13
commit dae2a810d6
190 changed files with 162539 additions and 1117305 deletions

View File

@ -1,9 +1,11 @@
package example;
import java.util.Date;
import java.util.List;
import java.util.Set;
import ca.uhn.fhir.model.api.TemporalPrecisionEnum;
import ca.uhn.fhir.model.dstu2.composite.CodeableConceptDt;
import ca.uhn.fhir.model.dstu2.composite.CodingDt;
import ca.uhn.fhir.model.dstu2.composite.HumanNameDt;
import ca.uhn.fhir.model.dstu2.composite.IdentifierDt;
@ -44,17 +46,17 @@ public class FhirDataModel {
// START SNIPPET: nonNull
Observation observation = new Observation();
// None of these calls will return null, but instead create their
// None of these calls will not return null, but instead create their
// respective
// child elements.
IdentifierDt identifierDt = observation.getIdentifier();
PeriodDt periodDt = observation.getIdentifier().getPeriod();
DateTimeDt activeDt = observation.getIdentifier().getPeriod().getStartElement();
List<IdentifierDt> identifierList = observation.getIdentifier();
CodeableConceptDt code = observation.getCode();
StringDt textElement = observation.getCode().getTextElement();
// DateTimeDt is a FHIR primitive however, so the following will return
// null
// unless a value has been placed there.
Date active = observation.getIdentifier().getPeriod().getStartElement().getValue();
Date active = observation.addIdentifier().getPeriod().getStartElement().getValue();
// END SNIPPET: nonNull
}

View File

@ -249,8 +249,8 @@ public class GenericClientExample {
// START SNIPPET: searchComposite
response = client.search()
.forResource("Observation")
.where(Observation.NAME_VALUE_DATE
.withLeft(Observation.NAME.exactly().code("FOO$BAR"))
.where(Observation.CODE_VALUE_DATE
.withLeft(Observation.CODE.exactly().code("FOO$BAR"))
.withRight(Observation.VALUE_DATE.exactly().day("2001-01-01")))
.execute();
// END SNIPPET: searchComposite

View File

@ -424,7 +424,7 @@ public List<Patient> searchByNamedQuery(@RequiredParam(name="someparam") StringP
//START SNIPPET: searchComposite
@Search()
public List<Observation> searchByComposite(
@RequiredParam(name=Observation.SP_NAME_VALUE_DATE, compositeTypes= {TokenParam.class, DateParam.class})
@RequiredParam(name=Observation.SP_CODE_VALUE_DATE, compositeTypes= {TokenParam.class, DateParam.class})
CompositeParam<TokenParam, DateParam> theParam) {
// Each of the two values in the composite param are accessible separately.
// In the case of Observation's name-value-date, the left is a string and
@ -484,7 +484,7 @@ public List<Patient> searchWithDocs(
//START SNIPPET: searchMultiple
@Search()
public List<Observation> searchByObservationNames(
@RequiredParam(name=Observation.SP_NAME) TokenOrListParam theCodings ) {
@RequiredParam(name=Observation.SP_CODE) TokenOrListParam theCodings ) {
// The list here will contain 0..* codings, and any observations which match any of the
// given codings should be returned

View File

@ -30,9 +30,9 @@ public interface BaseBinary extends IResource {
String getContentType();
void setContent(byte[] theContent);
BaseBinary setContent(byte[] theContent);
void setContentAsBase64(String theContent);
BaseBinary setContentAsBase64(String theContent);
void setContentType(String theContentType);
BaseBinary setContentType(String theContentType);
}

View File

@ -138,6 +138,7 @@ public abstract class BaseThymeleafNarrativeGenerator implements INarrativeGener
try {
Context context = new Context();
context.setVariable("resource", theResource);
context.setVariable("fhirVersion", myFhirContext.getVersion().getVersion().name());
String result = myProfileTemplateEngine.process(name, context);

View File

@ -50,9 +50,18 @@
<th:block th:each="result,rowStat : ${resource.result}">
<tr th:class="${rowStat.odd}? 'hapiTableOfValuesRowOdd' : 'hapiTableOfValuesRowEven'" class="hapiTableOfValuesRowOdd">
<td>
<th:block th:if="${not result.resource.name.textElement.empty}" th:text="${result.resource.name.textElement.value}"/>
<th:block th:if="${result.resource.name.textElement.empty} and ${not #lists.isEmpty(result.resource.name.coding)} and ${not result.resource.name.coding[0].empty} and ${not result.resource.name.coding[0].displayElement.empty}" th:text="${result.resource.name.coding[0].display}"/>
<th:block th:if="${result.resource.name.textElement.empty} and ${not #lists.isEmpty(result.resource.name.coding)} and ${not result.resource.name.coding[0].empty} and ${result.resource.name.coding[0].displayElement.empty}" th:text="'?'"/>
<th:block th:switch="${fhirVersion}">
<th:block th:case="'DSTU1'">
<th:block th:if="${not result.resource.name.textElement.empty}" th:text="${result.resource.name.textElement.value}"/>
<th:block th:if="${result.resource.name.textElement.empty} and ${not #lists.isEmpty(result.resource.name.coding)} and ${not result.resource.name.coding[0].empty} and ${not result.resource.name.coding[0].displayElement.empty}" th:text="${result.resource.name.coding[0].display}"/>
<th:block th:if="${result.resource.name.textElement.empty} and ${not #lists.isEmpty(result.resource.name.coding)} and ${not result.resource.name.coding[0].empty} and ${result.resource.name.coding[0].displayElement.empty}" th:text="'?'"/>
</th:block>
<th:block th:case="'*'">
<th:block th:if="${not result.resource.code.textElement.empty}" th:text="${result.resource.code.textElement.value}"/>
<th:block th:if="${result.resource.code.textElement.empty} and ${not #lists.isEmpty(result.resource.code.coding)} and ${not result.resource.code.coding[0].empty} and ${not result.resource.code.coding[0].displayElement.empty}" th:text="${result.resource.code.coding[0].display}"/>
<th:block th:if="${result.resource.code.textElement.empty} and ${not #lists.isEmpty(result.resource.code.coding)} and ${not result.resource.code.coding[0].empty} and ${result.resource.code.coding[0].displayElement.empty}" th:text="'?'"/>
</th:block>
</th:block>
<!--/*--> Hb <!--*/-->
</td>
<td th:narrative="${result.resource.value}">2.2 g/L</td>

View File

@ -224,7 +224,7 @@ public class FhirSystemDaoDstu2 extends BaseFhirSystemDao<Bundle> {
}
EntryTransactionResponse resp = response.addEntry().setResource(found).getTransactionResponse();
resp.setLocation(found.getId().toUnqualified().getValue());
resp.addEtag(found.getId().getVersionIdPart());
resp.setEtag(found.getId().getVersionIdPart());
} else if (parts.getParams() != null) {
RuntimeResourceDefinition def = getContext().getResourceDefinition(parts.getDao().getResourceType());
SearchParameterMap params = translateMatchUrl(url, def);
@ -473,7 +473,7 @@ public class FhirSystemDaoDstu2 extends BaseFhirSystemDao<Bundle> {
newEntry.getTransactionResponse().setStatus(Long.toString(Constants.STATUS_HTTP_200_OK));
}
newEntry.getTransactionResponse().setLocation(outcome.getId().toUnqualified().getValue());
newEntry.getTransactionResponse().addEtag().setValue(outcome.getId().getVersionIdPart());
newEntry.getTransactionResponse().setEtag(outcome.getId().getVersionIdPart());
}
private String extractTransactionUrlOrThrowException(Entry nextEntry, HTTPVerbEnum verb) {

View File

@ -1,7 +1,19 @@
package ca.uhn.fhir.jpa.dao;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import static org.hamcrest.Matchers.contains;
import static org.hamcrest.Matchers.containsInAnyOrder;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.endsWith;
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.util.ArrayList;
import java.util.Date;
@ -38,7 +50,6 @@ import ca.uhn.fhir.model.dstu2.resource.Location;
import ca.uhn.fhir.model.dstu2.resource.Observation;
import ca.uhn.fhir.model.dstu2.resource.Organization;
import ca.uhn.fhir.model.dstu2.resource.Patient;
import ca.uhn.fhir.model.dstu2.resource.Bundle.Entry;
import ca.uhn.fhir.model.dstu2.valueset.AdministrativeGenderEnum;
import ca.uhn.fhir.model.dstu2.valueset.HTTPVerbEnum;
import ca.uhn.fhir.model.dstu2.valueset.QuantityComparatorEnum;
@ -58,7 +69,6 @@ import ca.uhn.fhir.rest.param.ReferenceParam;
import ca.uhn.fhir.rest.param.StringParam;
import ca.uhn.fhir.rest.param.TokenOrListParam;
import ca.uhn.fhir.rest.param.TokenParam;
import ca.uhn.fhir.rest.server.Constants;
import ca.uhn.fhir.rest.server.IBundleProvider;
import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException;
import ca.uhn.fhir.rest.server.exceptions.PreconditionFailedException;
@ -226,7 +236,7 @@ public class FhirResourceDaoTest {
@Test
public void testChoiceParamConcept() {
Observation o1 = new Observation();
o1.getName().addCoding().setSystem("foo").setCode("testChoiceParam01");
o1.getCode().addCoding().setSystem("foo").setCode("testChoiceParam01");
o1.setValue(new CodeableConceptDt("testChoiceParam01CCS", "testChoiceParam01CCV"));
IdDt id1 = ourObservationDao.create(o1).getId();
@ -240,7 +250,7 @@ public class FhirResourceDaoTest {
@Test
public void testChoiceParamDate() {
Observation o2 = new Observation();
o2.getName().addCoding().setSystem("foo").setCode("testChoiceParam02");
o2.getCode().addCoding().setSystem("foo").setCode("testChoiceParam02");
o2.setValue(new PeriodDt().setStart(new DateTimeDt("2001-01-01")).setEnd(new DateTimeDt("2001-01-03")));
IdDt id2 = ourObservationDao.create(o2).getId();
@ -254,7 +264,7 @@ public class FhirResourceDaoTest {
@Test
public void testChoiceParamQuantity() {
Observation o3 = new Observation();
o3.getName().addCoding().setSystem("foo").setCode("testChoiceParam03");
o3.getCode().addCoding().setSystem("foo").setCode("testChoiceParam03");
o3.setValue(new QuantityDt(QuantityComparatorEnum.GREATERTHAN, 123.0, "foo", "bar"));
IdDt id3 = ourObservationDao.create(o3).getId();
@ -283,7 +293,7 @@ public class FhirResourceDaoTest {
public void testChoiceParamString() {
Observation o4 = new Observation();
o4.getName().addCoding().setSystem("foo").setCode("testChoiceParam04");
o4.getCode().addCoding().setSystem("foo").setCode("testChoiceParam04");
o4.setValue(new StringDt("testChoiceParam04Str"));
IdDt id4 = ourObservationDao.create(o4).getId();
@ -680,7 +690,7 @@ public class FhirResourceDaoTest {
@Test
public void testPersistSearchParamObservationString() {
Observation obs = new Observation();
obs.getName().addCoding().setSystem("foo").setCode("testPersistSearchParamQuantity");
obs.getCode().addCoding().setSystem("foo").setCode("testPersistSearchParamQuantity");
obs.setValue(new StringDt("AAAABBBB"));
ourObservationDao.create(obs);
@ -696,7 +706,7 @@ public class FhirResourceDaoTest {
@Test
public void testPersistSearchParamQuantity() {
Observation obs = new Observation();
obs.getName().addCoding().setSystem("foo").setCode("testPersistSearchParamQuantity");
obs.getCode().addCoding().setSystem("foo").setCode("testPersistSearchParamQuantity");
obs.setValue(new QuantityDt(111));
ourObservationDao.create(obs);
@ -834,12 +844,12 @@ public class FhirResourceDaoTest {
@Test
public void testSearchCompositeParam() {
Observation o1 = new Observation();
o1.getName().addCoding().setSystem("foo").setCode("testSearchCompositeParamN01");
o1.getCode().addCoding().setSystem("foo").setCode("testSearchCompositeParamN01");
o1.setValue(new StringDt("testSearchCompositeParamS01"));
IdDt id1 = ourObservationDao.create(o1).getId();
Observation o2 = new Observation();
o2.getName().addCoding().setSystem("foo").setCode("testSearchCompositeParamN01");
o2.getCode().addCoding().setSystem("foo").setCode("testSearchCompositeParamN01");
o2.setValue(new StringDt("testSearchCompositeParamS02"));
IdDt id2 = ourObservationDao.create(o2).getId();
@ -847,7 +857,7 @@ public class FhirResourceDaoTest {
TokenParam v0 = new TokenParam("foo", "testSearchCompositeParamN01");
StringParam v1 = new StringParam("testSearchCompositeParamS01");
CompositeParam<TokenParam, StringParam> val = new CompositeParam<TokenParam, StringParam>(v0, v1);
IBundleProvider result = ourObservationDao.search(Observation.SP_NAME_VALUE_STRING, val);
IBundleProvider result = ourObservationDao.search(Observation.SP_CODE_VALUE_STRING, val);
assertEquals(1, result.size());
assertEquals(id1.toUnqualifiedVersionless(), result.getResources(0, 1).get(0).getId().toUnqualifiedVersionless());
}
@ -855,7 +865,7 @@ public class FhirResourceDaoTest {
TokenParam v0 = new TokenParam("foo", "testSearchCompositeParamN01");
StringParam v1 = new StringParam("testSearchCompositeParamS02");
CompositeParam<TokenParam, StringParam> val = new CompositeParam<TokenParam, StringParam>(v0, v1);
IBundleProvider result = ourObservationDao.search(Observation.SP_NAME_VALUE_STRING, val);
IBundleProvider result = ourObservationDao.search(Observation.SP_CODE_VALUE_STRING, val);
assertEquals(1, result.size());
assertEquals(id2.toUnqualifiedVersionless(), result.getResources(0, 1).get(0).getId().toUnqualifiedVersionless());
}
@ -864,12 +874,12 @@ public class FhirResourceDaoTest {
@Test
public void testSearchCompositeParamDate() {
Observation o1 = new Observation();
o1.getName().addCoding().setSystem("foo").setCode("testSearchCompositeParamDateN01");
o1.getCode().addCoding().setSystem("foo").setCode("testSearchCompositeParamDateN01");
o1.setValue(new PeriodDt().setStart(new DateTimeDt("2001-01-01T11:11:11")));
IdDt id1 = ourObservationDao.create(o1).getId().toUnqualifiedVersionless();
Observation o2 = new Observation();
o2.getName().addCoding().setSystem("foo").setCode("testSearchCompositeParamDateN01");
o2.getCode().addCoding().setSystem("foo").setCode("testSearchCompositeParamDateN01");
o2.setValue(new PeriodDt().setStart(new DateTimeDt("2001-01-01T12:12:12")));
IdDt id2 = ourObservationDao.create(o2).getId().toUnqualifiedVersionless();
@ -877,7 +887,7 @@ public class FhirResourceDaoTest {
TokenParam v0 = new TokenParam("foo", "testSearchCompositeParamDateN01");
DateParam v1 = new DateParam("2001-01-01T11:11:11");
CompositeParam<TokenParam, DateParam> val = new CompositeParam<TokenParam, DateParam>(v0, v1);
IBundleProvider result = ourObservationDao.search(Observation.SP_NAME_VALUE_DATE, val);
IBundleProvider result = ourObservationDao.search(Observation.SP_CODE_VALUE_DATE, val);
assertEquals(1, result.size());
assertEquals(id1.toUnqualifiedVersionless(), result.getResources(0, 1).get(0).getId().toUnqualifiedVersionless());
}
@ -886,7 +896,7 @@ public class FhirResourceDaoTest {
// TODO: this should also work with ">2001-01-01T15:12:12" since the two times only have a lower bound
DateParam v1 = new DateParam(">2001-01-01T10:12:12");
CompositeParam<TokenParam, DateParam> val = new CompositeParam<TokenParam, DateParam>(v0, v1);
IBundleProvider result = ourObservationDao.search(Observation.SP_NAME_VALUE_DATE, val);
IBundleProvider result = ourObservationDao.search(Observation.SP_CODE_VALUE_DATE, val);
assertEquals(2, result.size());
assertThat(toUnqualifiedVersionlessIds(result), containsInAnyOrder(id1, id2));
}

View File

@ -1,17 +1,16 @@
package ca.uhn.fhir.jpa.dao;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.emptyString;
import static org.hamcrest.Matchers.endsWith;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Map;
import org.hamcrest.Matchers;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
@ -19,22 +18,13 @@ import org.springframework.context.support.ClassPathXmlApplicationContext;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.FhirVersionEnum;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.api.ResourceMetadataKeyEnum;
import ca.uhn.fhir.model.api.TagList;
import ca.uhn.fhir.model.dstu2.composite.IdentifierDt;
import ca.uhn.fhir.model.dstu2.composite.QuantityDt;
import ca.uhn.fhir.model.dstu2.composite.ResourceReferenceDt;
import ca.uhn.fhir.model.dstu2.resource.Location;
import ca.uhn.fhir.model.dstu2.resource.Observation;
import ca.uhn.fhir.model.dstu2.resource.Patient;
import ca.uhn.fhir.model.dstu2.resource.Bundle;
import ca.uhn.fhir.model.dstu2.resource.Bundle.Entry;
import ca.uhn.fhir.model.dstu2.resource.Observation;
import ca.uhn.fhir.model.dstu2.resource.Patient;
import ca.uhn.fhir.model.dstu2.valueset.HTTPVerbEnum;
import ca.uhn.fhir.model.primitive.IdDt;
import ca.uhn.fhir.model.primitive.InstantDt;
import ca.uhn.fhir.model.valueset.BundleEntryTransactionOperationEnum;
import ca.uhn.fhir.rest.param.TokenParam;
import ca.uhn.fhir.rest.server.Constants;
import ca.uhn.fhir.rest.server.IBundleProvider;
import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException;
@ -69,7 +59,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.POST).setIfNoneExist("Patient?identifier=urn%3Asystem%7C" + methodName);
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference("Patient/" + methodName);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);
@ -79,13 +69,13 @@ public class FhirSystemDaoDstu2Test {
Entry respEntry = resp.getEntry().get(1);
assertEquals(Constants.STATUS_HTTP_200_OK + "", respEntry.getTransactionResponse().getStatus());
assertThat(respEntry.getTransactionResponse().getLocation(), endsWith("Patient/" + id.getIdPart() + "/_history/1"));
assertEquals("1", respEntry.getTransactionResponse().getEtag().get(0).getValue());
assertEquals("1", respEntry.getTransactionResponse().getEtag());
respEntry = resp.getEntry().get(2);
assertEquals(Constants.STATUS_HTTP_201_CREATED + "", respEntry.getTransactionResponse().getStatus());
assertThat(respEntry.getTransactionResponse().getLocation(), containsString("Observation/"));
assertThat(respEntry.getTransactionResponse().getLocation(), endsWith("/_history/1"));
assertEquals("1", respEntry.getTransactionResponse().getEtag().get(0).getValue());
assertEquals("1", respEntry.getTransactionResponse().getEtag());
o = (Observation) ourObservationDao.read(new IdDt(respEntry.getTransactionResponse().getLocationElement()));
assertEquals(id.toVersionless(), o.getSubject().getReference());
@ -160,7 +150,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.POST).setIfNoneExist("Patient?identifier=urn%3Asystem%7C" + methodName);
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference("Patient/" + methodName);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);
@ -184,7 +174,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.POST).setIfNoneExist("Patient?identifier=urn%3Asystem%7C" + methodName);
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference("Patient/" + methodName);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);
@ -197,13 +187,13 @@ public class FhirSystemDaoDstu2Test {
assertThat(patientId, not(endsWith("Patient/" + methodName + "/_history/1")));
assertThat(patientId, (endsWith("/_history/1")));
assertThat(patientId, (containsString("Patient/")));
assertEquals("1", respEntry.getTransactionResponse().getEtag().get(0).getValue());
assertEquals("1", respEntry.getTransactionResponse().getEtag());
respEntry = resp.getEntry().get(2);
assertEquals(Constants.STATUS_HTTP_201_CREATED + "", respEntry.getTransactionResponse().getStatus());
assertThat(respEntry.getTransactionResponse().getLocation(), containsString("Observation/"));
assertThat(respEntry.getTransactionResponse().getLocation(), endsWith("/_history/1"));
assertEquals("1", respEntry.getTransactionResponse().getEtag().get(0).getValue());
assertEquals("1", respEntry.getTransactionResponse().getEtag());
o = (Observation) ourObservationDao.read(new IdDt(respEntry.getTransactionResponse().getLocationElement()));
assertEquals(new IdDt(patientId).toUnqualifiedVersionless(), o.getSubject().getReference());
@ -419,7 +409,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.PUT).setUrl("Patient?identifier=urn%3Asystem%7C" + methodName);
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference("Patient/" + methodName);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);
@ -465,7 +455,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.PUT).setUrl("Patient?identifier=urn%3Asystem%7C" + methodName);
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference("Patient/" + methodName);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);
@ -493,7 +483,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.PUT).setUrl("Patient?identifier=urn%3Asystem%7C" + methodName);
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference(id);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);
@ -536,7 +526,7 @@ public class FhirSystemDaoDstu2Test {
request.addEntry().setResource(p).getTransaction().setMethod(HTTPVerbEnum.PUT).setUrl("Patient/" + id.getIdPart());
Observation o = new Observation();
o.getName().setText("Some Observation");
o.getCode().setText("Some Observation");
o.getSubject().setReference("Patient/" + methodName);
request.addEntry().setResource(o).getTransaction().setMethod(HTTPVerbEnum.POST);

View File

@ -87,16 +87,19 @@ public class Binary extends BaseResource implements BaseBinary {
return (myContent.isEmpty()) && ElementUtil.isEmpty(myContentType);
}
public void setContent(byte[] theContent) {
public Binary setContent(byte[] theContent) {
myContent.setValue(theContent);
return this;
}
public void setContentAsBase64(String theContent) {
public Binary setContentAsBase64(String theContent) {
myContent.setValueAsString(theContent);
return this;
}
public void setContentType(String theContentType) {
public Binary setContentType(String theContentType) {
myContentType = new StringDt(theContentType);
return this;
}
@Override

View File

@ -195,144 +195,106 @@
<package>ca.uhn.fhir.model.dstu2</package>
<version>dstu2</version>
<baseResourceNames>
<baseResourceName>adversereaction</baseResourceName>
<baseResourceName>adversereactionrisk</baseResourceName>
<baseResourceName>alert</baseResourceName>
<baseResourceName>allergyintolerance</baseResourceName>
<baseResourceName>appointment</baseResourceName>
<baseResourceName>appointmentresponse</baseResourceName>
<!--<baseResourceName>assessmentdefinition</baseResourceName>-->
<baseResourceName>basic</baseResourceName>
<!--<baseResourceName>binary</baseResourceName>-->
<baseResourceName>bundle</baseResourceName>
<!--<baseResourceName>careactivity</baseResourceName>-->
<baseResourceName>careplan</baseResourceName>
<baseResourceName>careplan2</baseResourceName>
<baseResourceName>claim</baseResourceName>
<baseResourceName>claimresponse</baseResourceName>
<baseResourceName>clinicalassessment</baseResourceName>
<!--<baseResourceName>commondataelement</baseResourceName>-->
<baseResourceName>communication</baseResourceName>
<baseResourceName>communicationrequest</baseResourceName>
<baseResourceName>composition</baseResourceName>
<baseResourceName>conceptmap</baseResourceName>
<baseResourceName>condition</baseResourceName>
<baseResourceName>conformance</baseResourceName>
<baseResourceName>contract</baseResourceName>
<baseResourceName>contraindication</baseResourceName>
<baseResourceName>coverage</baseResourceName>
<baseResourceName>dataelement</baseResourceName>
<baseResourceName>device</baseResourceName>
<baseResourceName>devicecomponent</baseResourceName>
<baseResourceName>devicemetric</baseResourceName>
<baseResourceName>deviceobservationreport</baseResourceName>
<baseResourceName>deviceuserequest</baseResourceName>
<baseResourceName>deviceusestatement</baseResourceName>
<baseResourceName>diagnosticorder</baseResourceName>
<baseResourceName>diagnosticreport</baseResourceName>
<!--<baseResourceName>document</baseResourceName>-->
<!--<baseResourceName>documentation</baseResourceName>-->
<baseResourceName>documentmanifest</baseResourceName>
<baseResourceName>documentreference</baseResourceName>
<!--<baseResourceName>eligibility</baseResourceName>-->
<baseResourceName>eligibilityrequest</baseResourceName>
<baseResourceName>eligibilityresponse</baseResourceName>
<baseResourceName>encounter</baseResourceName>
<!--<baseResourceName>enrollment</baseResourceName>-->
<baseResourceName>enrollmentrequest</baseResourceName>
<baseResourceName>enrollmentresponse</baseResourceName>
<baseResourceName>episodeofcare</baseResourceName>
<baseResourceName>explanationofbenefit</baseResourceName>
<baseResourceName>extensiondefinition</baseResourceName>
<baseResourceName>familyhistory</baseResourceName>
<!--<baseResourceName>geneexpression</baseResourceName>-->
<baseResourceName>geneticanalysis</baseResourceName>
<baseResourceName>goal</baseResourceName>
<!--<baseResourceName>goalrequest</baseResourceName>-->
<baseResourceName>group</baseResourceName>
<baseResourceName>gvfmeta</baseResourceName>
<baseResourceName>gvfvariant</baseResourceName>
<baseResourceName>healthcareservice</baseResourceName>
<baseResourceName>imagingobjectselection</baseResourceName>
<baseResourceName>imagingstudy</baseResourceName>
<baseResourceName>immunization</baseResourceName>
<!--<baseResourceName>immunizationprofile</baseResourceName>-->
<baseResourceName>immunizationrecommendation</baseResourceName>
<baseResourceName>institutionalclaim</baseResourceName>
<!--<baseResourceName>interestofcare</baseResourceName>-->
<baseResourceName>list</baseResourceName>
<baseResourceName>location</baseResourceName>
<baseResourceName>media</baseResourceName>
<baseResourceName>medication</baseResourceName>
<baseResourceName>medicationadministration</baseResourceName>
<baseResourceName>medicationdispense</baseResourceName>
<baseResourceName>medicationprescription</baseResourceName>
<baseResourceName>medicationstatement</baseResourceName>
<!--<baseResourceName>message</baseResourceName>-->
<baseResourceName>messageheader</baseResourceName>
<!--<baseResourceName>microarray</baseResourceName>-->
<!--<baseResourceName>namespace</baseResourceName>-->
<baseResourceName>namingsystem</baseResourceName>
<!--<baseResourceName>newbundle</baseResourceName>-->
<baseResourceName>nutritionorder</baseResourceName>
<baseResourceName>observation</baseResourceName>
<baseResourceName>operationdefinition</baseResourceName>
<baseResourceName>operationoutcome</baseResourceName>
<baseResourceName>oralhealthclaim</baseResourceName>
<baseResourceName>order</baseResourceName>
<baseResourceName>orderresponse</baseResourceName>
<baseResourceName>organization</baseResourceName>
<baseResourceName>other</baseResourceName>
<baseResourceName>patient</baseResourceName>
<baseResourceName>paymentnotice</baseResourceName>
<baseResourceName>paymentreconciliation</baseResourceName>
<baseResourceName>pendedrequest</baseResourceName>
<baseResourceName>person</baseResourceName>
<baseResourceName>pharmacyclaim</baseResourceName>
<!--<baseResourceName>picture</baseResourceName>-->
<baseResourceName>practitioner</baseResourceName>
<!--<baseResourceName>problem</baseResourceName>-->
<baseResourceName>procedure</baseResourceName>
<baseResourceName>procedurerequest</baseResourceName>
<baseResourceName>professionalclaim</baseResourceName>
<baseResourceName>profile</baseResourceName>
<!--<baseResourceName>protocol</baseResourceName>-->
<baseResourceName>provenance</baseResourceName>
<baseResourceName>query</baseResourceName>
<baseResourceName>questionnaire</baseResourceName>
<baseResourceName>questionnaireanswers</baseResourceName>
<baseResourceName>readjudicate</baseResourceName>
<baseResourceName>referralrequest</baseResourceName>
<baseResourceName>relatedperson</baseResourceName>
<baseResourceName>remittance</baseResourceName>
<baseResourceName>reversal</baseResourceName>
<baseResourceName>riskassessment</baseResourceName>
<baseResourceName>schedule</baseResourceName>
<baseResourceName>searchparameter</baseResourceName>
<baseResourceName>securityclaim</baseResourceName>
<baseResourceName>securityevent</baseResourceName>
<baseResourceName>securitygroup</baseResourceName>
<baseResourceName>securityprincipal</baseResourceName>
<!--<baseResourceName>sequence</baseResourceName>
<baseResourceName>sequencinganalysis</baseResourceName>
<baseResourceName>sequencinglab</baseResourceName>-->
<baseResourceName>slot</baseResourceName>
<baseResourceName>specimen</baseResourceName>
<baseResourceName>statusrequest</baseResourceName>
<baseResourceName>statusresponse</baseResourceName>
<!--<baseResourceName>study</baseResourceName>-->
<baseResourceName>subscription</baseResourceName>
<baseResourceName>substance</baseResourceName>
<baseResourceName>supply</baseResourceName>
<baseResourceName>supportingdocumentation</baseResourceName>
<!--<baseResourceName>test</baseResourceName>-->
<baseResourceName>user</baseResourceName>
<baseResourceName>valueset</baseResourceName>
<!--<baseResourceName>vcfmeta</baseResourceName>
<baseResourceName>vcfvariant</baseResourceName>-->
<baseResourceName>visionclaim</baseResourceName>
<baseResourceName>visionprescription</baseResourceName>
<!--<baseResourceName>visit</baseResourceName>-->
<baseResourceName>Condition</baseResourceName>
<baseResourceName>Supply</baseResourceName>
<baseResourceName>DeviceComponent</baseResourceName>
<baseResourceName>Communication</baseResourceName>
<baseResourceName>Group</baseResourceName>
<baseResourceName>ValueSet</baseResourceName>
<baseResourceName>OralHealthClaim</baseResourceName>
<baseResourceName>Coverage</baseResourceName>
<baseResourceName>Appointment</baseResourceName>
<baseResourceName>Slot</baseResourceName>
<baseResourceName>Contraindication</baseResourceName>
<baseResourceName>Composition</baseResourceName>
<baseResourceName>EpisodeOfCare</baseResourceName>
<baseResourceName>Conformance</baseResourceName>
<baseResourceName>NamingSystem</baseResourceName>
<baseResourceName>HealthcareService</baseResourceName>
<baseResourceName>OrderResponse</baseResourceName>
<baseResourceName>StatusResponse</baseResourceName>
<baseResourceName>ConceptMap</baseResourceName>
<baseResourceName>PharmacyClaim</baseResourceName>
<baseResourceName>Reversal</baseResourceName>
<baseResourceName>Practitioner</baseResourceName>
<baseResourceName>CarePlan</baseResourceName>
<baseResourceName>ClinicalAssessment</baseResourceName>
<baseResourceName>Substance</baseResourceName>
<baseResourceName>DeviceUseRequest</baseResourceName>
<baseResourceName>Schedule</baseResourceName>
<baseResourceName>EligibilityRequest</baseResourceName>
<baseResourceName>QuestionnaireAnswers</baseResourceName>
<baseResourceName>PaymentReconciliation</baseResourceName>
<baseResourceName>ProfessionalClaim</baseResourceName>
<baseResourceName>ImagingObjectSelection</baseResourceName>
<baseResourceName>OperationDefinition</baseResourceName>
<baseResourceName>ClaimResponse</baseResourceName>
<baseResourceName>BodySite</baseResourceName>
<baseResourceName>CommunicationRequest</baseResourceName>
<baseResourceName>RiskAssessment</baseResourceName>
<baseResourceName>Observation</baseResourceName>
<baseResourceName>AllergyIntolerance</baseResourceName>
<baseResourceName>ExplanationOfBenefit</baseResourceName>
<baseResourceName>SupportingDocumentation</baseResourceName>
<baseResourceName>RelatedPerson</baseResourceName>
<baseResourceName>InstitutionalClaim</baseResourceName>
<baseResourceName>Alert</baseResourceName>
<baseResourceName>AuditEvent</baseResourceName>
<baseResourceName>EligibilityResponse</baseResourceName>
<baseResourceName>StatusRequest</baseResourceName>
<baseResourceName>Person</baseResourceName>
<baseResourceName>ProcedureRequest</baseResourceName>
<baseResourceName>VisionClaim</baseResourceName>
<baseResourceName>DeviceMetric</baseResourceName>
<baseResourceName>Organization</baseResourceName>
<baseResourceName>Readjudicate</baseResourceName>
<baseResourceName>ImmunizationRecommendation</baseResourceName>
<baseResourceName>MedicationDispense</baseResourceName>
<baseResourceName>MedicationPrescription</baseResourceName>
<baseResourceName>PaymentNotice</baseResourceName>
<baseResourceName>MedicationStatement</baseResourceName>
<baseResourceName>AppointmentResponse</baseResourceName>
<baseResourceName>Questionnaire</baseResourceName>
<baseResourceName>OperationOutcome</baseResourceName>
<baseResourceName>Media</baseResourceName>
<baseResourceName>Binary</baseResourceName>
<baseResourceName>Other</baseResourceName>
<baseResourceName>VisionPrescription</baseResourceName>
<baseResourceName>DocumentReference</baseResourceName>
<baseResourceName>Immunization</baseResourceName>
<baseResourceName>Bundle</baseResourceName>
<baseResourceName>Subscription</baseResourceName>
<baseResourceName>ImagingStudy</baseResourceName>
<baseResourceName>Provenance</baseResourceName>
<baseResourceName>Device</baseResourceName>
<baseResourceName>StructureDefinition</baseResourceName>
<baseResourceName>Order</baseResourceName>
<baseResourceName>Procedure</baseResourceName>
<baseResourceName>DiagnosticReport</baseResourceName>
<baseResourceName>Medication</baseResourceName>
<baseResourceName>MessageHeader</baseResourceName>
<baseResourceName>DataElement</baseResourceName>
<baseResourceName>DocumentManifest</baseResourceName>
<baseResourceName>MedicationAdministration</baseResourceName>
<baseResourceName>Encounter</baseResourceName>
<baseResourceName>PendedRequest</baseResourceName>
<baseResourceName>List</baseResourceName>
<baseResourceName>DeviceUseStatement</baseResourceName>
<baseResourceName>Goal</baseResourceName>
<baseResourceName>NutritionOrder</baseResourceName>
<baseResourceName>SearchParameter</baseResourceName>
<baseResourceName>ReferralRequest</baseResourceName>
<baseResourceName>FamilyHistory</baseResourceName>
<baseResourceName>EnrollmentRequest</baseResourceName>
<baseResourceName>Location</baseResourceName>
<baseResourceName>Contract</baseResourceName>
<baseResourceName>Basic</baseResourceName>
<baseResourceName>Specimen</baseResourceName>
<baseResourceName>EnrollmentResponse</baseResourceName>
<baseResourceName>Patient</baseResourceName>
<baseResourceName>CarePlan2</baseResourceName>
<baseResourceName>DiagnosticOrder</baseResourceName>
<baseResourceName>Parameters</baseResourceName>
</baseResourceNames>
<buildDatatypes>true</buildDatatypes>
</configuration>

View File

@ -35,9 +35,8 @@ import ca.uhn.fhir.model.base.composite.BaseContainedDt;
import ca.uhn.fhir.model.base.composite.BaseResourceReferenceDt;
import ca.uhn.fhir.model.dstu2.composite.CodingDt;
import ca.uhn.fhir.model.dstu2.composite.ContainedDt;
import ca.uhn.fhir.model.dstu2.composite.CountDt;
import ca.uhn.fhir.model.dstu2.composite.ResourceReferenceDt;
import ca.uhn.fhir.model.dstu2.resource.Profile;
import ca.uhn.fhir.model.dstu2.resource.StructureDefinition;
import ca.uhn.fhir.model.primitive.IdDt;
import ca.uhn.fhir.rest.server.IResourceProvider;
import ca.uhn.fhir.rest.server.IVersionSpecificBundleFactory;
@ -57,7 +56,7 @@ public class FhirDstu2 implements IFhirVersion {
@Override
public IResource generateProfile(RuntimeResourceDefinition theRuntimeResourceDefinition, String theServerBase) {
Profile retVal = new Profile();
StructureDefinition retVal = new StructureDefinition();
RuntimeResourceDefinition def = theRuntimeResourceDefinition;

View File

@ -1,28 +0,0 @@
package ca.uhn.fhir.model.dstu2.api;
/*
* #%L
* HAPI FHIR Structures - DSTU2 (FHIR v0.4.0)
* %%
* Copyright (C) 2014 - 2015 University Health Network
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import ca.uhn.fhir.model.dstu2.resource.BaseResource;
public abstract class BaseResourceDev extends BaseResource {
}

View File

@ -1,111 +0,0 @@
package ca.uhn.fhir.model.dstu2.resource;
/*
* #%L
* HAPI FHIR Structures - DSTU2 (FHIR v0.4.0)
* %%
* Copyright (C) 2014 - 2015 University Health Network
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import java.util.Collections;
import java.util.List;
import ca.uhn.fhir.context.FhirVersionEnum;
import ca.uhn.fhir.model.api.IElement;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.ResourceDef;
import ca.uhn.fhir.model.base.resource.BaseBinary;
import ca.uhn.fhir.model.primitive.Base64BinaryDt;
import ca.uhn.fhir.model.primitive.StringDt;
import ca.uhn.fhir.util.ElementUtil;
@ResourceDef(name = "Binary", profile = "http://hl7.org/fhir/profiles/Binary", id = "binary")
public class Binary extends BaseResource implements BaseBinary {
@Child(name = "content", order = 1)
private Base64BinaryDt myContent = new Base64BinaryDt();
@Child(name = "contentType", order = 0)
private StringDt myContentType;
/**
* Constructor
*/
public Binary() {
// nothing
}
/**
* Constructor
*
* @param theContentType
* The content type
* @param theContent
* The binary contents
*/
public Binary(String theContentType, byte[] theContent) {
setContentType(theContentType);
setContent(theContent);
}
@Override
public <T extends IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType) {
return Collections.emptyList();
}
public byte[] getContent() {
return myContent.getValue();
}
public String getContentAsBase64() {
return myContent.getValueAsString();
}
public String getContentType() {
if (myContentType == null) {
return null;
}
return myContentType.getValue();
}
@Override
public boolean isEmpty() {
return (myContent.isEmpty()) && ElementUtil.isEmpty(myContentType);
}
public void setContent(byte[] theContent) {
myContent.setValue(theContent);
}
public void setContentAsBase64(String theContent) {
myContent.setValueAsString(theContent);
}
public void setContentType(String theContentType) {
myContentType = new StringDt(theContentType);
}
@Override
public String getResourceName() {
return Binary.class.getName();
}
@Override
public FhirVersionEnum getStructureFhirVersionEnum() {
return FhirVersionEnum.DSTU1;
}
}

View File

@ -30,7 +30,7 @@ import javax.servlet.http.HttpServletRequest;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.RuntimeResourceDefinition;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.dstu2.resource.Profile;
import ca.uhn.fhir.model.dstu2.resource.StructureDefinition;
import ca.uhn.fhir.model.primitive.IdDt;
import ca.uhn.fhir.rest.annotation.IdParam;
import ca.uhn.fhir.rest.annotation.Read;
@ -50,21 +50,21 @@ public class ServerProfileProvider implements IResourceProvider {
@Override
public Class<? extends IResource> getResourceType() {
return Profile.class;
return StructureDefinition.class;
}
@Read()
public Profile getProfileById(HttpServletRequest theRequest, @IdParam IdDt theId) {
public StructureDefinition getProfileById(HttpServletRequest theRequest, @IdParam IdDt theId) {
RuntimeResourceDefinition retVal = myContext.getResourceDefinitionById(theId.getValue());
if (retVal==null) {
return null;
}
String serverBase = getServerBase(theRequest);
return (Profile) retVal.toProfile(serverBase);
return (StructureDefinition) retVal.toProfile(serverBase);
}
@Search()
public List<Profile> getAllProfiles(HttpServletRequest theRequest) {
public List<StructureDefinition> getAllProfiles(HttpServletRequest theRequest) {
final String serverBase = getServerBase(theRequest);
List<RuntimeResourceDefinition> defs = new ArrayList<RuntimeResourceDefinition>(myContext.getResourceDefinitions());
Collections.sort(defs, new Comparator<RuntimeResourceDefinition>() {
@ -76,9 +76,9 @@ public class ServerProfileProvider implements IResourceProvider {
}
return cmp;
}});
ArrayList<Profile> retVal = new ArrayList<Profile>();
ArrayList<StructureDefinition> retVal = new ArrayList<StructureDefinition>();
for (RuntimeResourceDefinition next : defs) {
retVal.add((Profile) next.toProfile(serverBase));
retVal.add((StructureDefinition) next.toProfile(serverBase));
}
return retVal;
}

View File

@ -1,5 +1,7 @@
package ca.uhn.fhir.model.dstu2;
import static org.junit.Assert.*;
import java.util.Properties;
import org.junit.Test;
@ -7,11 +9,18 @@ import org.junit.Test;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.RuntimeResourceDefinition;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.base.resource.BaseBinary;
import ca.uhn.fhir.model.dstu2.resource.Binary;
public class ModelInstantiationTest {
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(ModelInstantiationTest.class);
@Test
public void testBinaryIsBaseBinary() {
assertTrue(BaseBinary.class.isAssignableFrom(Binary.class));
}
@SuppressWarnings("unchecked")
@Test
public void testInstantiateAllTypes() throws Exception {

View File

@ -32,9 +32,9 @@ import ca.uhn.fhir.model.primitive.DateTimeDt;
import ca.uhn.fhir.model.primitive.StringDt;
import ca.uhn.fhir.parser.DataFormatException;
public class DefaultThymeleafNarrativeGeneratorTest {
public class DefaultThymeleafNarrativeGeneratorTestDstu2 {
private FhirContext myCtx;
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(DefaultThymeleafNarrativeGeneratorTest.class);
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(DefaultThymeleafNarrativeGeneratorTestDstu2.class);
private DefaultThymeleafNarrativeGenerator myGen;
@Before
@ -154,7 +154,7 @@ public class DefaultThymeleafNarrativeGeneratorTest {
value.getName().setText("Some & Diagnostic Report");
{
Observation obs = new Observation();
obs.getName().addCoding().setCode("1938HB").setDisplay("Hemoglobin");
obs.getCode().addCoding().setCode("1938HB").setDisplay("Hemoglobin");
obs.setValue(new QuantityDt(null, 2.223, "mg/L"));
obs.addReferenceRange().setLow(new QuantityDt(2.20)).setHigh(new QuantityDt(2.99));
obs.setStatus(ObservationStatusEnum.FINAL);
@ -170,7 +170,7 @@ public class DefaultThymeleafNarrativeGeneratorTest {
}
{
Observation obs = new Observation();
obs.setName(new CodeableConceptDt("AA", "BB"));
obs.setCode(new CodeableConceptDt("AA", "BB"));
value.addResult().setResource(obs);
}

View File

@ -43,13 +43,13 @@ import ca.uhn.fhir.util.PortUtil;
/**
* Created by dsotnikov on 2/25/2014.
*/
public class BinaryTest {
public class BinaryTestDstu2 {
private static CloseableHttpClient ourClient;
private static FhirContext ourCtx = new FhirContext();
private static Binary ourLast;
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(BinaryTest.class);
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(BinaryTestDstu2.class);
private static int ourPort;

View File

@ -341,15 +341,15 @@ public class IncludeTest {
pr3.getName().addFamily("Pract3");
Observation o1 = new Observation();
o1.getName().setText("Obs1");
o1.getCode().setText("Obs1");
o1.addPerformer().setResource(pr1);
Observation o2 = new Observation();
o2.getName().setText("Obs2");
o2.getCode().setText("Obs2");
o2.addPerformer().setResource(pr2);
Observation o3 = new Observation();
o3.getName().setText("Obs3");
o3.getCode().setText("Obs3");
o3.addPerformer().setResource(pr3);
DiagnosticReport rep = new DiagnosticReport();

View File

@ -31,7 +31,7 @@ public class ResourceGeneratorUsingSpreadsheet extends BaseStructureSpreadsheetP
myInputStreams = new ArrayList<InputStream>();
for (String next : theBaseResourceNames) {
String resName = "/res/" + myVersion + "/" + next + "-spreadsheet.xml";
String resName = "/res/" + myVersion + "/" + next.toLowerCase() + "-spreadsheet.xml";
resName = resName.replace("/dev/", "/dstu2/");
InputStream nextRes = getClass().getResourceAsStream(resName);

View File

@ -7,9 +7,9 @@
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd</LastAuthor>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-11-17T05:30:16Z</LastSaved>
<LastSaved>2015-02-22T21:38:26Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -1291,7 +1291,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"><Data ss:Type="String">ElementDefinition.formal</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">ElementDefinition.definition</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1308,9 +1308,9 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Full formal definition in human language</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String"> The definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">A full formal definition of the meaning of the data element. In human readable language. For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">To allow a user to clarify the usage of an element in a particular context</Data><NamedCell
<Cell ss:StyleID="s89"><Data ss:Type="String">To allow a user to state the usage of an element in a particular context</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">It is easy for a different definition to change the meaning of an element and this can have nasty downstream consequences. Please be careful when providing definitions</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1545,7 +1545,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">Name of Data type or Resource that is a(or the) type used for this element</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">If the element is a reference to another resource, this element contains &quot;Reference&quot;, and the profile element refers to the profile of the allowed target of the resource, which may be a reference to the general definition of a resource (e.g. http://hl7.org/fhir/Profile/Patient). There would be one pair of type/code for each allowed target resource type</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">If the element is a reference to another resource, this element contains &quot;Reference&quot;, and the profile element refers to the profile of the allowed target of the resource, which may be a reference to the general definition of a resource (e.g. http://hl7.org/fhir/StructureDefinition/Patient). There would be one pair of type/code for each allowed target resource type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3874,7 +3874,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>9</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3887,11 +3887,12 @@
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>7</ActiveRow>
<ActiveCol>2</ActiveCol>
<ActiveRow>16</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4099,10 +4100,10 @@
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">ElementDefinition.slicing</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">If there are no discriminators, there must be a description </Data><NamedCell
<Cell ss:StyleID="s83"><Data ss:Type="String">If there are no discriminators, there must be a definition </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s105"><Data ss:Type="String">(f:discriminator) or (f:description)</Data><NamedCell
<Cell ss:StyleID="s105"><Data ss:Type="String">(f:discriminator) or (f:definition)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
@ -4113,7 +4114,7 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">ElementDefinition</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Min &lt;= Max</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s107"><Data ss:Type="String">(f:max/@value = '*') or (f:max/@value &gt;= f:min/@value)</Data></Cell>
<Cell ss:StyleID="s107"><Data ss:Type="String">(not(f:max/@value) and not(f:min/@value)) or (f:max/@value = '*') or (f:max/@value &gt;= f:min/@value)</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s106"><Data ss:Type="Number">3</Data><NamedCell
@ -4586,8 +4587,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>11</ActiveRow>
<ActiveCol>6</ActiveCol>
<ActiveRow>5</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -797,7 +797,7 @@
<Cell ss:StyleID="s74"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s74"><Data ss:Type="String">Profiles this resource claims to conform to</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">A list of profiles that this resource claims to conform to. The URL is a reference to Profile.url</Data><NamedCell
<Cell ss:StyleID="s75"><Data ss:Type="String">A list of profiles [[[StructureDefinition]]]s that this resource claims to conform to. The URL is a reference to [[[StructureDefinition.url]]]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">It is up to the server and/or other infrastructure of policy to determine whether/how these claims are verified and/or updated over tiem</Data><NamedCell
@ -3132,8 +3132,7 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>0</ActiveCol>
<ActiveRow>4</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

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,132 @@
<ValueSet xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../schema/valueset.xsd">
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
This value set is from <a href="http://www.astm.org/Standards/E1762.htm">ASTM E1762-05</a>
</div>
</text>
<name value="Contract Signer Type Codes"/>
<publisher value="ASTM"/>
<contact>
<telecom>
<system value="url"/>
<value value="http://www.astm.org/"/>
</telecom>
</contact>
<copyright value="These codes are excerpted from ASTM Standard, E1762-95(2013) - Standard Guide for Electronic Authenticaiton of Health Care Information, Copyright by ASTM"/>
<status value="draft"/>
<description value="The Digital Signature Purposes."/>
<status value="draft"/>
<define>
<system value="http://hl7.org/fhir/contractsignertypecodes"/>
<caseSensitive value="true"/>
<concept>
<code value="1.2.840.10065.1.12.1.1"/>
<display value="AuthorID"/>
<definition value="Author"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.2"/>
<display value="Co-AuthorID"/>
<definition value="Co-Author"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.3"/>
<display value="Co-Participated"/>
<definition value="Co-Participated"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.4"/>
<display value="Transcriptionist"/>
<definition value="Transcriptionist"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.5"/>
<display value="Verification"/>
<definition value="Verification"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.6"/>
<display value="Validation"/>
<definition value="Validation"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.7"/>
<display value="Consent"/>
<definition value="Consent"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.8"/>
<display value="Witness"/>
<definition value="Witness"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.9"/>
<display value="Event-Witness"/>
<definition value="Event Witness"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.10"/>
<display value="Identity-Witness"/>
<definition value="Identity Witness"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.11"/>
<display value="Consent-Witness"/>
<definition value="Consent Witness"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.12"/>
<display value="Interpreter"/>
<definition value="Interpreter"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.13"/>
<display value="Review"/>
<definition value="Review"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.14"/>
<display value="Source"/>
<definition value="Source"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.15"/>
<display value="Addendum"/>
<definition value="Addendum"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.16"/>
<display value="Administrative"/>
<definition value="Administrative"/>
</concept>
<concept>
<code value="1.2.840.10065.1.12.1.17"/>
<display value="Timestamp"/>
<definition value="Timestamp"/>
</concept>
</define>
<!-- a v3 value set too
<compose>
<import value="[url for v3 valueset]"/>
</compose>
-->
</ValueSet>

View File

@ -10,9 +10,16 @@
<LastAuthor>Lloyd</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-05T07:41:57Z</LastSaved>
<Version>12.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<SupBook>
<Path>Invariants</Path>
<SheetName>Invariants</SheetName>
</SupBook>
<WindowHeight>2580</WindowHeight>
<WindowWidth>9870</WindowWidth>
<WindowTopX>5520</WindowTopX>
@ -955,7 +962,7 @@
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:StyleID="s77"><Data ss:Type="String">SecurityEvent</Data><NamedCell
<Cell ss:StyleID="s77"><Data ss:Type="String">AuditEvent</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -988,7 +995,7 @@
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1022,7 +1029,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event.type</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1032,7 +1039,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventType</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1058,7 +1065,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event.subtype</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event.subtype</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
@ -1068,7 +1075,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventSubType</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventSubType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1093,7 +1100,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event.action</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event.action</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1103,7 +1110,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventAction</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventAction</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1128,7 +1135,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event.dateTime</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event.dateTime</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1163,7 +1170,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event.outcome</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event.outcome</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1173,7 +1180,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventOutcome</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventOutcome</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1198,7 +1205,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.event.outcomeDesc</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.event.outcomeDesc</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1231,7 +1238,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="180">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..*</Data><NamedCell
@ -1265,7 +1272,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.role</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
@ -1300,7 +1307,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.reference</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.reference</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1334,7 +1341,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.userId</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.userId</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1370,7 +1377,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="270">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.altId</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.altId</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1404,7 +1411,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.name</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1438,7 +1445,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.requestor</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.requestor</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1473,7 +1480,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="90">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.media</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.media</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1508,7 +1515,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.network</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.network</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1540,7 +1547,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="210">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.network.identifier</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.network.identifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1575,7 +1582,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="180">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.participant.network.type</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.participant.network.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1585,7 +1592,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventParticipantNetworkType</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventParticipantNetworkType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1610,7 +1617,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="285">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.source</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.source</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1644,7 +1651,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">!SecurityEvent.source.code</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">!AuditEvent.source.code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1654,7 +1661,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventSourceType</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventSourceType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1676,7 +1683,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.source.site</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.source.site</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1711,7 +1718,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.source.identifier</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.source.identifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1745,7 +1752,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.source.type</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.source.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
@ -1755,7 +1762,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventSourceType</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventSourceType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1780,7 +1787,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
@ -1815,7 +1822,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.identifier</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.identifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1850,7 +1857,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.reference</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.reference</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1884,7 +1891,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">!SecurityEvent.object.idType</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">!AuditEvent.object.idType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1918,7 +1925,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.type</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1928,7 +1935,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventObjectType</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventObjectType</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1954,7 +1961,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="120">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.role</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1964,7 +1971,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventObjectRole</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventObjectRole</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1990,7 +1997,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.lifecycle</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.lifecycle</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -2000,7 +2007,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventObjectLifecycle</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventObjectLifecycle</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2026,7 +2033,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="135">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.sensitivity</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.sensitivity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -2036,7 +2043,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">SecurityEventObjectSensitivity</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">AuditEventObjectSensitivity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2062,7 +2069,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.name</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -2097,7 +2104,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.description</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.description</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -2130,7 +2137,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="270">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.query</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.query</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -2165,7 +2172,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.detail</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.detail</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
@ -2197,7 +2204,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.detail.type</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.detail.type</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -2229,7 +2236,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s86"><Data ss:Type="String">SecurityEvent.object.detail.value</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">AuditEvent.object.detail.value</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -3930,7 +3937,7 @@
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4,R4C4:R100C4</Range>
<Type>List</Type>
<Value>'Invariants'!R2C1:R50C1</Value>
<Value>Invariants!#REF!</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
@ -4093,7 +4100,7 @@
<Cell ss:StyleID="s83"><Data ss:Type="String">Object Name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">SecurityEvent.object</Data><NamedCell
<Cell ss:StyleID="s83"><Data ss:Type="String">AuditEvent.object</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Either a name or a query (or both)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -4106,7 +4113,7 @@
ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Object Identification</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s90"><Data ss:Type="String">SecurityEvent.object</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">AuditEvent.object</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Either an identifier or a reference, but not both</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s107"><Data ss:Type="String">exists(f:identifier) != exists(f:reference)</Data></Cell>
@ -4116,7 +4123,7 @@
ss:Name="Invariantids"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Participant Identification</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s90"><Data ss:Type="String">SecurityEvent.participant</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">AuditEvent.participant</Data></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Either a userId or a reference, but not both</Data></Cell>
<Cell ss:StyleID="s90"/>
<Cell ss:StyleID="s107"><Data ss:Type="String">exists(f:userId) != exists(f:reference)</Data></Cell>
@ -4653,91 +4660,91 @@
<Cell ss:StyleID="s113"><Data ss:Type="String">type</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s114"><Data ss:Type="String">SecurityEvent.event.type</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">AuditEvent.event.type</Data></Cell>
<Cell ss:StyleID="s115"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">action</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.event.action</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.event.action</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">date</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.event.dateTime</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.event.dateTime</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">subtype</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.event.subtype</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.event.subtype</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">user</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.participant.userId</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.participant.userId</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">name</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.participant.name</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.participant.name</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s116"><Data ss:Type="String">address</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.participant.network.identifier</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.participant.network.identifier</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">source</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.source.identifier</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.source.identifier</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">site</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.source.site</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.source.site</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">object-type</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.object.type</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.object.type</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">identity</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.object.identifier</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.object.identifier</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.object.reference</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.object.reference</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">desc</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.object.name</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.object.name</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -4751,7 +4758,7 @@
<Cell ss:StyleID="s116"><Data ss:Type="String">altid</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">SecurityEvent.participant.altId</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">AuditEvent.participant.altId</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -6016,7 +6023,7 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
@ -6039,15 +6046,17 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s113"><Data ss:Type="String">EHRS FM Record Lifecycle Event - Security Event</Data><NamedCell
<Cell ss:StyleID="s113"><Data ss:Type="String">EHRS FM Record Lifecycle Event - Audit Event</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">securityevent-profile-ehrs-rle-spreadsheet.xml</Data><NamedCell
<Cell ss:StyleID="s114"><Data ss:Type="String">auditevent-profile-ehrs-rle-spreadsheet.xml</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ehrfm</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6307,6 +6316,7 @@
<Pane>
<Number>0</Number>
<ActiveRow>2</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -6397,11 +6407,11 @@
<Cell ss:StyleID="s138"><Data ss:Type="String">General</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">General SecurityEvent Example</Data><NamedCell
<Cell ss:StyleID="s80"><Data ss:Type="String">General AuditEvent Example</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">example</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">securityevent-example.xml</Data><NamedCell
<Cell ss:StyleID="s78"><Data ss:Type="String">auditevent-example.xml</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s127"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s139"><Data ss:Type="String">y</Data><NamedCell
@ -6412,7 +6422,7 @@
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Login example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">example-login</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">security-event-example-login.xml</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">audit-event-example-login.xml</Data></Cell>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s141"><Data ss:Type="String">y</Data></Cell>
</Row>
@ -6421,7 +6431,7 @@
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Logout example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">example-logout</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">security-event-example-logout.xml</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">audit-event-example-logout.xml</Data></Cell>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s141"><Data ss:Type="String">y</Data></Cell>
</Row>
@ -6430,7 +6440,7 @@
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">RESTful Operation</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">example-rest</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">security-event-example-vread.xml</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">audit-event-example-vread.xml</Data></Cell>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s141"><Data ss:Type="String">y</Data></Cell>
</Row>
@ -6913,11 +6923,11 @@
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s145"><Data ss:Type="String">!SecurityEventSeverity</Data></Cell>
<Cell ss:StyleID="s145"><Data ss:Type="String">!AuditEventSeverity</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">The severity of the audit entry</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"><Data ss:Type="String">#security-event-severity</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">#audit-event-severity</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">This is in the SysLog header. Not missed?</Data></Cell>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
@ -6928,11 +6938,11 @@
<Cell ss:StyleID="s115"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventAction</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventAction</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Indicator for type of action performed during the event that generated the audit.</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">#security-event-action</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">#audit-event-action</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
@ -6943,11 +6953,11 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventOutcome</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventOutcome</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Indicates whether the event succeeded or failed</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">#security-event-outcome</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">#audit-event-outcome</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
@ -6958,7 +6968,7 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventParticipantNetworkType</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventParticipantNetworkType</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The type of network access point that originated the audit event</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s117"/>
@ -6973,7 +6983,7 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventObjectType</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventObjectType</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Code for the participant object type being audited</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s117"/>
@ -6988,7 +6998,7 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventObjectRole</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventObjectRole</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Code representing the functional application role of Participant Object being audited</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s117"/>
@ -7003,7 +7013,7 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventObjectLifecycle</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventObjectLifecycle</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Identifier for the data life-cycle stage for the participant object</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">code list</Data></Cell>
<Cell ss:StyleID="s117"/>
@ -7018,11 +7028,11 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventType</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventType</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Type of event</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-security-event-type</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-audit-event-type</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
@ -7033,11 +7043,11 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventSubType</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventSubType</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Sub-type of event</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-security-event-sub-type</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-audit-event-sub-type</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
@ -7078,11 +7088,11 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventSourceType</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventSourceType</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Code specifying the type of source where event originated</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-security-source-type</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-audit-source-type</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
@ -7123,11 +7133,11 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s146"><Data ss:Type="String">SecurityEventObjectSensitivity</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The sensitivity of an object in a security event resource. May also encompass confidentiality and rudimentary access control</Data></Cell>
<Cell ss:StyleID="s146"><Data ss:Type="String">AuditEventObjectSensitivity</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The sensitivity of an object in a audit event resource. May also encompass confidentiality and rudimentary access control</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">y</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-security-event-sensitivity</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-audit-event-sensitivity</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
@ -7451,10 +7461,10 @@
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="security-event-severity">
<Worksheet ss:Name="audit-event-severity">
<Names>
<NamedRange ss:Name="_FilterDatabase"
ss:RefersTo="='security-event-severity'!R1C1:R1C9" ss:Hidden="1"/>
ss:RefersTo="='audit-event-severity'!R1C1:R1C9" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
@ -8121,10 +8131,10 @@
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="security-event-action">
<Worksheet ss:Name="audit-event-action">
<Names>
<NamedRange ss:Name="_FilterDatabase"
ss:RefersTo="='security-event-action'!R1C1:R1C9" ss:Hidden="1"/>
ss:RefersTo="='audit-event-action'!R1C1:R1C9" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
@ -8791,10 +8801,10 @@
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="security-event-outcome">
<Worksheet ss:Name="audit-event-outcome">
<Names>
<NamedRange ss:Name="_FilterDatabase"
ss:RefersTo="='security-event-outcome'!R1C1:R1C9" ss:Hidden="1"/>
ss:RefersTo="='audit-event-outcome'!R1C1:R1C9" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -853,9 +853,9 @@
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Name="_FilterDatabase"
ss:RefersTo="='Data Elements'!R1C1:R106C23" ss:Hidden="1"/>
ss:RefersTo="='Data Elements'!R1C1:R107C23" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="106" x:FullColumns="1"
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="107" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
@ -1538,7 +1538,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">instant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1686,7 +1686,7 @@
<Cell ss:StyleID="s86"><Data ss:Type="String">Bundle.entry.transactionResponse.etag</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data><NamedCell
@ -1703,7 +1703,39 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">The etag for the resource, it the operation for the entry produced a versioned resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This has to match the version id in the header if a resource is included</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">Bundle.entry.transactionResponse.lastModified</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">instant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Server's date time modified</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">The date/time that the resource was modified on the server</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This has to match the same time in the meta header if a resource is included</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3761,9 +3793,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>7</TopRowBottomPane>
<TopRowBottomPane>13</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3771,6 +3803,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -3778,8 +3811,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>21</ActiveRow>
<ActiveCol>10</ActiveCol>
<ActiveRow>18</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -3798,7 +3831,7 @@
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C21:R106C21</Range>
<Range>R2C21:R107C21</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;left,right,up,down,[xpixels],[ypixels]&quot;</Value>
@ -3806,50 +3839,50 @@
<ErrorStyle>Info</ErrorStyle>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C18:R106C20</Range>
<Range>R2C18:R107C20</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;N/A&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C8:R106C8</Range>
<Range>R2C8:R107C8</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;Bindings!A2..A30&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C6:R106C7</Range>
<Range>R3C6:R107C7</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;Y,N&quot;</Value>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C5:R106C5</Range>
<Range>R3C5:R107C5</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C3:R106C3</Range>
<Range>R2C3:R107C3</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;0..1,1..1,0..*,1..*&quot;</Value>
</DataValidation>
<AutoFilter x:Range="R1C1:R106C23"
<AutoFilter x:Range="R1C1:R107C23"
xmlns="urn:schemas-microsoft-com:office:excel">
</AutoFilter>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R25C14,R22C13:R106C13,R2C13:R19C13</Range>
<Range>R25C14:R26C14,R2C13:R107C13</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C1:R106C23,R2C1:R19C23</Range>
<Range>R2C1:R107C23</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
@ -3860,7 +3893,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R15C1,R2C1:R10C1,R27C1:R106C1</Range>
<Range>R15C1,R2C1:R10C1,R28C1:R107C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-1]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -3874,35 +3907,35 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C14:R106C14,R22C3:R106C3,R2C14:R19C14,R3C3:R19C3</Range>
<Range>R3C3:R107C3,R2C14:R107C14</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C12:R106C12,R22C9:R106C9,R2C9:R19C9,R2C12:R19C12</Range>
<Range>R2C9:R107C9,R2C12:R107C12</Range>
<Condition>
<Value1>AND(SEARCH(&quot;|&quot;,RC5)&lt;&gt;0,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C12:R106C12,R22C10:R106C10,R2C10:R19C10,R2C12:R19C12</Range>
<Range>R2C10:R107C10,R2C12:R107C12</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1)))))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C10:R106C11,R2C10:R19C11</Range>
<Range>R2C10:R107C11</Range>
<Condition>
<Value1>AND(RC10&lt;&gt;&quot;&quot;,RC11&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C13:R106C14,R2C13:R19C14</Range>
<Range>R2C13:R107C14</Range>
<Condition>
<Value1>AND(RC13&lt;&gt;&quot;&quot;,RC13=RC14)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -3916,21 +3949,21 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C18:R106C19</Range>
<Range>R3C18:R107C19</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,ISERR(SEARCH(&quot;N/A&quot;,R2C)),RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:orange'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R12C21,R2C21:R9C21,R26C21:R106C21</Range>
<Range>R12C21,R2C21:R9C21,R27C21:R107C21</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[1]C1,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(R[1]C1,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C1:R106C23,R2C1:R19C23</Range>
<Range>R2C1:R107C23</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
@ -3965,7 +3998,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R12C1,R26C1,R14C1</Range>
<Range>R12C1,R27C1,R14C1,R17C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,#REF!=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -3979,7 +4012,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C21:R23C21</Range>
<Range>R22C21:R23C21,R11C21</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(#REF!,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(#REF!,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -3992,13 +4025,6 @@
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R17C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,#REF!=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R10C21</Range>
<Condition>
@ -4007,86 +4033,19 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R11C21</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(#REF!,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(#REF!,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R23C1:R25C1</Range>
<Range>R23C1:R26C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-9]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R22C1</Range>
<Range>R22C1,R18C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-5]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C13</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C1:R21C2,R21C4:R21C23</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
</Condition>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,RC1=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C14</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C9,R21C12</Range>
<Condition>
<Value1>AND(SEARCH(&quot;|&quot;,RC5)&lt;&gt;0,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C10,R21C12</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1)))))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C10:R21C11</Range>
<Condition>
<Value1>AND(RC10&lt;&gt;&quot;&quot;,RC11&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C13:R21C14</Range>
<Condition>
<Value1>AND(RC13&lt;&gt;&quot;&quot;,RC13=RC14)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C1:R21C2,R21C4:R21C23</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C1</Range>
<Condition>
@ -4109,65 +4068,19 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C1:R20C2,R20C4:R20C12,R20C15:R20C23</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
</Condition>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,RC1=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C9,R20C12</Range>
<Condition>
<Value1>AND(SEARCH(&quot;|&quot;,RC5)&lt;&gt;0,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C10,R20C12</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1)))))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C10:R20C11</Range>
<Condition>
<Value1>AND(RC10&lt;&gt;&quot;&quot;,RC11&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C1:R20C2,R20C4:R20C12,R20C15:R20C23</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C1</Range>
<Range>R19C1:R20C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-7]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C21,R25C21</Range>
<Range>R21C21,R25C21:R26C21</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[-6]C1,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(R[-6]C1,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R19C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-7]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R19C21:R20C21</Range>
<Condition>
@ -4175,13 +4088,6 @@
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R18C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-5]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R18C21</Range>
<Condition>
@ -4189,95 +4095,6 @@
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C3</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
</Condition>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,RC1=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C3</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C3</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C3</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
</Condition>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,RC1=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C3</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R21C3</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C13</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C13:R20C14</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
</Condition>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,RC1=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C14</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C13:R20C14</Range>
<Condition>
<Value1>AND(RC13&lt;&gt;&quot;&quot;,RC13=RC14)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R20C13:R20C14</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Names>
@ -4810,7 +4627,7 @@
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4:R48C4</Range>
<Type>List</Type>
<Value>'Data Elements'!R2C1:R106C1</Value>
<Value>'Data Elements'!R2C1:R107C1</Value>
</DataValidation>
<AutoFilter x:Range="R1C1:R2C7" xmlns="urn:schemas-microsoft-com:office:excel">
</AutoFilter>

View File

@ -16,8 +16,8 @@
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9084</WindowHeight>
<WindowWidth>20844</WindowWidth>
<WindowHeight>10848</WindowHeight>
<WindowWidth>23040</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
@ -1373,7 +1373,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">in progress | achieved | sustaining | cancelled</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">in-progress | achieved | sustaining | cancelled</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Indicates whether the goal has been reached and is still considered relevant</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1381,7 +1381,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.statusCode&#10;in progress = active (classCode = OBJ)&#10;achieved = complete&#10;sustaining = active (classCode=OBJC)&#10;cancelled = aborted</Data><NamedCell
<Cell ss:StyleID="s90"><Data ss:Type="String">.statusCode&#10;in-progress = active (classCode = OBJ)&#10;achieved = complete&#10;sustaining = active (classCode=OBJC)&#10;cancelled = aborted</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">GOL-18-goal life cycle status</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1538,7 +1538,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">not started | scheduled | in progress | on hold | completed | cancelled</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">not-started | scheduled | in-progress | on-hold | completed | cancelled</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Identifies what progress is being made for the specific activity.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1547,7 +1547,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">Some aspects of Status can be inferred based on the resources linked in actionTaken. Note that &quot;status&quot; is only as current as the plan was most recently updated.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.statusCode&#10;not started = new&#10;scheduled = not started (and fulfillment relationship to appointent)&#10;in progress = active&#10;on hold = suspended&#10;completed = completed&#10;cancelled = aborted</Data><NamedCell
<Cell ss:StyleID="s90"><Data ss:Type="String">.statusCode&#10;not-started = new&#10;scheduled = not-started (and fulfillment relationship to appointent)&#10;in-progress = active&#10;on-hold = suspended&#10;completed = completed&#10;cancelled = aborted</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">ORC-5-order status?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -3786,7 +3786,6 @@
<Value>&quot;*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C3:R100C3</Range>
<Type>List</Type>
@ -5874,7 +5873,7 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.39999999999998"/>
@ -5897,9 +5896,10 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s113"><Data ss:Type="String">cqf-careplan</Data><NamedCell
<Cell ss:StyleID="s113"><Data ss:Type="String">!cqf-careplan</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">cqf-careplan.xml</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -5907,6 +5907,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">cqf</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6164,7 +6165,7 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<ActiveRow>33</ActiveRow>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -8037,7 +8038,7 @@
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s138"><Data ss:Type="String">in progress</Data></Cell>
<Cell ss:StyleID="s138"><Data ss:Type="String">in-progress</Data></Cell>
<Cell ss:StyleID="s127"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s149"/>
@ -9381,7 +9382,7 @@
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s138"><Data ss:Type="String">not started</Data></Cell>
<Cell ss:StyleID="s138"><Data ss:Type="String">not-started</Data></Cell>
<Cell ss:StyleID="s127"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s149"/>
@ -9403,7 +9404,7 @@
<Cell ss:StyleID="s141"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s140"><Data ss:Type="String">in progress</Data></Cell>
<Cell ss:StyleID="s140"><Data ss:Type="String">in-progress</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s150"/>
@ -9414,7 +9415,7 @@
<Cell ss:StyleID="s141"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s140"><Data ss:Type="String">on hold</Data></Cell>
<Cell ss:StyleID="s140"><Data ss:Type="String">on-hold</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s150"/>

View File

@ -7,9 +7,9 @@
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd</LastAuthor>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-11-17T05:30:16Z</LastSaved>
<LastSaved>2015-02-06T03:45:10Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -24,7 +24,7 @@
<WindowWidth>21600</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>6</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1243,7 +1243,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">preliminary | final | appended | amended | entered in error</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">preliminary | final | appended | amended | entered-in-error</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The workflow/clinical status of this composition. The status is a marker for the clinical standing of the document</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -3917,7 +3917,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5060,48 +5059,53 @@
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Additional usage notes for an operation</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s113"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Row ss:AutoFitHeight="0" ss:Height="240">
<Cell ss:StyleID="s113"><Data ss:Type="String">document</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">Resource</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s127"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s127"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">operation</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s128"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">Generate a Document</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">A client can ask a server to generate a fully bundled document from a composition resource.&#10;The server takes the composition resource, locates all the referenced resources and other&#10;additional resources as configured or requested and either returns a full document bundle,&#10;or returns an error. Note that since this is a search operation, the document bundle is &#10;wrapped inside the search bundle.&#10;&#10;If some of the resources are located on other servers, it is at the discretion of the &#10;server whether to retrieve them or return an error. If the correct version of the document &#10;that would be generated already exists, then the server can return the existing one.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s129"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s116"><Data ss:Type="String">document.persist</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">in</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">0</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">boolean</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">Whether to store the document once it is generated</Data></Cell>
<Cell ss:StyleID="s131"><Data ss:Type="String">Whether to store the document at the document end-point (/Document) or not once it is generated. Value = true or false (default is for the server to decide)</Data></Cell>
<Cell ss:StyleID="s132"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s116"><Data ss:Type="String">document.cert</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">in</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">0</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">Certificate URL to use to sign the document with</Data></Cell>
<Cell ss:StyleID="s131"><Data ss:Type="String">Certificate URL to use to sign the document with. The certificate should be associated with one of the attestors</Data></Cell>
<Cell ss:StyleID="s132"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Cell ss:StyleID="s116"><Data ss:Type="String">document.pword</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">in</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">0</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">Password for private key if certificate requires one</Data></Cell>
<Cell ss:StyleID="s131"><Data ss:Type="String">Password for private key if certificate requires one and the server doesn't know it by some other means. Putting the password in the URL has obvious security implications to consider. An alternative is for the client to sign the document</Data></Cell>
<Cell ss:StyleID="s132"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -5608,6 +5612,12 @@
<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>
@ -5627,7 +5637,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<ActiveRow>3</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -6073,7 +6084,7 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
@ -6096,6 +6107,7 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s113"><Data ss:Type="String">Measure Report</Data><NamedCell
@ -6106,6 +6118,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">cqmf</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6344,6 +6357,7 @@
<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>
@ -6363,7 +6377,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<ActiveRow>2</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -8275,7 +8290,7 @@
<Cell ss:StyleID="s141"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s140"><Data ss:Type="String">entered in error</Data></Cell>
<Cell ss:StyleID="s140"><Data ss:Type="String">entered-in-error</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s150"/>

View File

@ -10,7 +10,7 @@
<LastAuthor>Moehrke, John (GE Healthcare)</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-04T20:01:17Z</LastSaved>
<Version>15.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -28,7 +28,7 @@
<WindowWidth>22350</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>9</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -4023,13 +4023,12 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>9</TopRowBottomPane>
<TopRowBottomPane>15</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>4</LeftColumnRightPane>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -4037,7 +4036,6 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -4045,8 +4043,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>12</ActiveRow>
<ActiveCol>7</ActiveCol>
<ActiveRow>22</ActiveRow>
<RangeSelection>R23C2:R23C14</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4076,7 +4074,7 @@
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4,R4C4:R30C4,R40C4,R42C4,R44C4,R46C4:R113C4</Range>
<Type>List</Type>
<Value>'Invariants'!#REF!</Value>
<Value>'\Gforge\HL7\FHIR\trunk\build\source\composition\[Invariants]Invariants'!#REF!</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
@ -6332,7 +6330,7 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
@ -6355,6 +6353,7 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s113"><Data ss:Type="String">consentdirective</Data><NamedCell
@ -6365,6 +6364,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">core</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6622,7 +6622,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>2</ActiveCol>
<ActiveRow>2</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -7334,19 +7335,19 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s147"><Data ss:Type="String">ContractSignerType</Data></Cell>
<Cell ss:StyleID="s147"><Data ss:Type="String">!ContractSignerType</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">List of parties who may be signing</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">value set</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">Y</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">valueset-contract-signer-type</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s118"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s115"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s147"/>
@ -7722,6 +7723,7 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -7741,7 +7743,7 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>5</ActiveRow>
<ActiveRow>6</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>

View File

@ -16,11 +16,11 @@
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>11660</WindowHeight>
<WindowWidth>21600</WindowWidth>
<WindowHeight>12435</WindowHeight>
<WindowWidth>28800</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>8</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -794,6 +794,13 @@
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s154" ss:Parent="s62">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Interior/>
</Style>
</Styles>
<Names>
<NamedRange ss:Name="Invariantids" ss:RefersTo="=Invariants!R2C1:R50C1"/>
@ -837,27 +844,27 @@
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="100" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.5"/>
<Column ss:StyleID="s68" ss:Width="29.5"/>
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="34.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="52" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="121"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.5"/>
<Column ss:StyleID="s68" ss:Width="51.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -1265,7 +1272,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3616,13 +3624,12 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>9</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>12</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3630,15 +3637,15 @@
</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>8</ActiveCol>
<ActiveRow>10</ActiveRow>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -3806,9 +3813,9 @@
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s100" ss:Width="55.5"/>
<Column ss:StyleID="s100" ss:Width="165"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="205"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="199"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s70">
<Cell ss:StyleID="s101"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -4709,7 +4716,7 @@
<Column ss:StyleID="s111" ss:Width="24"/>
<Column ss:StyleID="s111" ss:Width="25.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="223"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="222.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="253.5" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s123"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
@ -5434,13 +5441,13 @@
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="199"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:StyleID="s111" ss:Width="106.5"/>
<Column ss:StyleID="s111" ss:Width="113.5"/>
<Column ss:StyleID="s111" ss:Width="113.25"/>
<Column ss:StyleID="s111" ss:Width="120"/>
<Column ss:StyleID="s111" ss:Width="127.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -5765,7 +5772,7 @@
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s111" ss:Width="63"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
@ -6097,14 +6104,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.5"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="88.5"/>
<Column ss:StyleID="s136" ss:Width="28"/>
<Column ss:StyleID="s136" ss:Width="328"/>
<Column ss:StyleID="s136" ss:Width="27.75"/>
<Column ss:StyleID="s136" ss:Width="327.75"/>
<Column ss:StyleID="s136" ss:Width="57"/>
<Column ss:StyleID="s136" ss:Width="205.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="40"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6590,17 +6597,17 @@
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:Width="115"/>
<Column ss:StyleID="s111" ss:Width="114.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s111" ss:Width="51"/>
<Column ss:StyleID="s111" ss:Width="45"/>
<Column ss:StyleID="s111" ss:Width="146.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="277.5"/>
<Column ss:StyleID="s111" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="97.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="88.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="166" ss:Span="1"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Binding Name</Data><Comment
@ -6661,7 +6668,8 @@
<Cell ss:StyleID="s78"><Data ss:Type="String">Describes the type of the component</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"><Data ss:Type="String">https://rtmms.nist.gov/</Data></Cell>
<Cell ss:StyleID="s154" ss:HRef="https://rtmms.nist.gov/rtmms/index.htm#!hrosetta"><Data
ss:Type="String">https://rtmms.nist.gov/rtmms/index.htm#!hrosetta</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">RTM Management Service</Data></Cell>
<Cell ss:StyleID="s114"/>
<Cell ss:StyleID="s114"/>
@ -7105,6 +7113,7 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -7124,7 +7133,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<ActiveRow>13</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -7202,13 +7212,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -7872,13 +7882,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

View File

@ -16,10 +16,11 @@
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>11660</WindowHeight>
<WindowWidth>21600</WindowWidth>
<WindowHeight>12435</WindowHeight>
<WindowWidth>28800</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<TabRatio>674</TabRatio>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -344,18 +345,18 @@
</Style>
</Styles>
<Worksheet ss:Name="Data Elements">
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="17" x:FullColumns="1"
<Table ss:ExpandedColumnCount="16" ss:ExpandedRowCount="16" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s64" ss:DefaultColumnWidth="60"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s65" ss:AutoFitWidth="0" ss:Width="294"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="56.5" ss:Span="1"/>
<Column ss:Index="4" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="35.5"
<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:Width="91.5"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="214"
ss:Span="1"/>
<Column ss:Index="11" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="161.5"
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="179.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="11" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="161.25"
ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s64" ss:AutoFitWidth="0" ss:Width="135" ss:Span="1"/>
@ -383,7 +384,7 @@
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell ss:StyleID="s67"/>
<Cell><Data ss:Type="String">Resource</Data></Cell>
<Cell><Data ss:Type="String">DomainResource</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">administration</Data></Cell>
<Cell ss:StyleID="s68"><Data ss:Type="String">Measurement, calculation or setting capability of a medical device</Data></Cell>
<Cell><Data ss:Type="String">Describes a measurement, calculation or setting capability of a medical device.</Data></Cell>
@ -429,25 +430,19 @@
<Cell><Data ss:Type="String">Describes the link to the DeviceComponent that this DeviceMetric belongs to and that provide information about the location of this DeviceMetric in the containment structure of the parent Device.&#10;An example would be a DeviceComponent that represents a Channel. This reference can be used by a client application to distinguish DeviceMetrics that have the same type, but should be interpreted based on their containment location.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell><Data ss:Type="String">DeviceMetric.operationalState</Data></Cell>
<Cell><Data ss:Type="String">DeviceMetric.operationalStatus</Data></Cell>
<Cell><Data ss:Type="String">0..1</Data></Cell>
<Cell ss:Index="6" ss:StyleID="s69"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">DeviceMetricOperationalState</Data></Cell>
<Cell><Data ss:Type="String">DeviceMetricOperationalStatus</Data></Cell>
<Cell ss:Index="9"><Data ss:Type="String">on | off | standby</Data></Cell>
<Cell><Data ss:Type="String">Indicates current operational state of the device. For example: On, Off, Standby, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75" ss:StyleID="s69">
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.measurementMode</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="9" ss:StyleID="s72"><Data ss:Type="String">Describes the physical principle of the measurement</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Describes the physical principle of the measurement. For example: thermal, chemical, acoustical, etc.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75" ss:StyleID="s69">
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.color</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="9" ss:StyleID="s72"><Data ss:Type="String">Describes the typical color of representation</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">code</Data></Cell>
<Cell><Data ss:Type="String">DeviceMetricColor</Data></Cell>
<Cell ss:Index="9" ss:StyleID="s72"><Data ss:Type="String">black | red | green | yellow | blue | magenta | cyan | white</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Describes the typical color of the representation of observations that have been generated for this DeviceMetric.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="33.75" ss:StyleID="s69">
@ -467,14 +462,14 @@
<Cell ss:StyleID="s72"><Data ss:Type="String">Describes the measurement repetition time. This is not&#10;necessarily the same as the update&#10;period.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s69">
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibrationInfo</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibration</Data></Cell>
<Cell><Data ss:Type="String">0..*</Data></Cell>
<Cell ss:Index="5"><Data ss:Type="String">right</Data></Cell>
<Cell ss:Index="9"><Data ss:Type="String">Describes the calibrations that have been performed or that are required to be performed</Data></Cell>
<Cell><Data ss:Type="String">Describes the calibrations that have been performed or that are required to be performed</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s69">
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibrationInfo.type</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibration.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">DeviceMetricCalibrationType</Data></Cell>
@ -482,7 +477,7 @@
<Cell><Data ss:Type="String">Describes the type of the calibration method.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="38.25" ss:StyleID="s69">
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibrationInfo.state</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibration.state</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">DeviceMetricCalibrationState</Data></Cell>
@ -490,7 +485,7 @@
<Cell><Data ss:Type="String">Describes the state of the calibration.</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30" ss:StyleID="s69">
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibrationInfo.time</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String">DeviceMetric.calibration.time</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="9"><Data ss:Type="String">Describes the time last calibration has been performed</Data></Cell>
@ -531,8 +526,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>4</ActiveRow>
<ActiveCol>7</ActiveCol>
<ActiveRow>12</ActiveRow>
<ActiveCol>8</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -543,10 +538,10 @@
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s73" ss:DefaultColumnWidth="60"
ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="59.5"/>
<Column ss:Index="2" ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="59.25"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="366"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="239.5"/>
<Column ss:Index="6" ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="385"/>
<Column ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="239.25"/>
<Column ss:Index="6" ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="384.75"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s66">
<Cell><Data ss:Type="String">Id</Data></Cell>
<Cell><Data ss:Type="String">Name</Data></Cell>
@ -748,9 +743,9 @@
x:FullRows="1" ss:DefaultColumnWidth="60" 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="116.5"/>
<Column ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:AutoFitWidth="0" ss:Width="273"/>
<Column ss:AutoFitWidth="0" ss:Width="340"/>
<Column ss:AutoFitWidth="0" ss:Width="339.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>
@ -862,9 +857,9 @@
<Worksheet ss:Name="Events">
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="2" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="60" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="70"/>
<Column ss:AutoFitWidth="0" ss:Width="94" ss:Span="1"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="101.5"/>
<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">
@ -903,7 +898,7 @@
<Worksheet ss:Name="Examples">
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="60" ss:DefaultRowHeight="15">
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="134.5"/>
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="134.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s88"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -1019,14 +1014,14 @@
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="Bindings">
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="7" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s70" ss:DefaultColumnWidth="60"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="163"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="295"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="65.5"/>
<Column ss:StyleID="s70" ss:Width="248.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="287.5"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="162.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="294.75"/>
<Column ss:StyleID="s70" ss:AutoFitWidth="0" ss:Width="65.25"/>
<Column ss:StyleID="s70" ss:Width="248.25"/>
<Column ss:StyleID="s70" 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>
@ -1038,18 +1033,20 @@
<Cell><Data ss:Type="String">MetricType</Data></Cell>
<Cell><Data ss:Type="String">Describes the metric type</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s62" ss:HRef="https://rtmms.nist.gov/"><Data ss:Type="String">https://rtmms.nist.gov/</Data></Cell>
<Cell ss:StyleID="s62" ss:HRef="https://rtmms.nist.gov/rtmms/index.htm#!hrosetta"><Data
ss:Type="String">https://rtmms.nist.gov/rtmms/index.htm#!hrosetta</Data></Cell>
<Cell><Data ss:Type="String">RTM Management Service</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">MetricUnit</Data></Cell>
<Cell><Data ss:Type="String">Describes the unit of the metric</Data></Cell>
<Cell><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s62" ss:HRef="https://rtmms.nist.gov/"><Data ss:Type="String">https://rtmms.nist.gov/</Data></Cell>
<Cell ss:StyleID="s62" ss:HRef="https://rtmms.nist.gov/rtmms/index.htm#!units"><Data
ss:Type="String">https://rtmms.nist.gov/rtmms/index.htm#!units</Data></Cell>
<Cell><Data ss:Type="String">RTM Management Service</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">DeviceMetricOperationalState</Data></Cell>
<Cell ss:StyleID="s64"><Data ss:Type="String">DeviceMetricOperationalStatus</Data></Cell>
<Cell><Data ss:Type="String">Describes the operational status of the DeviceMetric</Data></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#metric-operational-status</Data></Cell>
@ -1072,6 +1069,12 @@
<Cell ss:StyleID="s85"><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#metric-calibration-state</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">DeviceMetricColor</Data></Cell>
<Cell><Data ss:Type="String">Describes the typical color of representation</Data></Cell>
<Cell><Data ss:Type="String">code list</Data></Cell>
<Cell><Data ss:Type="String">#metric-color</Data></Cell>
</Row>
</Table>
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
<PageSetup>
@ -1088,7 +1091,8 @@
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>2</ActiveRow>
<ActiveRow>9</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -1122,6 +1126,184 @@
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="metric-color">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="9" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:Index="5" ss:Width="63"/>
<Column ss:Width="170.25"/>
<Row ss:AutoFitHeight="0" ss:Height="30.75">
<Cell ss:StyleID="s88"><Data ss:Type="String">Code</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">The code to be sent over the wire</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Id</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Unique number for the code. Required when System is not specified, not permitted otherwise</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">System</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">The URL of the external code system from which the list is selected. Must be the same for all codes if specified.</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Parent</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">The code this code is a specialization of (if any). Content should be &quot;#&quot; + the Id of the parent code</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Display</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Display value for code. Omit if the code *is* the display value (as for internal codes)</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Definition</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Meaning of the code. Include unless meaning obvious to all users. Required if display not</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">v2</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Mappings to v2 codes - See wiki for syntax</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">v3</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Mappings to v3 codes - See wiki for syntax</Font></ss:Data></Comment></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">Committee Notes</Data><Comment
ss:Author="Lloyd"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Additional notes about the code. Not published</Font></ss:Data></Comment></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s92"><Data ss:Type="String">black</Data></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="Number">0</Data></Cell>
<Cell ss:StyleID="s79"/>
<Cell ss:StyleID="s103"/>
<Cell ss:StyleID="s103"><Data ss:Type="String">col-black</Data></Cell>
<Cell ss:StyleID="s103"><Data ss:Type="String">Color for representation - black</Data></Cell>
<Cell ss:StyleID="s80"/>
<Cell ss:StyleID="s80"/>
<Cell ss:StyleID="s95"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">red</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">1</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s104"/>
<Cell ss:StyleID="s104"><Data ss:Type="String">col-red</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - red</Data></Cell>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s99"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">green</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s104"/>
<Cell ss:StyleID="s104"><Data ss:Type="String">col-green</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - green</Data></Cell>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s99"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">yellow</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s104"/>
<Cell ss:StyleID="s104"><Data ss:Type="String">col-yellow</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - yellow</Data></Cell>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s99"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">blue</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">4</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s104"/>
<Cell ss:StyleID="s104"><Data ss:Type="String">col-blue</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - blue</Data></Cell>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s99"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">magenta</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">5</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s104"/>
<Cell ss:StyleID="s104"><Data ss:Type="String">col-magenta</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - magenta</Data></Cell>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s99"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">cyan</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">6</Data></Cell>
<Cell ss:StyleID="s85"/>
<Cell ss:StyleID="s104"/>
<Cell ss:StyleID="s104"><Data ss:Type="String">col-cyan</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - cyan</Data></Cell>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s98"/>
<Cell ss:StyleID="s99"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s96"><Data ss:Type="String">white</Data></Cell>
<Cell ss:StyleID="s98"><Data ss:Type="Number">7</Data></Cell>
<Cell ss:Index="5" ss:StyleID="s104"><Data ss:Type="String">col-white</Data></Cell>
<Cell ss:StyleID="s104"><Data ss:Type="String">Color for representation - white</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:R9C1</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R8C9,R9C1:R9C2</Range>
<Condition>
<Value1>AND(RC1=&quot;&quot;,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R9C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-1]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C2:R8C3,R9C2</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,(RC2=&quot;&quot;)=(RC3=&quot;&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C5:R8C6</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,RC3=&quot;&quot;,RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C6:R8C6</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,,RC3=&quot;&quot;,RC5=&quot;&quot;,RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R8C9,R9C1:R9C2</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="metric-operational-status">
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="8" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="60" ss:DefaultRowHeight="15">
@ -1243,7 +1425,7 @@
<Panes>
<Pane>
<Number>3</Number>
<ActiveRow>1</ActiveRow>
<RangeSelection>R1C1:R8C9</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -1410,7 +1592,7 @@
x:Top="0.78740157499999996"/>
</PageSetup>
<Unsynced/>
<TopRowVisible>1</TopRowVisible>
<TopRowVisible>18</TopRowVisible>
<Panes>
<Pane>
<Number>3</Number>

View File

@ -7,10 +7,10 @@
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd</LastAuthor>
<LastAuthor>Moehrke, John (GE Healthcare)</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-11-17T05:30:16Z</LastSaved>
<Version>15.00</Version>
<LastSaved>2015-02-08T15:26:54Z</LastSaved>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -20,11 +20,12 @@
<Path>Invariants</Path>
<SheetName>Invariants</SheetName>
</SupBook>
<WindowHeight>11660</WindowHeight>
<WindowWidth>21600</WindowWidth>
<WindowHeight>11415</WindowHeight>
<WindowWidth>20730</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<WindowTopY>240</WindowTopY>
<ActiveSheet>9</ActiveSheet>
<FirstVisibleSheet>3</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -841,27 +842,27 @@
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="100" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.5"/>
<Column ss:StyleID="s68" ss:Width="29.5"/>
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="34.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="52" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="121"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.5"/>
<Column ss:StyleID="s68" ss:Width="51.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.5"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="178.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -941,7 +942,7 @@
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">E.g. SEG.1.2.3</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s75"><Data ss:Type="String">??? Mapping</Data><Comment
<Cell ss:StyleID="s75"><Data ss:Type="String">XDS Mapping</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Change column name to one from mappingSpaces.xml. Add more if needed</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -994,7 +995,7 @@
<Cell ss:StyleID="s86"><Data ss:Type="String">DocumentManifest.masterIdentifier</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Identifier</Data><NamedCell
@ -1018,7 +1019,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">id [need a list semantic to indicate order matters]</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.uniqueId</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1053,7 +1055,8 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">TXA-16-Unique Document File Name?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.entryUUID</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1062,7 +1065,7 @@
<Cell ss:StyleID="s86"><Data ss:Type="String">DocumentManifest.subject</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..*</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Patient|Practitioner|Group|Device)</Data><NamedCell
@ -1086,7 +1089,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.participation[typeCode=SBJ].role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.patientId</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1120,7 +1124,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.participation[typeCode=IRCP].role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.intendedRecipient</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1154,7 +1159,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.code</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.contentTypeCode</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1166,7 +1172,7 @@
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Practitioner|Device|Patient|RelatedPerson)</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">Reference(Practitioner|Organization|Device|Patient|RelatedPerson)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1188,7 +1194,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.participation[typeCode=AUT].role</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.author</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1222,7 +1229,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.participation[typeCode=AUT].time</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.submissionTime</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1254,7 +1262,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.participation[typeCode=PFM].time</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.sourceId</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1279,7 +1288,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">current | superceded | entered in error</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">current | superceded | entered-in-error</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The status of this document manifest </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1289,13 +1298,14 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.statusCode</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet status</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">DocumentManifest.supercedes</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">!DocumentManifest.supercedes</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1318,7 +1328,8 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">is this 80%? Specifically how is this to be used? How is it diffeent than normal resource versioning?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.outboundRelationship[typeCode=RPLC].target</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1356,13 +1367,14 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.title</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet.title</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
<Cell ss:StyleID="s86"><Data ss:Type="String">DocumentManifest.confidentiality</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">!DocumentManifest.confidentiality</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
@ -1387,7 +1399,8 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><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="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">is this 80%? Specifically how is this to be used? How is it diffeent than the security tags in the Base Resource Definition.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">.confidentialityCode</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1423,7 +1436,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">.outboundRelationship[typeCode=COMP].target</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">SubmissionSet DocumentEntry(s)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3651,11 +3665,10 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>9</TopRowBottomPane>
<TopRowBottomPane>12</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3672,8 +3685,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>8</ActiveCol>
<ActiveRow>14</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -3847,9 +3860,9 @@
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s100" ss:Width="55.5"/>
<Column ss:StyleID="s100" ss:Width="165"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="205"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="199"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s70">
<Cell ss:StyleID="s101"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -4408,9 +4421,9 @@
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Search!R1C1:R1C5"
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="31" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="29" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="87.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="109.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="210"/>
@ -4485,13 +4498,6 @@
<Cell ss:StyleID="s117"><Data ss:Type="String">DocumentManifest.status</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">supersedes</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">DocumentManifest.supercedes</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">description</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data></Cell>
@ -4499,13 +4505,6 @@
<Cell ss:StyleID="s117"><Data ss:Type="String">DocumentManifest.description</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s116"><Data ss:Type="String">confidentiality</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">token</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">DocumentManifest.confidentiality</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">content</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reference</Data></Cell>
@ -4521,10 +4520,10 @@
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
<Cell ss:StyleID="s116"><Data ss:Type="String">source</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">DocumentManifest.source</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -4667,14 +4666,16 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>8</ActiveRow>
<ActiveCol>0</ActiveCol>
<RangeSelection>R9</RangeSelection>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C2:R30C2</Range>
<Range>R2C2:R28C2</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;number,date,string,token,reference,composite,quantity&quot;</Value>
@ -4682,61 +4683,68 @@
<AutoFilter x:Range="R1C1:R1C5" xmlns="urn:schemas-microsoft-com:office:excel">
</AutoFilter>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R30C5</Range>
<Range>R2C1:R28C5</Range>
<Condition>
<Value1>AND(RC1=&quot;&quot;,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R30C1</Range>
<Range>R11C1:R28C1,R2C1:R8C1</Range>
<Condition>
<Value1>AND(R[-1]C=&quot;&quot;,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C2:R30C2</Range>
<Range>R2C2:R28C2</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C3:R30C3</Range>
<Range>R2C3:R28C3</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;reference&quot;,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4:R30C4</Range>
<Range>R2C4:R28C4</Range>
<Condition>
<Value1>AND(RC2=&quot;reference&quot;,RC3=&quot;&quot;,RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4:R30C4</Range>
<Range>R2C4:R28C4</Range>
<Condition>
<Value1>AND(RC2=&quot;reference&quot;,RC3&lt;&gt;&quot;&quot;,RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C5:R30C5</Range>
<Range>R2C5:R28C5</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,RC=&quot;&quot;,RC4=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R30C5</Range>
<Range>R2C1:R28C5</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R9C1:R10C1</Range>
<Condition>
<Value1>AND(#REF!=&quot;&quot;,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="Operations">
<Names>
@ -4750,7 +4758,7 @@
<Column ss:StyleID="s111" ss:Width="24"/>
<Column ss:StyleID="s111" ss:Width="25.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="223"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="222.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="253.5" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s123"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
@ -5475,13 +5483,13 @@
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="199"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:StyleID="s111" ss:Width="106.5"/>
<Column ss:StyleID="s111" ss:Width="113.5"/>
<Column ss:StyleID="s111" ss:Width="113.25"/>
<Column ss:StyleID="s111" ss:Width="120"/>
<Column ss:StyleID="s111" ss:Width="127.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -5806,7 +5814,7 @@
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s111" ss:Width="63"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
@ -6138,14 +6146,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.5"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="88.5"/>
<Column ss:StyleID="s136" ss:Width="28"/>
<Column ss:StyleID="s136" ss:Width="328"/>
<Column ss:StyleID="s136" ss:Width="27.75"/>
<Column ss:StyleID="s136" ss:Width="327.75"/>
<Column ss:StyleID="s136" ss:Width="57"/>
<Column ss:StyleID="s136" ss:Width="205.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="40"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6624,17 +6632,17 @@
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:Width="115"/>
<Column ss:StyleID="s111" ss:Width="114.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s111" ss:Width="51"/>
<Column ss:StyleID="s111" ss:Width="45"/>
<Column ss:StyleID="s111" ss:Width="146.5"/>
<Column ss:StyleID="s111" ss:Width="146.25"/>
<Column ss:StyleID="s111" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="97.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="88.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="166" ss:Span="1"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Binding Name</Data><Comment
@ -7236,13 +7244,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -7293,18 +7301,18 @@
<Cell ss:StyleID="s139"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s140"><Data ss:Type="String">superceded</Data></Cell>
<Cell ss:StyleID="s140"><Data ss:Type="String">deprecated</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">2</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s150"/>
<Cell ss:StyleID="s150"/>
<Cell ss:StyleID="s150"><Data ss:Type="String">This reference has been superseded by another reference</Data></Cell>
<Cell ss:StyleID="s150"><Data ss:Type="String">This reference has been deprecated</Data></Cell>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s130"/>
<Cell ss:StyleID="s141"/>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s140"><Data ss:Type="String">entered in error</Data></Cell>
<Cell ss:StyleID="s140"><Data ss:Type="String">entered-in-error</Data></Cell>
<Cell ss:StyleID="s130"><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s117"/>
<Cell ss:StyleID="s150"/>
@ -7829,6 +7837,7 @@
<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>
@ -7848,6 +7857,7 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>3</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
@ -7906,13 +7916,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

View File

@ -24,7 +24,7 @@
<WindowWidth>9870</WindowWidth>
<WindowTopX>5520</WindowTopX>
<WindowTopY>6075</WindowTopY>
<ActiveSheet>2</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -972,8 +972,10 @@
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s79"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">A resource with narrative, extensions, and contained resources</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">A resource that includes narrative, extensions, and contained resources</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s81"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3486,12 +3488,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>2</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3499,13 +3502,15 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>0</ActiveCol>
<ActiveRow>2</ActiveRow>
<ActiveCol>13</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -3668,6 +3673,13 @@
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C14</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Names>
@ -4174,7 +4186,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -9,7 +9,7 @@
<Author>Grahame</Author>
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-03T21:00:51Z</LastSaved>
<LastSaved>2015-02-21T08:57:41Z</LastSaved>
<Version>15.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
@ -833,9 +833,9 @@
<Worksheet ss:Name="Data Elements">
<Names>
<NamedRange ss:Name="_FilterDatabase"
ss:RefersTo="='Data Elements'!R1C1:R100C24" ss:Hidden="1"/>
ss:RefersTo="='Data Elements'!R1C1:R103C24" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="25" ss:ExpandedRowCount="100" x:FullColumns="1"
<Table ss:ExpandedColumnCount="25" ss:ExpandedRowCount="103" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.5"/>
@ -1057,6 +1057,43 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="165">
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.version</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">id.version</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Logical id for this version of the extension</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The identifier that is used to identify this version of the extension definition when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the author manually</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">There may be multiple resource versions of the extension definition that have this same identifier. The resource version id will change for technical reasons, whereas the stated version number needs to be under the author's control</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">N/A</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">Version</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1143,9 +1180,9 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Name of the publisher (Organization or individual)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Details of the individual or organization who accepts responsibility for publishing the extension definition</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">The name of the individual or organization that published the extension definition</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><Data ss:Type="String">Helps establish the &quot;authority/credibility&quot; of the extension. Should also allow for contact</Data><NamedCell
<Cell ss:StyleID="s89"><Data ss:Type="String">Helps establish the &quot;authority/credibility&quot; of the extension definition. May also allow for contact</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><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><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1158,14 +1195,13 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.telecom</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.contact</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">ContactPoint</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1175,9 +1211,9 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Contact information of the publisher</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">Contact details of the publisher</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Contact details to assist a user in finding and communicating with the publisher</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">Contacts to assist a user in finding and communicating with the publisher</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">May be a web site, an email address, a telephone number (tel:), etc.</Data><NamedCell
@ -1190,6 +1226,71 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.contact.name</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">string</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Name of a individual to contact</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The name of an individual to contact regarding the extension definition</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">If there is no named individual, the telecom is for the organization as a whole</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.contact.telecom</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">0..*</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">ContactPoint</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Contact details for individual or publisher</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Contact details for individual (if a name was provided) or the publisher</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="150">
<Cell ss:StyleID="s86"><Data ss:Type="String">ExtensionDefinition.description</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1269,7 +1370,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">y</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">ResourceProfileStatus</Data><NamedCell
<Cell ss:StyleID="s87"><Data ss:Type="String">StructureDefinitionStatus</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">status</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -3689,7 +3790,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>15</TopRowBottomPane>
<TopRowBottomPane>9</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3706,15 +3807,15 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>20</ActiveRow>
<ActiveCol>8</ActiveCol>
<ActiveRow>14</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
<ProtectScenarios>False</ProtectScenarios>
</WorksheetOptions>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C22:R100C22</Range>
<Range>R2C22:R4C22,R6C22:R103C22,R5C23</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;left,right,up,down,[xpixels];[ypixels]&quot;</Value>
@ -3722,21 +3823,21 @@
<ErrorStyle>Info</ErrorStyle>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C19:R100C21</Range>
<Range>R2C19:R4C21,R6C19:R103C21,R5C19:R5C22</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;N/A&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C8:R100C9</Range>
<Range>R2C8:R103C9</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;Bindings!A2..A30&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C6:R100C7</Range>
<Range>R3C6:R103C7</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;Y,N&quot;</Value>
@ -3748,14 +3849,14 @@
<Value>&quot;DomainResource,Type,Resource,Structure&quot;</Value>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C5:R100C5</Range>
<Range>R3C5:R103C5</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;*,Reference(A|B),boolean,string,code,id,oid,uuid,integer,decimal,date,dateTime,time,instant,uri,base64Binary,CodeableConcept,Coding,Identifier,Period,Timing,Range,Quantity,Age,Distance,Duration,Count,Money,Ratio,HumanName,Address,ContactPoint,SampledData&quot;</Value>
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C3:R100C3</Range>
<Range>R2C3:R103C3</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;0..1,1..1,0..*,1..*&quot;</Value>
@ -3766,18 +3867,18 @@
<Value>Invariantids</Value>
<ErrorHide/>
</DataValidation>
<AutoFilter x:Range="R1C1:R100C24"
<AutoFilter x:Range="R1C1:R103C24"
xmlns="urn:schemas-microsoft-com:office:excel">
</AutoFilter>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C14:R100C14</Range>
<Range>R2C14:R103C14</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:yellow'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R100C24</Range>
<Range>R2C1:R4C24,R6C1:R103C24,R5C1:R5C25</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
@ -3788,7 +3889,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R100C1</Range>
<Range>R2C1:R5C1,R7C1:R11C1,R13C1:R103C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-1]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -3802,35 +3903,35 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C3:R100C3,R2C15:R100C15</Range>
<Range>R3C3:R103C3,R2C15:R103C15</Range>
<Condition>
<Value1>(RC1=&quot;&quot;)&lt;&gt;(RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C10:R100C10,R2C13:R100C13</Range>
<Range>R2C10:R103C10,R2C13:R103C13</Range>
<Condition>
<Value1>AND(SEARCH(&quot;|&quot;,RC5)&lt;&gt;0,RC&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C11:R100C11,R2C13:R100C13</Range>
<Range>R2C11:R103C11,R2C13:R103C13</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,NOT(EXACT(LEFT(RC5,1),LOWER(LEFT(RC5,1)))))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C11:R100C12</Range>
<Range>R2C11:R103C12</Range>
<Condition>
<Value1>AND(RC11&lt;&gt;&quot;&quot;,RC12&lt;&gt;&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C14:R100C15</Range>
<Range>R2C14:R103C15</Range>
<Condition>
<Value1>AND(RC14&lt;&gt;&quot;&quot;,RC14=RC15)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -3844,26 +3945,54 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R3C19:R100C20</Range>
<Range>R3C19:R103C20</Range>
<Condition>
<Value1>AND(RC1&lt;&gt;&quot;&quot;,ISERR(SEARCH(&quot;N/A&quot;,R2C)),RC=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:orange'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C22:R100C22</Range>
<Range>R2C22:R3C22,R5C23,R6C22:R8C22,R12C22:R103C22</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[1]C1,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(R[1]C1,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C1:R100C24</Range>
<Range>R2C1:R4C24,R6C1:R103C24,R5C1:R5C25</Range>
<Condition>
<Value1>LEFT(RC1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R6C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-2]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R4C22</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[2]C1,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(R[2]C1,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R12C1</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,R[-3]C=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R9C22:R11C22</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[3]C1,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(R[3]C1,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Names>
@ -4398,7 +4527,7 @@
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C4:R50C4</Range>
<Type>List</Type>
<Value>'Data Elements'!R2C1:R100C1</Value>
<Value>'Data Elements'!R2C1:R103C1</Value>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C3:R50C3</Range>

View File

@ -10,17 +10,17 @@
<LastAuthor>Lloyd</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-11-17T05:30:16Z</LastSaved>
<Version>15.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>9348</WindowHeight>
<WindowWidth>22536</WindowWidth>
<WindowHeight>9345</WindowHeight>
<WindowWidth>22530</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>6</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -837,29 +837,27 @@
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="100" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.39999999999998"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.399999999999991"/>
<Column ss:StyleID="s68" ss:Width="29.4"/>
<Column ss:StyleID="s68" ss:Width="34.799999999999997"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.8"/>
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="34.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.80000000000001"
ss:Span="1"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="52.199999999999996" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0"
ss:Width="80.400000000000006"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="121.2"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.4"/>
<Column ss:StyleID="s68" ss:Width="52.5" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="121.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.8"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.4"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -3667,7 +3665,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -3852,13 +3849,12 @@
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s100" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0"
ss:Width="115.80000000000001"/>
<Column ss:StyleID="s100" ss:Width="55.800000000000004"/>
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s100" ss:Width="55.5"/>
<Column ss:StyleID="s100" ss:Width="165"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="205.20000000000002"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="199.2"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.4"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="205.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="199.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s70">
<Cell ss:StyleID="s101"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -4423,11 +4419,11 @@
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="70.8"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="109.8"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="109.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="210"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="382.79999999999995"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="382.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s112">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40">Unique name for search parameter - required, lower-case, dash-delimited string </ss:Data></Comment><NamedCell
@ -4758,16 +4754,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="130.80000000000001"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="124.80000000000001"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="124.5"/>
<Column ss:StyleID="s111" ss:Width="24"/>
<Column ss:StyleID="s111" ss:Width="25.8"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.80000000000001"
ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0"
ss:Width="223.20000000000002"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="253.79999999999998"
ss:Span="1"/>
<Column ss:StyleID="s111" ss:Width="25.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="223.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="253.5" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s123"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -5490,14 +5483,14 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="82.8" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="199.2"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="157.80000000000001"/>
<Column ss:StyleID="s111" ss:Width="106.80000000000001"/>
<Column ss:StyleID="s111" ss:Width="113.39999999999999"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="199.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:StyleID="s111" ss:Width="106.5"/>
<Column ss:StyleID="s111" ss:Width="113.25"/>
<Column ss:StyleID="s111" ss:Width="120"/>
<Column ss:StyleID="s111" ss:Width="127.8"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.400000000000006"/>
<Column ss:StyleID="s111" ss:Width="127.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -5819,10 +5812,10 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.39999999999998"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s111" ss:Width="63"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
@ -5842,6 +5835,7 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s113"><Data ss:Type="String">GeneticPedigree</Data><NamedCell
@ -5852,18 +5846,21 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">core</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">cqf-familyhistory</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">cqf-familyhistory.xml</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">familyhistory-cqf-profile-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s118"><Data ss:Type="String">spreadsheet</Data></Cell>
<Cell><Data ss:Type="String">cqf</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s113"><Data ss:Type="String">daf-familyhistory</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">familyhistory-daf.xml</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">familyhistory-daf-profile-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data></Cell>
<Cell><Data ss:Type="String">daf</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6090,6 +6087,7 @@
<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>
@ -6109,8 +6107,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>2</ActiveCol>
<ActiveRow>4</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -6159,14 +6157,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.39999999999998"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="88.800000000000011"/>
<Column ss:StyleID="s136" ss:Width="28.2"/>
<Column ss:StyleID="s136" ss:Width="328.20000000000005"/>
<Column ss:StyleID="s136" ss:Width="88.5"/>
<Column ss:StyleID="s136" ss:Width="28.5"/>
<Column ss:StyleID="s136" ss:Width="328.5"/>
<Column ss:StyleID="s136" ss:Width="57"/>
<Column ss:StyleID="s136" ss:Width="205.8" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="40.200000000000003"/>
<Column ss:StyleID="s136" ss:Width="205.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="40.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6651,19 +6649,18 @@
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:Width="115.2"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="274.8"/>
<Column ss:StyleID="s111" ss:Width="115.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s111" ss:Width="51"/>
<Column ss:StyleID="s111" ss:Width="45"/>
<Column ss:StyleID="s111" ss:Width="146.39999999999998"/>
<Column ss:StyleID="s111" ss:Width="172.79999999999998"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="97.800000000000011"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="88.800000000000011"/>
<Column ss:StyleID="s111" ss:Width="146.25"/>
<Column ss:StyleID="s111" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="97.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="88.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="172.79999999999998"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="166.2" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0"
ss:Width="106.80000000000001"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="166.5" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Binding Name</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -7264,15 +7261,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.799999999999997"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0"
ss:Width="244.79999999999998"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

View File

@ -7,21 +7,20 @@
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Grahame</Author>
<LastAuthor>Lloyd</LastAuthor>
<LastAuthor>Eric Larson</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-11-17T05:30:16Z</LastSaved>
<LastSaved>2015-02-09T15:52:37Z</LastSaved>
<Version>15.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>11660</WindowHeight>
<WindowWidth>21600</WindowWidth>
<WindowHeight>7755</WindowHeight>
<WindowWidth>20490</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -837,28 +836,28 @@
</Names>
<Table ss:ExpandedColumnCount="26" ss:ExpandedRowCount="100" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.5"/>
<Column ss:StyleID="s68" ss:Width="29.5"/>
<Column ss:StyleID="s68" ss:Width="35"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="29"/>
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="35.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="107" ss:Span="1"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="107.25" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="51.5" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.5"/>
<Column ss:StyleID="s68" ss:Width="51.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="104"
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="104.25"
ss:Span="2"/>
<Column ss:Index="24" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.5"/>
<Column ss:Index="24" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -1034,7 +1033,7 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">ImmunizationRecommendation.subject</Data><NamedCell
<Cell ss:StyleID="s86"><Data ss:Type="String">ImmunizationRecommendation.patient</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">1..1</Data><NamedCell
@ -1053,7 +1052,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Who this profile is for</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">The patient who is the subject of the profile</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">The patient for whom the recommendations are for.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1067,7 +1066,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">PID, PD1, NK1</Data><NamedCell
<Cell ss:StyleID="s92"><Data ss:Type="String">PID, PD1, NK1 | #3706</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="60">
@ -3898,8 +3897,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>0</ActiveRow>
<ActiveCol>8</ActiveCol>
<ActiveRow>3</ActiveRow>
<ActiveCol>0</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4064,12 +4063,12 @@
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s100" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="116"/>
<Column ss:StyleID="s100" ss:Width="56"/>
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:StyleID="s100" ss:Width="56.25"/>
<Column ss:StyleID="s100" ss:Width="165"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s70">
<Cell ss:StyleID="s101"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -4630,11 +4629,11 @@
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="71"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="110"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="110.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="210"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="383"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="383.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s112">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40">Unique name for search parameter - required, lower-case, dash-delimited string </ss:Data></Comment><NamedCell
@ -4660,7 +4659,7 @@
<Cell ss:StyleID="s113"><Data ss:Type="String">subject</Data></Cell>
<Cell ss:StyleID="s78"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s78"/>
<Cell ss:StyleID="s114"><Data ss:Type="String">ImmunizationRecommendation.subject</Data></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">ImmunizationRecommendation.patient</Data></Cell>
<Cell ss:StyleID="s115"/>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
@ -4723,7 +4722,7 @@
<Cell ss:StyleID="s116"><Data ss:Type="String">patient</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">reference</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s117"><Data ss:Type="String">ImmunizationRecommendation.subject</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">ImmunizationRecommendation.patient</Data></Cell>
<Cell ss:StyleID="s118"/>
</Row>
<Row ss:AutoFitHeight="0">
@ -4965,13 +4964,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="131"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="125"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="131.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="125.25"/>
<Column ss:StyleID="s111" ss:Width="24"/>
<Column ss:StyleID="s111" ss:Width="26"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="222.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="254" ss:Span="1"/>
<Column ss:StyleID="s111" ss:Width="26.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107.25" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="222.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="254.25" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s123"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -5694,14 +5693,14 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="83" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="158"/>
<Column ss:StyleID="s111" ss:Width="107"/>
<Column ss:StyleID="s111" ss:Width="113.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="83.25" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:StyleID="s111" ss:Width="107.25"/>
<Column ss:StyleID="s111" ss:Width="113.25"/>
<Column ss:StyleID="s111" ss:Width="120"/>
<Column ss:StyleID="s111" ss:Width="128"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.5"/>
<Column ss:StyleID="s111" ss:Width="128.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -6023,10 +6022,10 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s111" ss:Width="63"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
@ -6046,6 +6045,7 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s113"><Data ss:Type="String">cqf-immunizationrecommendation</Data><NamedCell
@ -6056,6 +6056,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">cqf</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6363,14 +6364,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.5"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="89"/>
<Column ss:StyleID="s136" ss:Width="27.5"/>
<Column ss:StyleID="s136" ss:Width="327.5"/>
<Column ss:StyleID="s136" ss:Width="89.25"/>
<Column ss:StyleID="s136" ss:Width="27.75"/>
<Column ss:StyleID="s136" ss:Width="327.75"/>
<Column ss:StyleID="s136" ss:Width="57"/>
<Column ss:StyleID="s136" ss:Width="206" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.5"/>
<Column ss:StyleID="s136" ss:Width="206.25" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6849,18 +6850,18 @@
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:Width="114.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="275"/>
<Column ss:StyleID="s111" ss:Width="114.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="275.25"/>
<Column ss:StyleID="s111" ss:Width="51"/>
<Column ss:StyleID="s111" ss:Width="45"/>
<Column ss:StyleID="s111" ss:Width="146.5"/>
<Column ss:StyleID="s111" ss:Width="173"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="98"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="89"/>
<Column ss:StyleID="s111" ss:Width="146.25"/>
<Column ss:StyleID="s111" ss:Width="173.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="98.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="173"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.5" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="173.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Binding Name</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -7461,13 +7462,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="245"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="245.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

View File

@ -10,17 +10,17 @@
<LastAuthor>nbashyam</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-06T21:51:50Z</LastSaved>
<Version>15.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>11660</WindowHeight>
<WindowHeight>11655</WindowHeight>
<WindowWidth>21600</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>6</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -837,27 +837,27 @@
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="100" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.5"/>
<Column ss:StyleID="s68" ss:Width="29.5"/>
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="34.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="52" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="121"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.5"/>
<Column ss:StyleID="s68" ss:Width="51.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -3664,7 +3664,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -3854,9 +3853,9 @@
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s100" ss:Width="55.5"/>
<Column ss:StyleID="s100" ss:Width="165"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="205"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="199"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.5"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s70">
<Cell ss:StyleID="s101"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -4762,7 +4761,7 @@
<Column ss:StyleID="s111" ss:Width="24"/>
<Column ss:StyleID="s111" ss:Width="25.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="223"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="222.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="253.5" ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s123"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
@ -5487,13 +5486,13 @@
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="199"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:StyleID="s111" ss:Width="106.5"/>
<Column ss:StyleID="s111" ss:Width="113.5"/>
<Column ss:StyleID="s111" ss:Width="113.25"/>
<Column ss:StyleID="s111" ss:Width="120"/>
<Column ss:StyleID="s111" ss:Width="127.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -5815,10 +5814,10 @@
<Names>
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Packages!R1C1:R2C4"/>
</Names>
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s111" ss:Width="63"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
@ -5838,6 +5837,7 @@
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
x:Family="Swiss" html:Size="8" html:Color="#000000">Type of source (spreadsheet or profile XML file). Default is spreadsheet</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">IG Name</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s113"><Data ss:Type="String">CCDA Cognitive Statuses</Data><NamedCell
@ -5848,12 +5848,14 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s115"><Data ss:Type="String">spreadsheet</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">ccda</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"><Data ss:Type="String">daf-list</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">list-daf.xml</Data></Cell>
<Cell ss:StyleID="s117"><Data ss:Type="String">list-daf-profile-spreadsheet.xml</Data></Cell>
<Cell ss:StyleID="s118"><Data ss:Type="String">spreadsheet</Data></Cell>
<Cell><Data ss:Type="String">daf</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s116"/>
@ -6086,6 +6088,7 @@
<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>
@ -6105,7 +6108,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>8</ActiveRow>
<ActiveRow>3</ActiveRow>
<ActiveCol>4</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -6154,14 +6158,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.5"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="88.5"/>
<Column ss:StyleID="s136" ss:Width="28"/>
<Column ss:StyleID="s136" ss:Width="328"/>
<Column ss:StyleID="s136" ss:Width="27.75"/>
<Column ss:StyleID="s136" ss:Width="327.75"/>
<Column ss:StyleID="s136" ss:Width="57"/>
<Column ss:StyleID="s136" ss:Width="205.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="40"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.75"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6646,17 +6650,17 @@
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:Width="115"/>
<Column ss:StyleID="s111" ss:Width="114.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s111" ss:Width="51"/>
<Column ss:StyleID="s111" ss:Width="45"/>
<Column ss:StyleID="s111" ss:Width="146.5"/>
<Column ss:StyleID="s111" ss:Width="146.25"/>
<Column ss:StyleID="s111" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="97.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="88.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="172.5"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="166" ss:Span="1"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Binding Name</Data><Comment
@ -7258,13 +7262,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -7928,13 +7932,13 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.5"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.5" ss:Span="1"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.5"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

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